Click here to Skip to main content
15,891,003 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Slow Database Connection Pin
Colin Angus Mackay13-Jan-07 9:30
Colin Angus Mackay13-Jan-07 9:30 
Questionwhat is differeence between i.equal(j) and i=j in vb.net? Pin
sathyan_829412-Jan-07 20:55
sathyan_829412-Jan-07 20:55 
QuestionRe: what is differeence between i.equal(j) and i=j in vb.net? Pin
CPallini12-Jan-07 21:36
mveCPallini12-Jan-07 21:36 
AnswerRe: what is differeence between i.equal(j) and i=j in vb.net? Pin
sathyan_829412-Jan-07 21:46
sathyan_829412-Jan-07 21:46 
GeneralRe: what is differeence between i.equal(j) and i=j in vb.net? Pin
CPallini12-Jan-07 22:16
mveCPallini12-Jan-07 22:16 
GeneralRe: what is differeence between i.equal(j) and i=j in vb.net? Pin
Colin Angus Mackay13-Jan-07 9:45
Colin Angus Mackay13-Jan-07 9:45 
AnswerRe: what is differeence between i.equal(j) and i=j in vb.net? Pin
Thomas Stockwell13-Jan-07 16:27
professionalThomas Stockwell13-Jan-07 16:27 
AnswerRe: what is differeence between i.equal(j) and i=j in vb.net? Pin
Guffa13-Jan-07 23:55
Guffa13-Jan-07 23:55 
That depends very much on the data types of the variables.

The Equals method of the i variable is called with whatever data the j variable contains, while the behaviour of the = operator depends on the data types. If the data types are the same or can easily be converted to the same type, the = operator method for that data types is used, which usually does the same as the Equals method. Otherwise a huge method (hundreds of lines of code) in the Microsoft.VisualBasic library is called, that determines how the values can be compared and how it should be done.

---
Year happy = new Year(2007);

AnswerRe: what is differeence between i.equal(j) and i=j in vb.net? Pin
Enriad19-Jan-07 14:28
Enriad19-Jan-07 14:28 
QuestionRetrieving Data from Dataset Pin
sdkgolf12-Jan-07 20:11
sdkgolf12-Jan-07 20:11 
AnswerRe: Retrieving Data from Dataset Pin
ObsidianWarrior12-Jan-07 22:19
ObsidianWarrior12-Jan-07 22:19 
QuestionRe: Retrieving Data from Dataset Pin
sdkgolf13-Jan-07 10:46
sdkgolf13-Jan-07 10:46 
AnswerRe: Retrieving Data from Dataset Pin
sdkgolf15-Jan-07 10:21
sdkgolf15-Jan-07 10:21 
QuestionBuffer Size in TCP for HTTPWEBREQUEST Pin
nihonsx512-Jan-07 14:29
nihonsx512-Jan-07 14:29 
QuestionDifficult Question: Read/Modify file Pin
SumTinWong12-Jan-07 12:03
SumTinWong12-Jan-07 12:03 
QuestionListview Data to XML Pin
hkinser912-Jan-07 11:35
hkinser912-Jan-07 11:35 
AnswerRe: Listview Data to XML Pin
japel13-Jan-07 11:19
japel13-Jan-07 11:19 
GeneralRe: Listview Data to XML Pin
hkinser913-Jan-07 16:07
hkinser913-Jan-07 16:07 
QuestionIs it possible to password protect FOLDER Pin
focusit12-Jan-07 10:03
focusit12-Jan-07 10:03 
AnswerRe: Is it possible to password protect FOLDER Pin
Dave Kreskowiak12-Jan-07 10:07
mveDave Kreskowiak12-Jan-07 10:07 
GeneralRe: Is it possible to password protect FOLDER Pin
focusit14-Jan-07 3:56
focusit14-Jan-07 3:56 
GeneralRe: Is it possible to password protect FOLDER Pin
Colin Angus Mackay14-Jan-07 4:04
Colin Angus Mackay14-Jan-07 4:04 
GeneralRe: Is it possible to password protect FOLDER Pin
Dave Kreskowiak14-Jan-07 4:38
mveDave Kreskowiak14-Jan-07 4:38 
GeneralRe: Is it possible to password protect FOLDER Pin
focusit15-Jan-07 12:21
focusit15-Jan-07 12:21 
GeneralRe: Is it possible to password protect FOLDER Pin
Dave Kreskowiak15-Jan-07 19:14
mveDave Kreskowiak15-Jan-07 19:14 

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.