Click here to Skip to main content
15,906,333 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: connect to sql2005 Pin
amilapradeep14-May-06 23:12
amilapradeep14-May-06 23:12 
GeneralRe: connect to sql2005 Pin
Colin Angus Mackay14-May-06 23:16
Colin Angus Mackay14-May-06 23:16 
QuestionDisable Keyboard's Keys? Pin
viettho14-May-06 19:51
viettho14-May-06 19:51 
AnswerRe: Disable Keyboard's Keys? Pin
Rizwan Bashir14-May-06 23:20
Rizwan Bashir14-May-06 23:20 
GeneralRe: Disable Keyboard's Keys? Pin
viettho15-May-06 6:27
viettho15-May-06 6:27 
QuestionFile Mainpulation Pin
shereem khaleel14-May-06 13:02
shereem khaleel14-May-06 13:02 
AnswerRe: File Mainpulation Pin
Rizwan Bashir14-May-06 23:14
Rizwan Bashir14-May-06 23:14 
Questiontrying to set value on vb.net listbox Pin
gooseman11214-May-06 9:43
gooseman11214-May-06 9:43 
am trying to use javascript to set values from a newly opened window on a dynamically created vb.net listbox with no sucess
heres the code..

Parent aspx code

<A HREF=""javascript:GetUpload('imageList');"">click here to upload images</A>

function GetUpload(CtrlName)
{
ChildWindow = window.open('upload.aspx?FormName=' + document.forms[0].name + '&CtrlName=' + CtrlName, "upload", "width=650,height=550,top=100,left=500,toolbars=no,scrollbars=yes,status=no,resizable=no");
}
-----------------------------------------------------------
child aspx code initiated by a button click

function doUpload()
{
var o = document.createElement("option");
o.text = "test";
o.value = "test";
window.opener.document.forms['Form1'].imageList.options[0] = o;
window.close();
}

throws a javascript:unknown exception when it adds the option
am really stuck on this one so any advice would be great.
AnswerRe: trying to set value on vb.net listbox Pin
Rizwan Bashir14-May-06 23:13
Rizwan Bashir14-May-06 23:13 
GeneralRe: trying to set value on vb.net listbox Pin
gooseman11215-May-06 6:59
gooseman11215-May-06 6:59 
AnswerRe: trying to set value on vb.net listbox Pin
_mubashir14-May-06 23:16
_mubashir14-May-06 23:16 
QuestionProgramatically set focus to another tab Pin
penguin500014-May-06 4:17
penguin500014-May-06 4:17 
AnswerRe: Programatically set focus to another tab Pin
Joshua Quick14-May-06 7:41
Joshua Quick14-May-06 7:41 
GeneralRe: Programatically set focus to another tab Pin
penguin500014-May-06 9:52
penguin500014-May-06 9:52 
GeneralRe: Programatically set focus to another tab Pin
_mubashir14-May-06 22:57
_mubashir14-May-06 22:57 
GeneralRe: Programatically set focus to another tab Pin
Joshua Quick15-May-06 6:30
Joshua Quick15-May-06 6:30 
GeneralRe: Programatically set focus to another tab Pin
penguin500016-May-06 8:24
penguin500016-May-06 8:24 
AnswerRe: Programatically set focus to another tab Pin
Joshua Quick16-May-06 12:18
Joshua Quick16-May-06 12:18 
QuestionRe: Programatically set focus to another tab Pin
penguin500018-May-06 10:05
penguin500018-May-06 10:05 
AnswerRe: Programatically set focus to another tab Pin
Joshua Quick18-May-06 16:08
Joshua Quick18-May-06 16:08 
GeneralRe: Programatically set focus to another tab Pin
penguin500018-May-06 20:11
penguin500018-May-06 20:11 
QuestionOpen Excel File Pin
shereem khaleel14-May-06 3:53
shereem khaleel14-May-06 3:53 
Questioncreate dsn runtime for sql server Pin
vipinpaliwal198014-May-06 1:20
vipinpaliwal198014-May-06 1:20 
AnswerRe: create dsn runtime for sql server Pin
Dave Kreskowiak14-May-06 5:15
mveDave Kreskowiak14-May-06 5:15 
GeneralRe: create dsn runtime for sql server Pin
vipinpaliwal198014-May-06 19:51
vipinpaliwal198014-May-06 19:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.