Click here to Skip to main content
15,894,324 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionHow can I declare an API out system32 directory? Pin
JUNEYT9-Mar-06 1:19
JUNEYT9-Mar-06 1:19 
AnswerRe: How can I declare an API out system32 directory? Pin
progload9-Mar-06 4:56
progload9-Mar-06 4:56 
GeneralRe: How can I declare an API out system32 directory? Pin
JUNEYT9-Mar-06 5:24
JUNEYT9-Mar-06 5:24 
GeneralRe: How can I declare an API out system32 directory? Pin
progload9-Mar-06 5:46
progload9-Mar-06 5:46 
GeneralRe: How can I declare an API out system32 directory? Pin
JUNEYT9-Mar-06 9:16
JUNEYT9-Mar-06 9:16 
Questionhow to find Code for GoogleToolbar1.dll Pin
Paritos9-Mar-06 1:12
Paritos9-Mar-06 1:12 
AnswerRe: how to find Code for GoogleToolbar1.dll Pin
progload9-Mar-06 5:34
progload9-Mar-06 5:34 
Questionhow to Stop Timer?? Pin
campbells9-Mar-06 0:27
campbells9-Mar-06 0:27 
i'm doing a dice function which user click on the button then the dice will start rolling a while then it stop itself. i only able to make it random dice, but there is some problem when it stop casue after it stop it cannot perfomr my next action.Anyone pls correct my mistake ? :

---when user click on the button
Private Sub Dice_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Dice.Click

DiceTime.Enabled = True
movepiece()

End Sub

-----run tis when DiceTime.enabled=True
Private Sub DiceTime_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles DiceTime.Tick
'Randomly pick a number from 1 to 6
Dim z, y, bc As Integer
Randomize(bc)
For z = 1 To 6
dicelabel.Visible = True
Next
y = (Int(Rnd() * 6) + 1)
dicelabel.Text = y
BTime.Enabled = True
End Sub
---- plan to stop it after the dice rolling a while
Private Sub BTime_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BTime.Tick
DiceTime.Enabled = False
End Sub
AnswerRe: how to Stop Timer?? Pin
Joshua Quick9-Mar-06 11:28
Joshua Quick9-Mar-06 11:28 
QuestionHelpProvider Issue Pin
Jason Stamp8-Mar-06 22:24
Jason Stamp8-Mar-06 22:24 
Questioncount total row in datagrid Pin
vivek_pon8-Mar-06 21:50
vivek_pon8-Mar-06 21:50 
AnswerRe: count total row in datagrid Pin
kostasdiktia28-Mar-06 22:31
kostasdiktia28-Mar-06 22:31 
GeneralRe: count total row in datagrid Pin
FeRtoll9-Mar-06 0:18
FeRtoll9-Mar-06 0:18 
Questionplay sound Pin
suppachai Ratchanoo8-Mar-06 21:04
suppachai Ratchanoo8-Mar-06 21:04 
QuestionGraficos en Visual Basic Pin
ronnie_leo8-Mar-06 18:44
ronnie_leo8-Mar-06 18:44 
AnswerRe: Graficos en Visual Basic Pin
Steve Pullan8-Mar-06 18:48
Steve Pullan8-Mar-06 18:48 
AnswerRe: Graficos en Visual Basic Pin
progload8-Mar-06 19:58
progload8-Mar-06 19:58 
Questionstoring images in database for dating site. Pin
uglyeyes8-Mar-06 18:08
uglyeyes8-Mar-06 18:08 
AnswerRe: storing images in database for dating site. Pin
Steve Pullan8-Mar-06 18:45
Steve Pullan8-Mar-06 18:45 
AnswerRe: storing images in database for dating site. Pin
Steve Pullan8-Mar-06 18:53
Steve Pullan8-Mar-06 18:53 
GeneralRe: storing images in database for dating site. Pin
uglyeyes9-Mar-06 1:24
uglyeyes9-Mar-06 1:24 
GeneralRe: storing images in database for dating site. Pin
Steve Pullan9-Mar-06 11:09
Steve Pullan9-Mar-06 11:09 
GeneralRe: storing images in database for dating site. Pin
uglyeyes9-Mar-06 17:03
uglyeyes9-Mar-06 17:03 
Questionhow to clear datagridview w/c is data-bound Pin
thepityone8-Mar-06 17:52
thepityone8-Mar-06 17:52 
AnswerRe: how to clear datagridview w/c is data-bound Pin
abhinish8-Mar-06 18:11
abhinish8-Mar-06 18:11 

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.