2,383 Posted Topics
Re: visit this following sites : - [URL="http://www.vbtutor.net/vbtutor.html"]http://www.vbtutor.net/vbtutor.html[/URL] - [URL="http://www.developerfusion.co.uk/vb/"]http://www.developerfusion.co.uk/vb/[/URL] - [URL="http://www.profsr.com/vb/vbintro.htm"]http://www.profsr.com/vb/vbintro.htm[/URL] - [URL="http://www.devdos.com/vb/"]http://www.devdos.com/vb/[/URL] | |
Re: try this : [code]Label1.Text = Microsoft.Visualbasic.Mid("November"3,3)[/code] | |
Re: try this code : [code=vb]Private Sub Form_Load() Dim RS As ADODB.Recordset Dim Conn As ADODB.Connection Dim Comm As ADODB.Command Dim str As String Set Conn = New ADODB.Connection Conn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source = D:\Only Me\Authors.mdb" Conn.Open Set Comm = New ADODB.Command Set Comm.ActiveConnection = Conn Comm.CommandText = "SELECT Au_ID FROM … | |
Re: Search on Google :) [URL="http://www.codeguru.com/csharp/.net/net_general/patterns/article.php/c12805/"]Visit this link[/URL] | |
Re: use Like [B]operan[/B] better than [B]=[/B] operan | |
Re: [QUOTE]ermm.. if use the combo box, how we can link the date to database.. mean 1st combo for day, 2nd for month and 3rd for year rite?? so, how to combine this 3 combo in database.. what the source code, the sql..[/QUOTE] why don't use datetimepicker.. | |
Re: everything is possible. In vb 6 you can direct access value from another form of any control (example is done by veena) but in .net you will find encapsulated form. | |
Re: see this code : add this code to Module : [code=vb.net]Module Module1 Public Sub AutoComplete(ByVal cbo As ComboBox, ByVal e As System.Windows.Forms.KeyEventArgs) Dim iIndex As Integer Dim sActual As String Dim sFound As String Dim bMatchFound As Boolean If Not cbo.Text = "" Then 'if the text is not blank … | |
Re: # To add a Date Time Picker control, on the Toolbox, click the More Controls button # Scroll down in the list of controls, click Microsoft Date and Time Picker 6.0 (SP4), and click the form. [URL="http://www.functionx.com/vbaccess/Lesson11.htm"]see this tutorial[/URL] | |
Re: what u mean 'adding a photo to a form'? just showing into picture box or using dialog window to find and showing it? | |
Re: explain more clearly | |
Re: Hi Victor...Welcome to Daniweb Friend :) | |
Re: veena answered it. but you also can do with selected item : [code=vb.net]If Combo1.SelectedItem = "What" Then Textbox1.Enable = False Else Textbox1.Enable = True End If[/code] | |
Re: Actually i never take a class, learn vb by my self. Search on google for a tutorials or e-books and try it. if get something problem then posting it in this forum. Happy coding friend :) | |
Re: show the effort and many people will help you :) | |
Re: [code=vb]With lstReorder .AddItem (ITEM_NUMBER.Text) .AddItem (ITEM_DESCRIPTION_1.Text) End With[/code] | |
Re: [code]Private Sub txtPrice_Change() if val(txtQty.text)>val(txtPrice.text) then lblval.caption= txtPrice.text end if End Sub[/code] [QUOTE]I want to put the value of txtPrice to lblVal if the value in txtQty>txtPrice. what shall be my code?[/QUOTE] | |
Re: - Make MDI Parent Set On Form properties (form that u want it be a parent) IsMdiContainer = True - Make MDI Child Add this Code when you call new form as a child, ex : [code=vb.net]Private Sub MenuSubNew_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuSubNew.Click Dim NewMDIChild … | |
Re: post in [URL="http://www.daniweb.com/forums/forum58.html"]vb.net section[/URL], this for vb 4/5/6 | |
Re: hmm... i was saw this problem in another thread but with different problem. same task. | |
Re: well great, i want to answer but you have done it. | |
Re: convert it to month with number as a key. | |
Re: -Exe files already in your folder project. YourProjectFolder\Bin\ExeFileName.exe | |
Re: [QUOTE]if val(txtQty) >= 0 then lblVal.caption = val(txtPrice.text) Else lblVal.caption = val(txtPrice.text) * val(txtQty.text) end if[/QUOTE] hmm i m confused friend... what exactly the condition. 1. if Qty >= 0, display price on label val * what Qty is? quantity?? 2. Else lblVal.caption = val(txtPrice.text) * val(txtQty.text) * this code … | |
Re: this using Flex grid MSFlexGrid1.AddItem (Text1.Text) add as much u need. | |
Re: so, how far you do this??show us your effort friend, cause We only give homework help to those who show effort. Use Randomize() to get random number. | |
Re: Please post your thread on current section. This Post for [URL="http://www.daniweb.com/forums/forum58.html"]vb.net section.[/URL] | |
Re: explain more clearly please... what the exactly problem? | |
Re: i was modified your code. your messagebox parameter is not completed, that why errors coming out. [code]Private Sub xExitButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles xExitButton.Click Dim button As DialogResult button = MessageBox.Show _ ("Are you sure you want to exit this application?", _ "Message", MessageBoxButtons.YesNo, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button1) … | |
Re: you can declare x and j in outside procedure or event but the assignment must be in procedure or event. ex : [code]Dim i,j as integer Private Sub Command1_Click() i = 10 j = 10 Print x + y End Sub[/code] | |
Re: Visual basic.net learn for Visual basic.net step by step book | |
Re: why you do that. vb already have toolbar control. add toolbar on component. Project->Component-> check on [B]Microsoft Common Control 6.0[/B] -> Apply it -> OK you can see toolbar control on your toolbox |
The End.