2,383 Posted Topics
Re: [code=vb] Private Sub Text3_KeyPress(KeyAscii As Integer) On Error GoTo msg If KeyAscii = 13 Then ' working if enter pressed Picture1.Picture = LoadPicture("C:\" & Text3.Text) End If Exit Sub msg: MsgBox Err.Description End Sub [/code] | |
Re: Yes, scheduling with your own program. but your program must always running. | |
Re: Hi...Welcome back to Daniweb Friend :) | |
Re: Post on [URL="http://www.daniweb.com/forums/forum8.html"]c++ section[/URL]... This for vb section | |
Re: Hi... Please post your question on Current section ([URL="http://www.daniweb.com/forums/forum113.html"]Shell Scripting Section[/URL]) But welcome to Daniweb anyway :) | |
Re: First : [URL="http://www.google.co.id/search?hl=id&q=class+module+in+vb6&btnG=Telusuri&meta="]Check this [/URL] Second : [URL="http://www.daniweb.com/forums/thread67978.html"]http://www.daniweb.com/forums/thread67978.html[/URL] -- [URL="http://www.rsj-services.com/advancedvb/Downloads/avb0003.pdf"]http://www.rsj-services.com/advancedvb/Downloads/avb0003.pdf[/URL] :) | |
| |
Re: First, make a page to show data from database using crystal report wizard. Second : make a form with crystal report viewer , text box, button and etc inside it. Add this code to show report : This an example, you can modified it as u needed. [code]Dim DS As … | |
Re: post in [URL="http://www.daniweb.com/forums/forum4.html"]vb 6 section[/URL], this for vb.net only :) [URL="http://www.daniweb.com/forums/forum4.html"]http://www.daniweb.com/forums/forum4.html[/URL] | |
Re: Use "Like" on your query statement. | |
Re: Function and Procedure is a Method... Function and Procedure is much the same. Function must return a value, procedure doesn't need to return value. Module uses for declaration place (method and variable), with module you can access every method and variable from any form. | |
Re: RIGHT HAND : You clicked 167 times in 30 seconds. Your caffeine level for today is: Extremely High - Excessive Energy, Spastic LEFT HAND : You clicked 137 times in 30 seconds. Your caffeine level for today is: Very High - Productive Worker, Jittery ![]() | |
Re: Hi... You post much thread with same question. Your question already answered in other thread by other member with looping example. Check This : [URL="http://www.daniweb.com/forums/thread136096.html"]http://www.daniweb.com/forums/thread136096.html[/URL] | |
Re: Specify more the question please... | |
Re: try this : [code=C#]private void RB1_CheckedChanged(object sender, System.EventArgs e) { if (RB1.Checked == true) { C1.Enabled = true; C2.Enabled = true; C3.Enabled = true; C4.Enabled = true; C5.Enabled = true; C6.Enabled = false; } } private void RB2_CheckedChanged(object sender, System.EventArgs e) { if (RB2.Checked == true) { C1.Enabled = false; … | |
Re: use DoEvents inside the loop. Calling DoEvents in your code will handle the other events [CODE]Do ... DoEvents .... Loop[/CODE] | |
Re: You mean you want to find data where Fieldname = condition ? And condition is user input? | |
Re: using database?what a database? | |
| |
Re: it's the pseudo code : [code]Select customernames from customer where customernames like Form1.combobox.text[/code] | |
Re: On Form Properties, Set FormBorderStyle = None. It will make your form haven't border and not able to move. | |
Re: yup, icon can be extract from dll or exe file. Just confirm from exe or dll file u want to extract icons. :) | |
Re: [code=vb]Private Sub DDL_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComboBox1.SelectedIndexChanged If ComboBox1.SelectedItem = "EEC" Then EECGridview.Visible = True MITGridview.Visible = False Else EECGridview.Visible = False MITGridview.Visible = True End If End Sub[/code] | |
Re: [code]dim string1 as string string1 = gridview1.rows(row#).cells(cell#).text.tostring[/code] | |
Re: Clear combobox and load data on combobox after saving. | |
Re: Vb.net have control for pop up menu. example was given by selvaganapathy | |
Re: i don't know how to focusing it, but here my binding code (automatically focused on first row) : [code=vb]Private Sub ViewData() Set rs = New ADODB.Recordset rs.CursorType = adOpenDynamic rs.LockType = adLockOptimistic rs.Open "select * from Login ", Conn Set DataGrid1.DataSource = rs DataGrid1.Columns(0).Width = 2000 DataGrid1.Columns(1).Width = 2000 DataGrid1.AllowAddNew … | |
| |
Re: which version u got problem? like debasisdas said you can connect vb with any version of access. | |
Re: Call Decript function before check. [icode]......WHERE Decript(psw)=' " & text1.text & " '[/icode] Or You can encript inputed pasw before check [icode]......WHERE psw=' " & Encript(text1.text) & " '[/icode] | |
Re: use this following code, this code will handle string input (include special character). if u type a numeric in textbox it will type but if u type string,char or anything else except numeric it will not type in text box. [CODE=VB] Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As … | |
Re: 1. Open your project in Visual Studio 2003 2. click File - New - Project - Setup and Deployment Projects 3. Choose Setup Project 4. Choose Add to solution (radio button) under location path 5. Click Ok to start 5. Right click on Application Folder - Add - Project Output … | |
Re: post your code, its more easy to understand |
The End.