Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~5K People Reached
Favorite Forums

8 Posted Topics

Member Avatar for ponkhiraj

Hi, In my program, i have created 10 richtextbox dynamically. in all richtextbox i gather text form various websites. All is going fine. now what i want is- i need to print all/selected richtextbox text to printer and also saves it to Word file as following formate: * Richtextbox1 (or …

Member Avatar for tinstaafl
0
661
Member Avatar for Rachna0309

Dim mail As New MailMessage() Dim SmtpServer As New SmtpClient SmtpServer.Credentials = New Net.NetworkCredential("[email protected]", "senders_mail_address_password") SmtpServer.Port = 587 SmtpServer.Host = "smtp.gmail.com" SmtpServer.EnableSsl = True SmtpServer.EnableSsl = True mail.To.Add("[email protected]") mail.From = New MailAddress("[email protected]") mail.Subject = "Mail_Subject_Here" mail.Body = TextBox1.Text ' or text what you want to write or get from SmtpServer.Send(mail)

Member Avatar for troxin
0
1K
Member Avatar for mrbungle
Member Avatar for amy 86

Try to transfer your checkedlistbox item to Textbox, then you may insert it to Access or others. Hope you got the Idea.

Member Avatar for amy 86
0
402
Member Avatar for ponkhiraj

Hi, Everybody... Can anyone knows what is the maximun character limitation of a Label in Vb.net? Basically i need to scroll a label with timer as Marquee. The label text is coming from a richtextbox. The richtextbox contains more than billions character. I replaced all vbLf(LineFeed) of richtextbox with a …

Member Avatar for tinstaafl
0
204
Member Avatar for ponkhiraj

Hello, In my program, I have added a SplitContainer with Fill on Form. Where Panel1 keeps all Button and Panel2 keeps other objects, I'm trying to code on SplitContainer_MouseMove event. But it does not work when i'm Panel1, If i move mouse pointer to panel2 and go again in panel1 …

Member Avatar for ponkhiraj
0
608
Member Avatar for ponkhiraj

Hi, Everyone, i'm here with another problem, I'm working with a windows form where i am adding Panels programmaticaly. With same time when its busy with adding Panels to form I want to work, like- **Loading another form or do another command in another form**. plz help, here is my …

Member Avatar for Reverend Jim
0
1K
Member Avatar for ponkhiraj

Hello Developers, I'm here for your kind help, I am making a program where these codes i wrote: for i as integer = 0 to 5 If TextBox4.Text.Contains("1") Then TextBox4.Text = TextBox4.Text.Replace("1", "_n_") End If If TextBox4.Text.Contains("2") Then TextBox4.Text = TextBox4.Text.Replace("2", "_o_") End If If TextBox4.Text.Contains("3") Then TextBox4.Text = TextBox4.Text.Replace("3", …

Member Avatar for Reverend Jim
0
575

The End.