Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
~10.8K People Reached
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)
Favorite Forums
Member Avatar for reeky_15

I'm a newbie in vb. My first project is a grading system for a certain school. In my login form, there's a [B]Forgot Password button[/B]. In the Forgot Password form, the user is asked to answer a secret question that he filled up upon registration, and if the answer is …

Member Avatar for MarkGia
0
3K
Member Avatar for Fa3hed

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 …

Member Avatar for pocohontus
0
1K
Member Avatar for Fa3hed

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] …

Member Avatar for adam_k
0
133
Member Avatar for Fa3hed

[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) = "!" …

Member Avatar for Fa3hed
0
405
Member Avatar for bigzos

I have a login form coded as : [CODE] Imports System.Data.OleDb Public Class Form2 Dim ctr As Integer Private Sub Ok_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim con As New OleDbConnection("Provider=Microsoft.jet.oledb.4.0;data source=C:/Users/Space Era/Documents/User.mdb") Dim cmd As OleDbCommand = New OleDbCommand("SELECT * FROM Users WHERE userid = …

Member Avatar for bigzos
0
3K
Member Avatar for masterjiraya

I have 2 forms right now Form1 and Form2 the default setting start up is Form2. Inside Form 2 there was a button that will release the Form1 button using Form1.Show(). I have now the problem. What I want to do now is to close the Form2 without closing the …

Member Avatar for Mitja Bonca
0
197
Member Avatar for rosstafarian

Hi guys, Im starting a new project this week for my computing course and to be honest - i didnt like my last one as it had many forms which i thought was quite tacky. So i had a thought, how can i use for example, 1 or 2 forms …

Member Avatar for rosstafarian
0
146
Member Avatar for y2kshane
Member Avatar for vr2viv

Dear All, I am new to VB2010 and writing a MDI child form to open another form as dialogbox, then pass a value back to the MDI child form, the value is successfully passed back to the MDI child form but it can't be shown on a text box, my …

Member Avatar for vishalrane
0
1K
Member Avatar for Fa3hed

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 …

0
69
Member Avatar for Fa3hed

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]

0
84
Member Avatar for sandeepparekh9

Function to Convert Dataset to Excel. It will export all the table of the given dataset to the given excel. Example: [CODE]ExportDatasetToExcel(dsFinal, "d:\\my.xls") [/CODE] where dsFinal is my Datase and second parameter is the excel file location. Make sure the excel file exist.

Member Avatar for Fa3hed
0
1K