Click here to Skip to main content
15,914,165 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Stop running multiple instances of my program Pin
Dave Kreskowiak10-Oct-07 4:53
mveDave Kreskowiak10-Oct-07 4:53 
GeneralRe: Stop running multiple instances of my program Pin
Tom Deketelaere10-Oct-07 4:57
professionalTom Deketelaere10-Oct-07 4:57 
GeneralRe: Stop running multiple instances of my program Pin
Cory Kimble10-Oct-07 5:16
Cory Kimble10-Oct-07 5:16 
GeneralRe: Stop running multiple instances of my program Pin
Dave Kreskowiak10-Oct-07 5:20
mveDave Kreskowiak10-Oct-07 5:20 
AnswerRe: Stop running multiple instances of my program Pin
Dave Kreskowiak10-Oct-07 4:54
mveDave Kreskowiak10-Oct-07 4:54 
AnswerRe: Stop running multiple instances of my program Pin
mr_lasseter10-Oct-07 5:24
mr_lasseter10-Oct-07 5:24 
QuestionObject reference not set to an instance of an object Pin
dimuthuvbnet10-Oct-07 3:12
dimuthuvbnet10-Oct-07 3:12 
AnswerRe: Object reference not set to an instance of an object Pin
Tom Deketelaere10-Oct-07 3:20
professionalTom Deketelaere10-Oct-07 3:20 
this means that you are using a variable before it has been initialized

for example

private sub blabla()
dim l as list(of string)

l.add("this is going to give a object referance not set to an instance of an object error")

end sub


solution:

private sub blabla()
dim l as NEW list(of string)

l.add("this is going to give a object referance not set to an instance of an object error")

end sub


If my help was helpfull let me know, if not let me know why.

The only way we learn is by making mistaks.

GeneralRe: Object reference not set to an instance of an object Pin
dimuthuvbnet12-Oct-07 21:29
dimuthuvbnet12-Oct-07 21:29 
AnswerRe: Object reference not set to an instance of an object Pin
Rakan Ma'ayeh10-Oct-07 12:27
Rakan Ma'ayeh10-Oct-07 12:27 
QuestionHow to measure the execution time of a code? Pin
kkakosim10-Oct-07 3:07
kkakosim10-Oct-07 3:07 
AnswerRe: How to measure the execution time of a code? Pin
Guffa10-Oct-07 4:24
Guffa10-Oct-07 4:24 
GeneralRe: How to measure the execution time of a code? Pin
kkakosim10-Oct-07 19:16
kkakosim10-Oct-07 19:16 
Questiondatagridview event Pin
WhiteGirl2310-Oct-07 1:41
WhiteGirl2310-Oct-07 1:41 
AnswerRe: datagridview event Pin
Dave Kreskowiak10-Oct-07 17:20
mveDave Kreskowiak10-Oct-07 17:20 
QuestionArray size problem Pin
Benny_Lava10-Oct-07 0:35
Benny_Lava10-Oct-07 0:35 
AnswerRe: Array size problem Pin
Christian Graus10-Oct-07 0:42
protectorChristian Graus10-Oct-07 0:42 
AnswerRe: Array size problem Pin
Rakan Ma'ayeh10-Oct-07 12:28
Rakan Ma'ayeh10-Oct-07 12:28 
Questionhow to use textbox as a searching. to listbox?what is code to inside the textbox ? Pin
sheldon198710-Oct-07 0:16
sheldon198710-Oct-07 0:16 
AnswerRe: how to use textbox as a searching. to listbox?what is code to inside the textbox ? Pin
The ANZAC10-Oct-07 0:30
The ANZAC10-Oct-07 0:30 
QuestionDataGridView..... Pin
moomoooomoo9-Oct-07 23:32
moomoooomoo9-Oct-07 23:32 
QuestionConstant Module Or File ? Pin
barney_19729-Oct-07 22:09
barney_19729-Oct-07 22:09 
AnswerRe: Constant Module Or File ? Pin
Tom Deketelaere9-Oct-07 22:51
professionalTom Deketelaere9-Oct-07 22:51 
GeneralRe: Constant Module Or File ? Pin
barney_19729-Oct-07 23:21
barney_19729-Oct-07 23:21 
QuestionOld array function does not work in VB 2005? Pin
Nasbcn9-Oct-07 22:05
Nasbcn9-Oct-07 22:05 

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.