Click here to Skip to main content
16,005,080 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Delete single line in VB 2005 Pin
The ANZAC28-Aug-07 0:21
The ANZAC28-Aug-07 0:21 
Questionimporting csv file in microsoft office spreadsheet 11 control using vb.net [modified] Pin
babusat27-Aug-07 21:13
babusat27-Aug-07 21:13 
QuestionDelete Row on DataGridView Pin
ryan11727-Aug-07 20:50
ryan11727-Aug-07 20:50 
AnswerRe: Delete Row on DataGridView Pin
Dave Kreskowiak28-Aug-07 14:43
mveDave Kreskowiak28-Aug-07 14:43 
AnswerRe: Delete Row on DataGridView Pin
Johan Hakkesteegt1-Sep-07 7:44
Johan Hakkesteegt1-Sep-07 7:44 
QuestionMake a button defualt on a dialogbox Pin
jamilkhan00727-Aug-07 20:16
jamilkhan00727-Aug-07 20:16 
AnswerRe: Make a button defualt on a dialogbox Pin
Christian Graus27-Aug-07 22:04
protectorChristian Graus27-Aug-07 22:04 
QuestionAlternate and speedy code for it? Pin
jamilkhan00727-Aug-07 20:12
jamilkhan00727-Aug-07 20:12 
I have created my custom button control and then used it in an animated keyboard, i.e. Not exactly a virtual keyboard that sends keys to current active programe, instead it just animates keyup/down on user keypup/down events. Now my code is somehow like this:

public sub keyboard.pushdow(key as keys) ''called on keyup or down events

for each button as myButton in myKeyboard.controls
if button.name.equals(key.tostring())
button.pushdown
'it can be button.pushup in case of keyup event
exit for
Next
end sub

now c that a button from within the keyboard with the same name which key is passed to block is animated.
e.g if user passes "A" then a button with name "A" is animated from with in the keyboard.
Now this whole subroutine is executed twice for each key press i.e Keyup/down events.
and keyboard respons is slow if u type fast bcoz it searches for a key twice for each key press. Frown | :-(


i tried this:


dim button as myButton= mykeyboard.controls(key.tostring)

bt it doesnt animate the corresponding key on keyboard.Confused | :confused:
Why? and any other soltion instead of looping through all keysConfused | :confused:

(Jameel)

AnswerRe: Alternate and speedy code for it? Pin
Dave Kreskowiak28-Aug-07 14:46
mveDave Kreskowiak28-Aug-07 14:46 
AnswerRe: Alternate and speedy code for it? Pin
jamilkhan00728-Aug-07 20:32
jamilkhan00728-Aug-07 20:32 
GeneralRe: Alternate and speedy code for it? Pin
Dave Kreskowiak29-Aug-07 12:37
mveDave Kreskowiak29-Aug-07 12:37 
Questiondetermine check state of selected item of checklistbox Pin
Rupesh Kumar Swami27-Aug-07 19:35
Rupesh Kumar Swami27-Aug-07 19:35 
AnswerRe: determine check state of selected item of checklistbox Pin
The ANZAC27-Aug-07 20:43
The ANZAC27-Aug-07 20:43 
GeneralRe: determine check state of selected item of checklistbox Pin
Rupesh Kumar Swami28-Aug-07 20:01
Rupesh Kumar Swami28-Aug-07 20:01 
QuestionOption Buttons not working Pin
RaveRare27-Aug-07 18:48
RaveRare27-Aug-07 18:48 
AnswerRe: Option Buttons not working Pin
Christian Graus27-Aug-07 20:08
protectorChristian Graus27-Aug-07 20:08 
GeneralRe: Option Buttons not working Pin
RaveRare27-Aug-07 20:31
RaveRare27-Aug-07 20:31 
GeneralRe: Option Buttons not working Pin
RaveRare27-Aug-07 20:33
RaveRare27-Aug-07 20:33 
QuestionVB.NET 2003 and Crystal Reports Pin
mejames27-Aug-07 17:36
mejames27-Aug-07 17:36 
QuestionCursor Control Pin
frankiebaby227-Aug-07 17:11
frankiebaby227-Aug-07 17:11 
AnswerRe: Cursor Control Pin
Dave Kreskowiak28-Aug-07 14:52
mveDave Kreskowiak28-Aug-07 14:52 
GeneralRe: Cursor Control Pin
frankiebaby229-Aug-07 8:54
frankiebaby229-Aug-07 8:54 
QuestionError when try to get the total of the value Pin
Mekong River27-Aug-07 16:02
Mekong River27-Aug-07 16:02 
AnswerRe: Error when try to get the total of the value Pin
Ahamed Azeem27-Aug-07 21:07
Ahamed Azeem27-Aug-07 21:07 
GeneralRe: Error when try to get the total of the value Pin
Mekong River27-Aug-07 21:19
Mekong River27-Aug-07 21: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.