Click here to Skip to main content
16,004,991 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionHow to get the handle of a dialog in forms? Pin
rushing20-Feb-05 22:37
rushing20-Feb-05 22:37 
AnswerRe: How to get the handle of a dialog in forms? Pin
Dave Kreskowiak21-Feb-05 15:31
mveDave Kreskowiak21-Feb-05 15:31 
GeneralArithmetic error caused overflow Pin
J-Tex20-Feb-05 18:08
sussJ-Tex20-Feb-05 18:08 
GeneralPrint preview does not match actual printed page - need help Pin
DrGerry20-Feb-05 16:57
DrGerry20-Feb-05 16:57 
GeneralTextbox functionality, scrolling,buffers,color Pin
Member 156746220-Feb-05 16:55
Member 156746220-Feb-05 16:55 
GeneralRe: Textbox functionality, scrolling,buffers,color Pin
Christian Graus21-Feb-05 13:19
protectorChristian Graus21-Feb-05 13:19 
GeneralMSHTML Pin
Jack Clift20-Feb-05 14:41
Jack Clift20-Feb-05 14:41 
Questioncan someone help me with this program Pin
Delo20-Feb-05 10:04
Delo20-Feb-05 10:04 
Option Strict Off
Imports mshtml
Public Class Form1
Inherits System.Windows.Forms.Form
Public Function toHex(ByVal number As Integer) As String
Dim hexbyte As String
hexbyte = Hex(number).ToString()
If hexbyte.Length = 1 Then
hexbyte = "0" & hexbyte
End If
Return (hexbyte)
End Function

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)
Dim url As Object = "about:blank"
WebBrowser.Navigate2(url)
Application.DoEvents()
(CType(WebBrowser.Document, HTMLDocument)).designMode="on"
End Sub


Private Sub btnviewHTML_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
tbHTML.Text = _
(CType(WebBrowser.Document, HTMLDocument)).vody.innerHTML
End Sub

Private Sub btnPreview_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs)
(CType(WebBrowser.Document, HTMLDocument)).vody.innerHTML=tbHTML.text
End Sub

AnswerRe: can someone help me with this program Pin
Christian Graus20-Feb-05 10:21
protectorChristian Graus20-Feb-05 10:21 
GeneralRe: can someone help me with this program Pin
Delo20-Feb-05 13:43
Delo20-Feb-05 13:43 
GeneralRe: can someone help me with this program Pin
Christian Graus20-Feb-05 13:56
protectorChristian Graus20-Feb-05 13:56 
GeneralRe: can someone help me with this program Pin
Delo20-Feb-05 14:01
Delo20-Feb-05 14:01 
GeneralRe: can someone help me with this program Pin
Christian Graus20-Feb-05 14:05
protectorChristian Graus20-Feb-05 14:05 
GeneralRe: can someone help me with this program Pin
Delo20-Feb-05 14:22
Delo20-Feb-05 14:22 
GeneralRe: can someone help me with this program Pin
Christian Graus20-Feb-05 14:26
protectorChristian Graus20-Feb-05 14:26 
GeneralRe: can someone help me with this program Pin
Delo20-Feb-05 14:33
Delo20-Feb-05 14:33 
GeneralRe: can someone help me with this program Pin
Christian Graus20-Feb-05 14:37
protectorChristian Graus20-Feb-05 14:37 
GeneralRe: can someone help me with this program Pin
Delo20-Feb-05 14:48
Delo20-Feb-05 14:48 
GeneralRe: can someone help me with this program Pin
Christian Graus20-Feb-05 15:00
protectorChristian Graus20-Feb-05 15:00 
GeneralRe: can someone help me with this program Pin
Delo20-Feb-05 16:12
Delo20-Feb-05 16:12 
GeneralRe: can someone help me with this program Pin
Delo20-Feb-05 16:29
Delo20-Feb-05 16:29 
GeneralRe: can someone help me with this program Pin
Christian Graus21-Feb-05 10:57
protectorChristian Graus21-Feb-05 10:57 
GeneralArithmetic error caused an overflow Pin
J-Tex20-Feb-05 7:29
sussJ-Tex20-Feb-05 7:29 
GeneralRe: Arithmetic error caused an overflow Pin
Christian Graus20-Feb-05 10:26
protectorChristian Graus20-Feb-05 10:26 
Generalpls help me on this... Pin
20-Feb-05 6:27
suss20-Feb-05 6:27 

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.