2,383 Posted Topics

Member Avatar for showstopper2007

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

Member Avatar for Jx_Man
0
94
Member Avatar for mrjoli021

Yes, scheduling with your own program. but your program must always running.

Member Avatar for nvmobius
0
105
Member Avatar for Bonnie Thunders
Member Avatar for selfhelpebooks
Member Avatar for drummer1
Member Avatar for hapascott
Member Avatar for anshulagarwal

Post on [URL="http://www.daniweb.com/forums/forum8.html"]c++ section[/URL]... This for vb section

Member Avatar for Jx_Man
0
97
Member Avatar for rr4334

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 :)

Member Avatar for Jx_Man
0
110
Member Avatar for tyronedong
Member Avatar for AndreC
Member Avatar for gsatya

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] :)

Member Avatar for Jx_Man
0
99
Member Avatar for asihuay
Member Avatar for sadiiqmubaarak

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 …

Member Avatar for Jx_Man
0
79
Member Avatar for arayaaa

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]

Member Avatar for Jx_Man
0
86
Member Avatar for MarlaFC
Member Avatar for pardeep3dec

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.

Member Avatar for hartoksi
0
97
Member Avatar for The Dude

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

Member Avatar for Epic Tissue
0
97
Member Avatar for army88m2

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]

Member Avatar for Jx_Man
0
109
Member Avatar for itzkanaga
Member Avatar for C#Novice

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

Member Avatar for C#Novice
0
107
Member Avatar for deftones
Re: loop

use DoEvents inside the loop. Calling DoEvents in your code will handle the other events [CODE]Do ... DoEvents .... Loop[/CODE]

Member Avatar for deftones
0
96
Member Avatar for army88m2
Member Avatar for abu taher

You mean you want to find data where Fieldname = condition ? And condition is user input?

Member Avatar for electrosoul456
0
231
Member Avatar for vibhashin
Member Avatar for Charnell
Member Avatar for MakeMoneyOnline
0
29
Member Avatar for peekamalts
Member Avatar for sureshaci
Member Avatar for hepatit_h
Member Avatar for prossie
Member Avatar for MakeMoneyOnline
0
28
Member Avatar for XsavioR
Member Avatar for karthik1

it's the pseudo code : [code]Select customernames from customer where customernames like Form1.combobox.text[/code]

Member Avatar for Pgmer
0
85
Member Avatar for Renukavani
Member Avatar for Gaurav arora

On Form Properties, Set FormBorderStyle = None. It will make your form haven't border and not able to move.

Member Avatar for Jx_Man
0
91
Member Avatar for ruchika beddy

yup, icon can be extract from dll or exe file. Just confirm from exe or dll file u want to extract icons. :)

Member Avatar for dmf1978
0
154
Member Avatar for mirainc

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

Member Avatar for manas91
0
123
Member Avatar for ypdev

[code]dim string1 as string string1 = gridview1.rows(row#).cells(cell#).text.tostring[/code]

Member Avatar for ypdev
0
901
Member Avatar for jholland1964
Member Avatar for vinay114
Member Avatar for valeriemenezes
Member Avatar for kavithabhaskar
Member Avatar for Shihabudheen
Member Avatar for Jx_Man
0
65
Member Avatar for veledrom

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 …

Member Avatar for Jx_Man
0
85
Member Avatar for veledrom
Member Avatar for mrjoli021
Member Avatar for iamnoangel26

which version u got problem? like debasisdas said you can connect vb with any version of access.

Member Avatar for Jx_Man
0
80
Member Avatar for Maulth
Member Avatar for MakeMoneyOnline
0
187
Member Avatar for veledrom

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]

Member Avatar for Jx_Man
0
141
Member Avatar for Time Indicator

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 …

Member Avatar for suley04
0
132
Member Avatar for reniies

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 …

Member Avatar for Jx_Man
0
96
Member Avatar for ITech

The End.