hi, i created a Windows CE Device Application, i used webbrowser control and try to deploy the project. But an error message "Error 1 Connect to device failed. Device Connectivity Component" occured. Can anybody guide me. Thank you.
King
hi, i created a Windows CE Device Application, i used webbrowser control and try to deploy the project. But an error message "Error 1 Connect to device failed. Device Connectivity Component" occured. Can anybody guide me. Thank you.
King
Hi, i have developed net browser in vb.net, using webbrowser control. My problem is, when i click on go button for navigating the url, if there is no internet connection is available, or server is not reponding, the webbrowser will show the default page of Internet Explorer that is page not found. i want to use my own page instead of this default Internet Explorer page,how can i do this??? thx in advance....
King
Hi, i m developing a text editor in vb.net. i m using webbrowser control for text editing. All i want is when user press Crtl+S during writing the text it write letter 's' in text editing area. How can i avoid this ???? Thx in advance i look in KeyPreviewEvent of webbrowser, but like vb i didn't see any property to replace the incoming keycode (e.keycode is readonly) with zero or nothing to prevent writing the letter 's'
King
hi. i m shahid, software engineer working digitalbook inc. i m developing a web browser. i m using webbrowser control. all i need is wen a page contains errors my browser displays an error messagebox while internet explorer just display 'Error on page' in status bar. i don't wana see that error messagebox. how can i do this?? thx in advance. [ one more thing errors are of javascript]
King
thx. i got your point. Now i m facing another problem in RTB. When i use a image in RTB and try to resize it, the resolution of the image destroyed. Can you suggest anything for solving this problem. I m using DHTMLEdit instead of RTB just becuase of image resolution problem. If you have any solution plz tell me thx man...
King
Hi I m developing an internet explore. i m using webbrowser control for navigating the web sites. I m facing problems for blocking the popups windows... Can anybody tell me how to block the popup windows when using webbrowser control in vb.net. Thx in advance
King
thx for reply me. Can u tell me how i can do the same thing in richtext box control that is if the user writes 20 lines then how can i forces him to further write on the next page. plz reply me..... n thx in advance
King
hi, i m developing a text editor. I m using Dhtml edit control rather than richtext box control. My problem is, i wana limit the number of lines in dhtmal edit control. that is i want that a user can enter only 20 lines in dhtml edit control. and after than he has to go on the other page for writing further. so is it possible to limit the number of lines in dhtml edit control. Thx in advance...
King
i m using Smtp for sending mail. I m getting body text from an html editor. This editor uses webbrowser control. Problem is this, when i put an image on the webbrowser control and send it to a mailing address it don't show the pic but all the test is ok. here's the code i use. Dim MailObj As Net.Mail.MailMessage = New Net.Mail.MailMessage() MailObj.To.Add("sampleemailaddress@exampledomain.com") MailObj.From = New Net.Mail.MailAddress("myemailaddress@somedomain.com", "King") mailObj.Priority = Net.Mail.MailPriority.Normal MailObj.Subject = "This is test mail" mailObj.Body = WebBrowser1.DocumentText Dim smtpcli As Net.Mail.SmtpClient = New Net.Mail.SmtpClient("smtp.gmail.com", 587) smtpcli.EnableSsl = True smtpcli.DeliveryMethod = Net.Mail.SmtpDeliveryMethod.Network smtpcli.Credentials = New Net.NetworkCredential("someemailaddress@gmail.com", "password") Try smtpcli.Send(MailObj) MsgBox("Email successfully delivered.") Catch ex As Exception MsgBox(ex.ToString()) End Try Thx in advance for any help.....
King
Thx 4 ur reply. i m building a html editor in vb.net. 2 do so i m using webbrowser control. all i want, when user uses this software, he can insert a background image to document. i have done this like Dim openDlg As New OpenFileDialog openDlg.Filter = "BMP Image|*.bmp|GIF Image|*.gif|JPG Image|*.jpg" If openDlg.ShowDialog() = DialogResult.OK Then Dim Tempstr = openDlg.FileName Dim fileName As String = "" For Each ch As Char In Tempstr If ch = "\" Then ch = "/" End If fileName += ch Next Tempstr = "" webbrowser1.DocumentText = webbrowser1.DocumentText.Replace("King
Hi, i m building a html editor, all i want is how to insert a background image. I have done it by replacing the tag with but i wana somthing more professional... plz help me...
King
Hi, i m building a html editor, all i want is how to insert a background image. I have done it by replacing the tag with but i wana somthing more professional... plz help me...
King