Click here to Skip to main content
16,010,876 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Rename Extensions in subfolders Pin
Serpent66626-Nov-08 12:03
Serpent66626-Nov-08 12:03 
QuestionCOPY A DATA TABLE Pin
Pasan14825-Nov-08 20:41
Pasan14825-Nov-08 20:41 
AnswerRe: COPY A DATA TABLE Pin
Christian Graus25-Nov-08 21:01
protectorChristian Graus25-Nov-08 21:01 
AnswerRe: COPY A DATA TABLE Pin
Amit Kushwaha25-Nov-08 22:56
Amit Kushwaha25-Nov-08 22:56 
AnswerRe: COPY A DATA TABLE Pin
Mycroft Holmes26-Nov-08 16:26
professionalMycroft Holmes26-Nov-08 16:26 
Questionopen a website from a windows application in any browser Pin
Sebastian T Xavier25-Nov-08 19:13
Sebastian T Xavier25-Nov-08 19:13 
AnswerRe: open a website from a windows application in any browser Pin
Christian Graus25-Nov-08 19:58
protectorChristian Graus25-Nov-08 19:58 
AnswerRe: open a website from a windows application in any browser Pin
dmex26-Nov-08 6:13
dmex26-Nov-08 6:13 
Actually...This will launch any default browser at the URL you specify

Private Sub LaunchURL(byval URL as String)
Try
Process.Start(URL)
Catch ex as exception
End Try
End Sub

You can then use: LaunchURL("http://urlhere") from anywhere within your code..

The Try is needed because some browsers like Firefox will sometimes return an error for no reason...

Steven
Questiongurbage values coming from the comport while using mscomm32.ocx Pin
souravghosh1825-Nov-08 18:26
souravghosh1825-Nov-08 18:26 
AnswerRe: gurbage values coming from the comport while using mscomm32.ocx Pin
Nanda_MR25-Nov-08 18:36
Nanda_MR25-Nov-08 18:36 
GeneralRe: gurbage values coming from the comport while using mscomm32.ocx Pin
souravghosh1825-Nov-08 18:41
souravghosh1825-Nov-08 18:41 
GeneralRe: gurbage values coming from the comport while using mscomm32.ocx Pin
Nanda_MR25-Nov-08 22:58
Nanda_MR25-Nov-08 22:58 
AnswerRe: gurbage values coming from the comport while using mscomm32.ocx Pin
Rajesh Anuhya25-Nov-08 19:11
professionalRajesh Anuhya25-Nov-08 19:11 
QuestionIs it possible to build a control array based on existing controls created at design time? Pin
Jon_Boy25-Nov-08 7:10
Jon_Boy25-Nov-08 7:10 
AnswerRe: Is it possible to build a control array based on existing controls created at design time? Pin
Jon_Boy25-Nov-08 7:36
Jon_Boy25-Nov-08 7:36 
GeneralRe: Is it possible to build a control array based on existing controls created at design time? Pin
Dave Kreskowiak25-Nov-08 8:20
mveDave Kreskowiak25-Nov-08 8:20 
AnswerRe: Is it possible to build a control array based on existing controls created at design time? Pin
Christian Graus25-Nov-08 9:34
protectorChristian Graus25-Nov-08 9:34 
AnswerRe: Is it possible to build a control array based on existing controls created at design time? Pin
Gideon Engelberth25-Nov-08 10:55
Gideon Engelberth25-Nov-08 10:55 
GeneralRe: Is it possible to build a control array based on existing controls created at design time? Pin
Jon_Boy26-Nov-08 3:51
Jon_Boy26-Nov-08 3:51 
QuestionReceiving the error "There is already an open DataReader associated with this Command which must be closed first." [solved] Pin
Marcus J. Smith25-Nov-08 4:08
professionalMarcus J. Smith25-Nov-08 4:08 
AnswerRe: Receiving the error "There is already an open DataReader associated with this Command which must be closed first." Pin
Ben Fair25-Nov-08 4:23
Ben Fair25-Nov-08 4:23 
GeneralRe: Receiving the error "There is already an open DataReader associated with this Command which must be closed first." Pin
Marcus J. Smith25-Nov-08 4:27
professionalMarcus J. Smith25-Nov-08 4:27 
Questiondelete questions Pin
yaya_star24-Nov-08 21:34
yaya_star24-Nov-08 21:34 
AnswerRe: delete questions Pin
Nanda_MR24-Nov-08 22:09
Nanda_MR24-Nov-08 22:09 
GeneralRe: delete questions Pin
yaya_star24-Nov-08 22:14
yaya_star24-Nov-08 22: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.