Click here to Skip to main content
15,907,687 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Add user Pin
Vader_Oz9-Jul-07 4:08
Vader_Oz9-Jul-07 4:08 
GeneralRe: Add user Pin
BLOEDHOND9-Jul-07 4:16
BLOEDHOND9-Jul-07 4:16 
GeneralRe: Add user Pin
Dave Kreskowiak9-Jul-07 4:28
mveDave Kreskowiak9-Jul-07 4:28 
QuestionSimple transactional updating in .Net Pin
MatthysDT8-Jul-07 23:24
MatthysDT8-Jul-07 23:24 
AnswerRe: Simple transactional updating in .Net Pin
Dave Kreskowiak9-Jul-07 4:23
mveDave Kreskowiak9-Jul-07 4:23 
GeneralRe: Simple transactional updating in .Net Pin
MatthysDT9-Jul-07 5:17
MatthysDT9-Jul-07 5:17 
Questionerror when commiting the row to the original data store(urgent) Pin
cutequencher8-Jul-07 23:14
cutequencher8-Jul-07 23:14 
AnswerRe: error when commiting the row to the original data store(urgent) Pin
Tom Deketelaere8-Jul-07 23:48
professionalTom Deketelaere8-Jul-07 23:48 
Normally this error acurs when you are accessing a variable that hasn't been initialized yet

for instance

dim s as datatable

s.delete... ' this will give your error

s = new datatable...

The right way would be

dim s as datatable
s= new datatable...
s.delete...

the best way to check if this is the case is asinging a stander value to your variables and then try it again if you still get te error something else is going on
GeneralRe: error when commiting the row to the original data store(urgent) Pin
cutequencher8-Jul-07 23:57
cutequencher8-Jul-07 23:57 
GeneralRe: error when commiting the row to the original data store(urgent) Pin
Dave Kreskowiak9-Jul-07 4:19
mveDave Kreskowiak9-Jul-07 4:19 
GeneralRe: error when commiting the row to the original data store(urgent) Pin
cutequencher9-Jul-07 14:28
cutequencher9-Jul-07 14:28 
GeneralRe: error when commiting the row to the original data store(urgent) Pin
Dave Kreskowiak10-Jul-07 12:24
mveDave Kreskowiak10-Jul-07 12:24 
Questionhow to create ocx (activex) control in vb.net Pin
Tom Deketelaere8-Jul-07 23:07
professionalTom Deketelaere8-Jul-07 23:07 
AnswerRe: how to create ocx (activex) control in vb.net Pin
Vasudevan Deepak Kumar9-Jul-07 2:07
Vasudevan Deepak Kumar9-Jul-07 2:07 
GeneralRe: how to create ocx (activex) control in vb.net Pin
Tom Deketelaere9-Jul-07 3:11
professionalTom Deketelaere9-Jul-07 3:11 
GeneralRe: how to create ocx (activex) control in vb.net Pin
Dave Kreskowiak9-Jul-07 4:13
mveDave Kreskowiak9-Jul-07 4:13 
GeneralRe: how to create ocx (activex) control in vb.net Pin
Tom Deketelaere9-Jul-07 4:30
professionalTom Deketelaere9-Jul-07 4:30 
GeneralRe: how to create ocx (activex) control in vb.net Pin
Tom Deketelaere9-Jul-07 4:49
professionalTom Deketelaere9-Jul-07 4:49 
QuestionNull value Pin
magedhv8-Jul-07 23:07
magedhv8-Jul-07 23:07 
AnswerRe: Null value Pin
Nilesh Hapse8-Jul-07 23:20
Nilesh Hapse8-Jul-07 23:20 
AnswerRe: Null value Pin
Vimalsoft(Pty) Ltd8-Jul-07 23:26
professionalVimalsoft(Pty) Ltd8-Jul-07 23:26 
AnswerRe: Null value Pin
Tom Deketelaere8-Jul-07 23:37
professionalTom Deketelaere8-Jul-07 23:37 
Questionvb6 code doesn't work in VBA(ms access). Pin
Asif Rehman8-Jul-07 22:15
Asif Rehman8-Jul-07 22:15 
AnswerRe: vb6 to VBA(I found solution). But Pin
Asif Rehman8-Jul-07 22:57
Asif Rehman8-Jul-07 22:57 
QuestionVB.net user controls in Access 2007 Pin
Tom Deketelaere8-Jul-07 21:39
professionalTom Deketelaere8-Jul-07 21:39 

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.