- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 2
- Posts with Downvotes
- 1
- Downvoting Members
- 2
- Interests
- Programming (vb6,vb.net,c#,c++,asp,asp.net,php,html) Design (Photoshop, dream waver,multimedia builder)…
- PC Specs
- Programming (vb6,vb.net,c#,c++,asp,asp.net,php,html)
12 Posted Topics
Re: hello here is a project all do you want in it by me | |
this is code which opens new window link in same programe [CODE] Private Sub WebBrowser1_NewWindow(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles WebBrowser1.NewWindow ' This will be triggered only when link tries to open in new window. ' That means active element in web document will always be a … | |
Hello Everybody prop lame i am making a access sql helper and for writing the insert this code [CODE] Dim i As Integer TextBox6.Text &= "Insert Into " & ComboBox2.Text & " (" For i = 0 To ListBox1.Items.Count - 1 TextBox6.Text &= ListBox1.Items.Item(i).ToString() & "," Next TextBox6.Text &= ")"[/CODE] … | |
[B]Text cASES in Vb.NET[/B] [LIST=1] [*][B]Sentence Case [/B][I](This is vb.net code)[/I] [CODE]Public Function SentenceCase(ByVal stringToConvert As String) As String Dim newStringBuilder As New StringBuilder newStringBuilder.Append(stringToConvert.ToLower) newStringBuilder.Chars(0) = newStringBuilder.Chars(0).ToString.ToUpper For letterCount As Integer = 0 To newStringBuilder.Length - 1 If newStringBuilder.Chars(letterCount) = "." Or newStringBuilder.Chars(letterCount) = "?" Or newStringBuilder.Chars(letterCount) = "!" … | |
Re: thread will help you [URL="http://www.daniweb.com/software-development/vbnet/threads/369800"]http://www.daniweb.com/software-development/vbnet/threads/369800[/URL] | |
Re: here is a picture can help you | |
Re: hi you can use panels put your controls in it and when u need it use [CODE]Panel1.Visible = True[/CODE] or [CODE]Panel1.Visible = False[/CODE] | |
Re: in actually i tried this way [CODE] On Error Resume Next For Each i As Button In Panel1.Controls Panel2.Controls.Add(i) Next For Each i As TextBox In Panel1.Controls Panel2.Controls.Add(i) Next For Each i As Label In Panel1.Controls Panel2.Controls.Add(i) Next[/CODE] it works very well | |
Re: you can use that code [CODE]lblNewCode.Text = mdiForm1.txtStaffCode.Text[/CODE] | |
General Codes [INDENT]this code which go back [CODE]WebBrowser1.GoBack() 'Go back[/CODE] this code which go forward [CODE]WebBrowser1.GoForward() 'Go Forward[/CODE] this code which stops web browser [CODE]WebBrowser1.Stop() 'stop loading current page[/CODE] this code which refresh current web browser [CODE]WebBrowser1.Refresh() 'refresh current web browser[/CODE] this code which go to home page for current … | |
This code will show find dialog in web browser here is the code [CODE] Dim data As DataObject = Clipboard.GetDataObject 'get current clipboard Me.WebBrowser1.Document.ExecCommand("Copy", False, Nothing) WebBrowser1.Select() SendKeys.SendWait("^f") Clipboard.SetDataObject(data) 'load previous clipboard back [/CODE] | |
|
The End.