Click here to Skip to main content
15,913,487 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Questionhow i can gives the resume suport in my downloader in VB.NET Pin
goharnazir23-May-06 9:25
goharnazir23-May-06 9:25 
QuestionEmbed an Application in VB.NET Web form [modified] Pin
kgoodlad23-May-06 9:00
kgoodlad23-May-06 9:00 
QuestionHow create a DBF db and set size of a field in VB6 [modified] Pin
Dormarth23-May-06 8:27
Dormarth23-May-06 8:27 
QuestionTo update and add data in the dataset from the datagrid Pin
SwatiPathania23-May-06 8:11
SwatiPathania23-May-06 8:11 
AnswerRe: To update and add data in the dataset from the datagrid Pin
MohammadAmiry23-May-06 12:34
MohammadAmiry23-May-06 12:34 
AnswerRe: To update and add data in the dataset from the datagrid Pin
Vaja Dinesh V.23-May-06 20:45
Vaja Dinesh V.23-May-06 20:45 
QuestionProblem lining up data to columns Pin
Quecumber25623-May-06 8:00
Quecumber25623-May-06 8:00 
QuestionDefault Web page Pin
gr0leau23-May-06 7:06
gr0leau23-May-06 7:06 
I am writing a web browser that will only show one page, im trying to lock down as many functions as possible. right now i have it so i have to hit go to bring me to the page, but i want to get rid of that and have the page open when the program does.

Also i wanted it to auto fill out a name and password feild for me. If any one can help id appreciate it thanks. Here is my code so far...



Public Class form1
Inherits System.Windows.Forms.Form

#Region " Windows Form Designer generated code "

Public Sub New()
MyBase.New()

'This call is required by the Windows Form Designer.
InitializeComponent()

'Add any initialization after the InitializeComponent() call

End Sub

'Form overrides dispose to clean up the component list.
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing Then
If Not (components Is Nothing) Then
components.Dispose()
End If
End If
MyBase.Dispose(disposing)
End Sub

'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer

'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
Friend WithEvents AxWebBrowser1 As AxSHDocVw.AxWebBrowser
Friend WithEvents txtUrl As System.Windows.Forms.TextBox
Friend WithEvents btnGo As System.Windows.Forms.Button
<system.diagnostics.debuggerstepthrough()> Private Sub InitializeComponent()
Dim resources As System.Resources.ResourceManager = New System.Resources.ResourceManager(GetType(form1))
Me.AxWebBrowser1 = New AxSHDocVw.AxWebBrowser
Me.txtUrl = New System.Windows.Forms.TextBox
Me.btnGo = New System.Windows.Forms.Button
CType(Me.AxWebBrowser1, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
'AxWebBrowser1
'
Me.AxWebBrowser1.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.AxWebBrowser1.Enabled = True
Me.AxWebBrowser1.Location = New System.Drawing.Point(0, 40)
Me.AxWebBrowser1.OcxState = CType(resources.GetObject("AxWebBrowser1.OcxState"), System.Windows.Forms.AxHost.State)
Me.AxWebBrowser1.Size = New System.Drawing.Size(1284, 961)
Me.AxWebBrowser1.TabIndex = 0
'
'txtUrl
'
Me.txtUrl.Location = New System.Drawing.Point(8, 8)
Me.txtUrl.Name = "txtUrl"
Me.txtUrl.Size = New System.Drawing.Size(336, 20)
Me.txtUrl.TabIndex = 1
Me.txtUrl.Text = "sage03/fsdatacollection/login.asp"
'
'btnGo
'
Me.btnGo.Location = New System.Drawing.Point(352, 8)
Me.btnGo.Name = "btnGo"
Me.btnGo.Size = New System.Drawing.Size(40, 24)
Me.btnGo.TabIndex = 2
Me.btnGo.Text = "Go"
'
'form1
'
Me.AcceptButton = Me.btnGo
Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
Me.ClientSize = New System.Drawing.Size(1284, 1002)
Me.ControlBox = False
Me.Controls.Add(Me.btnGo)
Me.Controls.Add(Me.txtUrl)
Me.Controls.Add(Me.AxWebBrowser1)
Me.Cursor = System.Windows.Forms.Cursors.Arrow
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Name = "form1"
Me.Text = "Sytline Log-In"
Me.WindowState = System.Windows.Forms.FormWindowState.Maximized
CType(Me.AxWebBrowser1, System.ComponentModel.ISupportInitialize).EndInit()
Me.ResumeLayout(False)

End Sub

#End Region

Private Sub btnGo_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnGo.Click
AxWebBrowser1.Navigate(txtUrl.Text)
End Sub

Private Sub AxWebBrowser1_Enter(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AxWebBrowser1.Enter
AxWebBrowser1.LocationURL("sage03 / fsdatacollection / login.aps")


End Sub
End Class


Timothy Groleau
TJGroleau@charter.net
JokeNo no limits ^^ Pin
bxb23-May-06 6:16
bxb23-May-06 6:16 
GeneralRe: No no limits ^^ Pin
MohammadAmiry23-May-06 6:39
MohammadAmiry23-May-06 6:39 
QuestionEfficient array save/load Pin
MohammadAmiry23-May-06 6:14
MohammadAmiry23-May-06 6:14 
AnswerI found the answer! Pin
MohammadAmiry23-May-06 6:45
MohammadAmiry23-May-06 6:45 
QuestionVB.NET question Pin
Blue Bird23-May-06 5:07
Blue Bird23-May-06 5:07 
AnswerRe: VB.NET question Pin
Wooster200623-May-06 5:16
Wooster200623-May-06 5:16 
GeneralRe: VB.NET question Pin
Joshua Quick23-May-06 12:41
Joshua Quick23-May-06 12:41 
AnswerRe: VB.NET question [modified] Pin
j-on23-May-06 5:21
j-on23-May-06 5:21 
GeneralRe: VB.NET question [modified] Pin
Joshua Quick23-May-06 12:50
Joshua Quick23-May-06 12:50 
AnswerRe: VB.NET question Pin
Joshua Quick23-May-06 13:06
Joshua Quick23-May-06 13:06 
AnswerRe: VB.NET question Pin
Dave Doknjas23-May-06 14:25
Dave Doknjas23-May-06 14:25 
Questionvb.net job vb.net job Pin
KRISHNENDU MUKHERJEE23-May-06 4:32
KRISHNENDU MUKHERJEE23-May-06 4:32 
QuestionHiding controls in design view Pin
Joshua Boyle23-May-06 4:00
Joshua Boyle23-May-06 4:00 
AnswerRe: Hiding controls in design view Pin
Wooster200623-May-06 5:18
Wooster200623-May-06 5:18 
GeneralRe: Hiding controls in design view Pin
Joshua Boyle23-May-06 5:37
Joshua Boyle23-May-06 5:37 
GeneralRe: Hiding controls in design view Pin
MohammadAmiry23-May-06 6:21
MohammadAmiry23-May-06 6:21 
GeneralRe: Hiding controls in design view Pin
thesqler23-May-06 9:43
thesqler23-May-06 9:43 

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.