Click here to Skip to main content
15,914,767 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralFIltering DataSet Problem Pin
monageasmear3-Jul-05 22:38
monageasmear3-Jul-05 22:38 
GeneralRe: FIltering DataSet Problem Pin
WillemM4-Jul-05 0:15
WillemM4-Jul-05 0:15 
GeneralRe: FIltering DataSet Problem Pin
monageasmear4-Jul-05 0:35
monageasmear4-Jul-05 0:35 
GeneralRecordset Pin
priyakamaraj3-Jul-05 21:00
priyakamaraj3-Jul-05 21:00 
GeneralRe: Recordset Pin
Dave Kreskowiak4-Jul-05 3:49
mveDave Kreskowiak4-Jul-05 3:49 
GeneralRe: Recordset Pin
Anonymous4-Jul-05 3:54
Anonymous4-Jul-05 3:54 
GeneralRe: Recordset Pin
Dave Kreskowiak4-Jul-05 13:43
mveDave Kreskowiak4-Jul-05 13:43 
GeneralOpen the default email program Pin
IvanChang3-Jul-05 20:59
IvanChang3-Jul-05 20:59 
anyone knows the way to open the default email program with an attachment file??
Actually, i have found some code from internet. but,this code not able to attach a file to the email program. the code i found was written below.. thanks for helps..

Function openclient()
'string builder used for concatination
Dim MsgBuilder As New System.Text.StringBuilder
MsgBuilder.Append("mailto:abc@hotmail.com")
MsgBuilder.Append("&subject=this is test subject")
MsgBuilder.Append("&body=this is test body")
MsgBuilder.Append("&Attach=C:\abc.txt")
'Debug.WriteLine(MsgBuilder.ToString)
ExecuteFile(MsgBuilder.ToString)
End Function

Private Function ExecuteFile(ByVal FileName As String) As Boolean
Dim myProcess As New Process
myProcess.StartInfo.FileName = FileName
myProcess.StartInfo.UseShellExecute = True
myProcess.StartInfo.RedirectStandardOutput = False
myProcess.Start()
myProcess.Dispose()
End Function
GeneralRe: Open the default email program Pin
Dave Kreskowiak4-Jul-05 3:45
mveDave Kreskowiak4-Jul-05 3:45 
QuestionAscii ? Pin
peepys3-Jul-05 19:34
peepys3-Jul-05 19:34 
AnswerRe: Ascii ? Pin
kalyan.n@dsolusys.com3-Jul-05 21:35
kalyan.n@dsolusys.com3-Jul-05 21:35 
Generalcall center Pin
Member 20917563-Jul-05 18:48
Member 20917563-Jul-05 18:48 
GeneralRe: call center Pin
toxcct3-Jul-05 20:32
toxcct3-Jul-05 20:32 
GeneralRe: call center Pin
Dave Kreskowiak4-Jul-05 3:31
mveDave Kreskowiak4-Jul-05 3:31 
Generalrecttracker Pin
boy2123-Jul-05 16:35
boy2123-Jul-05 16:35 
GeneralRe: recttracker Pin
Christian Graus3-Jul-05 17:55
protectorChristian Graus3-Jul-05 17:55 
GeneralRe: recttracker Pin
Dave Kreskowiak4-Jul-05 3:28
mveDave Kreskowiak4-Jul-05 3:28 
QuestionHow to give a user control a opacity percent property??? Pin
Off1193-Jul-05 12:53
Off1193-Jul-05 12:53 
AnswerRe: How to give a user control a opacity percent property??? Pin
Off1194-Jul-05 6:29
Off1194-Jul-05 6:29 
GeneralRe: How to give a user control a opacity percent property??? Pin
Dave Kreskowiak4-Jul-05 13:42
mveDave Kreskowiak4-Jul-05 13:42 
GeneralRe: How to give a user control a opacity percent property??? Pin
[Marc]4-Jul-05 17:22
[Marc]4-Jul-05 17:22 
GeneralRe: How to give a user control a opacity percent property??? Pin
Dave Kreskowiak5-Jul-05 1:06
mveDave Kreskowiak5-Jul-05 1:06 
AnswerRe: How to give a user control a opacity percent property??? Pin
Off1195-Jul-05 6:23
Off1195-Jul-05 6:23 
GeneralRe: How to give a user control a opacity percent property??? Pin
[Marc]5-Jul-05 9:02
[Marc]5-Jul-05 9:02 
Generallock dextop using vb.net app Pin
paragraut3-Jul-05 9:49
paragraut3-Jul-05 9:49 

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.