Click here to Skip to main content
15,896,453 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionHow could a function read any type of variable's value and return it as a string? Pin
JUNEYT15-Feb-09 2:02
JUNEYT15-Feb-09 2:02 
AnswerRe: How could a function read any type of variable's value and return it as a string? Pin
riced15-Feb-09 3:09
riced15-Feb-09 3:09 
AnswerRe: How could a function read any type of variable's value and return it as a string? Pin
Eddy Vluggen15-Feb-09 3:37
professionalEddy Vluggen15-Feb-09 3:37 
GeneralRe: How could a function read any type of variable's value and return it as a string? Pin
riced15-Feb-09 4:37
riced15-Feb-09 4:37 
GeneralRe: How could a function read any type of variable's value and return it as a string? Pin
JUNEYT15-Feb-09 7:22
JUNEYT15-Feb-09 7:22 
GeneralRe: How could a function read any type of variable's value and return it as a string? Pin
Eddy Vluggen15-Feb-09 7:49
professionalEddy Vluggen15-Feb-09 7:49 
QuestionKeyDown Event keeps firing Pin
Zaegra14-Feb-09 23:25
Zaegra14-Feb-09 23:25 
AnswerRe: KeyDown Event keeps firing Pin
Wendelius15-Feb-09 0:57
mentorWendelius15-Feb-09 0:57 
Could you add a boolean flag and set it to true in key down and to false in key up. If the flag is true, ignore the event. Something like this in keydown:
if (keydown = false) then
   keydown = true
   ... your other code ...
end if

and in keyup
keydown = false


The need to optimize rises from a bad design.My articles[^]

AnswerRe: KeyDown Event keeps firing Pin
riced15-Feb-09 0:59
riced15-Feb-09 0:59 
GeneralRe: KeyDown Event keeps firing Pin
Zaegra15-Feb-09 2:23
Zaegra15-Feb-09 2:23 
GeneralRe: KeyDown Event keeps firing Pin
riced15-Feb-09 2:48
riced15-Feb-09 2:48 
AnswerRe: KeyDown Event keeps firing Pin
Eddy Vluggen15-Feb-09 3:27
professionalEddy Vluggen15-Feb-09 3:27 
GeneralRe: KeyDown Event keeps firing Pin
Luc Pattyn15-Feb-09 9:56
sitebuilderLuc Pattyn15-Feb-09 9:56 
AnswerRe: KeyDown Event keeps firing Pin
Samir Ibrahim15-Feb-09 22:22
Samir Ibrahim15-Feb-09 22:22 
QuestionVersion check Pin
JR21214-Feb-09 20:50
JR21214-Feb-09 20:50 
AnswerRe: Version check Pin
Dave Kreskowiak15-Feb-09 4:39
mveDave Kreskowiak15-Feb-09 4:39 
GeneralRe: Version check Pin
JR21215-Feb-09 19:39
JR21215-Feb-09 19:39 
GeneralRe: Version check Pin
Dave Kreskowiak16-Feb-09 2:13
mveDave Kreskowiak16-Feb-09 2:13 
QuestionI need help with ADO.NET Pin
fiaolle14-Feb-09 10:53
fiaolle14-Feb-09 10:53 
AnswerRe: I need help with ADO.NET Pin
Calin Tatar14-Feb-09 13:18
Calin Tatar14-Feb-09 13:18 
GeneralRe: I need help with ADO.NET Pin
fiaolle15-Feb-09 1:22
fiaolle15-Feb-09 1:22 
AnswerRe: I need help with ADO.NET Pin
Dave Kreskowiak15-Feb-09 4:36
mveDave Kreskowiak15-Feb-09 4:36 
GeneralRe: I need help with ADO.NET Pin
fiaolle15-Feb-09 8:10
fiaolle15-Feb-09 8:10 
GeneralRe: I need help with ADO.NET Pin
Dave Kreskowiak15-Feb-09 10:07
mveDave Kreskowiak15-Feb-09 10:07 
GeneralRe: I need help with ADO.NET Pin
fiaolle15-Feb-09 10:19
fiaolle15-Feb-09 10:19 

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.