Click here to Skip to main content
15,899,313 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Special Char in SQL Query [modified] Pin
Wendelius20-Dec-08 0:28
mentorWendelius20-Dec-08 0:28 
QuestionProblem with regular expression Pin
shally_7919-Dec-08 18:32
shally_7919-Dec-08 18:32 
GeneralRe: Problem with regular expression Pin
Luc Pattyn20-Dec-08 2:02
sitebuilderLuc Pattyn20-Dec-08 2:02 
GeneralRe: Problem with regular expression Pin
shally_7922-Dec-08 17:46
shally_7922-Dec-08 17:46 
GeneralRe: Problem with regular expression Pin
Luc Pattyn23-Dec-08 0:07
sitebuilderLuc Pattyn23-Dec-08 0:07 
QuestionRun Process in background Pin
Gagan.2019-Dec-08 17:32
Gagan.2019-Dec-08 17:32 
AnswerRe: Run Process in background Pin
Christian Graus19-Dec-08 17:49
protectorChristian Graus19-Dec-08 17:49 
AnswerRe: Run Process in background Pin
Rajesh Anuhya19-Dec-08 19:15
professionalRajesh Anuhya19-Dec-08 19:15 
this may help u

Dim p1 As New System.Diagnostics.Process
p1.StartInfo.WindowStyle = ProcessWindowStyle.Normal
p1.StartInfo.FileName = "C:\Program Files\Internet Explorer\iexplore.exe"
p1.StartInfo.Arguments = "yahoo.com"
p1.StartInfo.UseShellExecute = True
p1.Start()
'p1.WaitForExit()
p1.Close()

Rajesh B --> A Poor Workman Blames His Tools <--

GeneralRe: Run Process in background Pin
Christian Graus19-Dec-08 19:19
protectorChristian Graus19-Dec-08 19:19 
GeneralRe: Run Process in background Pin
Rajesh Anuhya19-Dec-08 19:24
professionalRajesh Anuhya19-Dec-08 19:24 
GeneralRe: Run Process in background Pin
Gagan.2019-Dec-08 21:51
Gagan.2019-Dec-08 21:51 
GeneralRe: Run Process in background Pin
Rajesh Anuhya19-Dec-08 22:36
professionalRajesh Anuhya19-Dec-08 22:36 
Questionactivex download problem Pin
Tabb Smith19-Dec-08 17:16
Tabb Smith19-Dec-08 17:16 
AnswerRe: activex download problem Pin
Christian Graus19-Dec-08 17:52
protectorChristian Graus19-Dec-08 17:52 
GeneralRe: activex download problem Pin
Tabb Smith21-Dec-08 12:20
Tabb Smith21-Dec-08 12:20 
QuestionLimit the movement of scrolling Picture Pin
yoyoaz7719-Dec-08 5:55
yoyoaz7719-Dec-08 5:55 
AnswerRe: Limit the movement of scrolling Picture Pin
Dave Kreskowiak19-Dec-08 7:52
mveDave Kreskowiak19-Dec-08 7:52 
GeneralRe: Limit the movement of scrolling Picture Pin
EliottA19-Dec-08 8:53
EliottA19-Dec-08 8:53 
AnswerRe: Limit the movement of scrolling Picture Pin
Christian Graus19-Dec-08 15:28
protectorChristian Graus19-Dec-08 15:28 
QuestionComboboxes and Collections Pin
LostMonkey19-Dec-08 3:41
LostMonkey19-Dec-08 3:41 
AnswerRe: Comboboxes and Collections Pin
Christian Graus19-Dec-08 16:40
protectorChristian Graus19-Dec-08 16:40 
QuestionCreating Logon screen with SQL Connection Pin
Shrimpersfan19-Dec-08 1:17
Shrimpersfan19-Dec-08 1:17 
AnswerRe: Creating Logon screen with SQL Connection Pin
Jon_Boy19-Dec-08 1:42
Jon_Boy19-Dec-08 1:42 
GeneralRe: Creating Logon screen with SQL Connection Pin
Shrimpersfan19-Dec-08 3:00
Shrimpersfan19-Dec-08 3:00 
GeneralRe: Creating Logon screen with SQL Connection Pin
Dave Kreskowiak19-Dec-08 4:47
mveDave Kreskowiak19-Dec-08 4:47 

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.