Click here to Skip to main content
15,901,666 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralUpdate Access Database Pin
victor_ba8513-Jan-05 8:58
victor_ba8513-Jan-05 8:58 
GeneralRe: Update Access Database Pin
Edbert P13-Jan-05 17:37
Edbert P13-Jan-05 17:37 
General(Hopefully) Simple Install Question Pin
Mitch F.13-Jan-05 8:06
Mitch F.13-Jan-05 8:06 
GeneralSystemMenu Icons... Pin
TAlvord13-Jan-05 6:27
TAlvord13-Jan-05 6:27 
GeneralRe: SystemMenu Icons... Pin
Rizwan Bashir13-Jan-05 21:59
Rizwan Bashir13-Jan-05 21:59 
GeneralRe: SystemMenu Icons... Pin
TAlvord14-Jan-05 13:20
TAlvord14-Jan-05 13:20 
GeneralSome difficult task in VB.NET Pin
Mekong River13-Jan-05 5:40
Mekong River13-Jan-05 5:40 
GeneralRe: Some difficult task in VB.NET Pin
Charlie Williams13-Jan-05 6:22
Charlie Williams13-Jan-05 6:22 
The man from SCN-CO wrote:
1. How to determine which row or value is select in a list view in VB.NET?

Use the SelectedIndices and SelectedItems properties (as described in the documentation).

The man from SCN-CO wrote:
2. I have a button, I want it work when the user click on it, it would run a webpage (ex. when user click it point to www.codeproject.com) and open a default mail application to send mail to someone@codeproject.com.

Use the System.Diagnostics.Process class. These two calls will start the default application for internet browsing and sending mail, respectively:
Process.Start("http://www.codeproject.com")
Process.Start("mailto:someone@codeproject.com")

The man from SCN-CO wrote:
3. How to create the splash screen in vb.net???

Much has been written on this subject. I suggest googling for "VB.NET splash screen" and look through some of the samples.




Charlie

if(!curlies){ return; }
GeneralRe: Some difficult task in VB.NET Pin
Mekong River14-Jan-05 4:53
Mekong River14-Jan-05 4:53 
Generalcalculate total time "Access" Pin
sevan13-Jan-05 4:10
sevan13-Jan-05 4:10 
GeneralRe: calculate total time "Access" Pin
Jim Matthews13-Jan-05 5:10
Jim Matthews13-Jan-05 5:10 
GeneralRe: calculate total time "Access" Pin
sevan13-Jan-05 19:33
sevan13-Jan-05 19:33 
GeneralRe: calculate total time "Access" Pin
Jim Matthews14-Jan-05 4:16
Jim Matthews14-Jan-05 4:16 
Generalshow form2 ........ Pin
Ritesh123413-Jan-05 4:05
Ritesh123413-Jan-05 4:05 
GeneralRe: show form2 ........ Pin
Charlie Williams13-Jan-05 5:51
Charlie Williams13-Jan-05 5:51 
GeneralRe: show form2 ........ Pin
aprx16-Jan-05 0:38
aprx16-Jan-05 0:38 
QuestionBitmap to jpg in memory? Pin
[DK]KiloDunse12-Jan-05 23:55
[DK]KiloDunse12-Jan-05 23:55 
AnswerRe: Bitmap to jpg in memory? Pin
Ritesh123413-Jan-05 3:23
Ritesh123413-Jan-05 3:23 
GeneralRe: Bitmap to jpg in memory? Pin
[DK]KiloDunse13-Jan-05 3:35
[DK]KiloDunse13-Jan-05 3:35 
GeneralWWW to file Pin
paanoik12-Jan-05 23:05
paanoik12-Jan-05 23:05 
GeneralStopping a list of threads Pin
Rizwan Bashir12-Jan-05 22:50
Rizwan Bashir12-Jan-05 22:50 
GeneralRe: Stopping a list of threads Pin
MohammadAmiry12-Jan-05 23:29
MohammadAmiry12-Jan-05 23:29 
GeneralRe: Stopping a list of threads Pin
Rizwan Bashir12-Jan-05 23:43
Rizwan Bashir12-Jan-05 23:43 
GeneralRe: Stopping a list of threads Pin
Robert Rohde13-Jan-05 9:47
Robert Rohde13-Jan-05 9:47 
GeneralRe: Stopping a list of threads Pin
Rizwan Bashir13-Jan-05 20:11
Rizwan Bashir13-Jan-05 20: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.