Click here to Skip to main content
15,905,616 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Trying to saving URLs, big problems! :-( Pin
Darshon10-Feb-06 4:53
Darshon10-Feb-06 4:53 
GeneralRe: Trying to saving URLs, big problems! :-( Pin
Dave Kreskowiak10-Feb-06 13:42
mveDave Kreskowiak10-Feb-06 13:42 
GeneralRe: Trying to saving URLs, big problems! :-( Pin
Darshon10-Feb-06 17:38
Darshon10-Feb-06 17:38 
Questionim try 2 convert .mdb to .cdb (pocket pc) using actice sync, but y the Remote Procedure Call Fail message come out..i cann convert anymore...help!! Pin
williamccyccyccy8-Feb-06 15:13
williamccyccyccy8-Feb-06 15:13 
GeneralRe: im try 2 convert .mdb to .cdb (pocket pc) using actice sync, but y the Remote Procedure Call Fail message come out..i cann convert anymore...help!! Pin
Guffa8-Feb-06 21:49
Guffa8-Feb-06 21:49 
Questionselect tab in tabstrip from commandbutton Pin
Jlawrnce8-Feb-06 14:15
Jlawrnce8-Feb-06 14:15 
AnswerRe: select tab in tabstrip from commandbutton Pin
Chatura Dilan8-Feb-06 23:14
Chatura Dilan8-Feb-06 23:14 
AnswerRe: select tab in tabstrip from commandbutton Pin
JUNEYT9-Feb-06 6:03
JUNEYT9-Feb-06 6:03 
Okay! Create two buttons on the form for (next and previouss) and place your tab control on to form also (I assume that it is Tabcontrol1 with n tab pages). You should have a global variable which will track the index number with increments or decreaments... Here is the part of an example...

Public TABINDEX as Int32 = 0

'Next button
Private sub Button1_Click(Sender, e) handles button1_click
TabIndex +=1
if Tabindex > Tabcontrol1.tabpages.count Then
TabIndex = TabControl1.tabPages.count
end if

TabControl1.SelectedIndex = TabIndex

End Sub

Do the opposite thing for the deacrement and use

Private Sub Button2_Click(Sender, e) handles Button2_Click
'Previous button
TabIndex -=1
if TabIndex < 0 Then
tabindex = 0
end if

TabControl1.SelectedIndes = TabIndex

end sub

Wink | ;)
QuestionProgram for E-mails Pin
kostasdiktia28-Feb-06 13:25
kostasdiktia28-Feb-06 13:25 
QuestionUsing Flash Events in Vb.Net Pin
James A.8-Feb-06 13:11
James A.8-Feb-06 13:11 
AnswerRe: Using Flash Events in Vb.Net Pin
Chatura Dilan8-Feb-06 17:24
Chatura Dilan8-Feb-06 17:24 
GeneralRe: Using Flash Events in Vb.Net Pin
Guerven8-Feb-06 18:38
Guerven8-Feb-06 18:38 
GeneralRe: Using Flash Events in Vb.Net Pin
Chatura Dilan8-Feb-06 23:38
Chatura Dilan8-Feb-06 23:38 
Questiondatagrid and adodc components Pin
Marc Soleda8-Feb-06 12:25
Marc Soleda8-Feb-06 12:25 
QuestionMove Image within PicBox Pin
Serpiente8-Feb-06 12:06
Serpiente8-Feb-06 12:06 
AnswerRe: Move Image within PicBox Pin
kostasdiktia28-Feb-06 13:01
kostasdiktia28-Feb-06 13:01 
AnswerRe: Move Image within PicBox Pin
Dave Kreskowiak8-Feb-06 16:26
mveDave Kreskowiak8-Feb-06 16:26 
GeneralRe: Move Image within PicBox Pin
Guerven8-Feb-06 18:40
Guerven8-Feb-06 18:40 
AnswerRe: Move Image within PicBox Pin
Serpiente10-Feb-06 6:22
Serpiente10-Feb-06 6:22 
Questionhow to manage dropdownlist in a data repeater Pin
Julianne_juju8-Feb-06 8:39
Julianne_juju8-Feb-06 8:39 
AnswerRe: how to manage dropdownlist in a data repeater Pin
Julianne_juju8-Feb-06 11:03
Julianne_juju8-Feb-06 11:03 
QuestionDynamic control events Pin
H@is@here8-Feb-06 5:33
H@is@here8-Feb-06 5:33 
AnswerRe: Dynamic control events Pin
Dave Kreskowiak8-Feb-06 8:25
mveDave Kreskowiak8-Feb-06 8:25 
AnswerRe: Dynamic control events Pin
JUNEYT8-Feb-06 8:33
JUNEYT8-Feb-06 8:33 
AnswerRe: Dynamic control events Pin
H@is@here8-Feb-06 9:08
H@is@here8-Feb-06 9:08 

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.