2,951 Posted Topics

Member Avatar for bornok15

What is that 4 ? You want to print 4 copies at once or Four labels on a single page ?

Member Avatar for hawisme000
0
94
Member Avatar for kehar
Member Avatar for diyanajaafar
Member Avatar for cometburn
0
106
Member Avatar for davidebrownzvi

This happens if the project file is copied from a CD where all the files are read only. After copying the files to system from CD check to ensure that the files are not read only (uncheck the read only check box).

Member Avatar for debasisdas
0
83
Member Avatar for Mikecc2691
Member Avatar for shahriar2403
Member Avatar for SPereira

What are you trying to do using tab key ? Try setting the KeyPreview property of the form to TRUE.

Member Avatar for choudhuryshouvi
0
552
Member Avatar for prachi malpure
Member Avatar for Jx_Man
0
228
Member Avatar for dinilkarun

That is available already in VB 6.0. You only need to change the style property of the listbox form Standard (default) to Checked.

Member Avatar for Mbt925
0
77
Member Avatar for Estella

Try using looping through all the controls on the form that have font property.

Member Avatar for Jx_Man
1
173
Member Avatar for reuifdjk

Please findout the details [URL="http://www.connectionstrings.com/?carrier=oracle"]here[/URL]

Member Avatar for reuifdjk
0
427
Member Avatar for nirvana999

You need to check if F1 has already been pressed which pressing F2 key. It is always recommended to avoid using F1 and F10 key.

Member Avatar for debasisdas
0
73
Member Avatar for dogma

in sql *plus type HOST in the command prompt type exp username/password@databasename then just follow the instructions as prompted

Member Avatar for debasisdas
0
235
Member Avatar for shahriar2403

Have you tried refreshing the recordset ? Are you commiting after every new insert / update ?

Member Avatar for cometburn
0
480
Member Avatar for jm50328
Member Avatar for jm50328
0
72
Member Avatar for kinyuadave
Member Avatar for eparse

You need to handle the Key Down event . Set the KeyPreview property of the form to TRUE.

Member Avatar for debasisdas
0
51
Member Avatar for SolTec
Member Avatar for masakii

What exactly is your project about ? You are using VB only or any third party component ?

Member Avatar for tcom4
0
71
Member Avatar for moren

If you want the connection string then find it [URL="http://www.connectionstrings.com"]here[/URL].

Member Avatar for debasisdas
0
64
Member Avatar for shahriar2403

Please do not start duplicate threads for the same question. Check your other thread for answer. I have already replied to that.

Member Avatar for debasisdas
0
103
Member Avatar for jubal4285

try using this sample code. [code=vb] Private Sub CHKCOLOR_Click(Index As Integer) If CHKCOLOR(Index) Then List1.AddItem CHKCOLOR(Index).Caption Else For L = 0 To (List1.ListCount - 1) If List1.List(L) = CHKCOLOR(Index).Caption Then List1.RemoveItem L End If Next End If End Sub [/code] The code uses control array for the check boxes.

Member Avatar for debasisdas
0
83
Member Avatar for zawpai
Member Avatar for priyala
Member Avatar for bornok15
Member Avatar for shahriar2403
Member Avatar for priyala

you need fetch the data from recordset and assign the same to the corresponding text boxes. You need to use index or field name on the recordset.

Member Avatar for choudhuryshouvi
0
263
Member Avatar for bugmenot

The problem you are facing is not because of this code . You might have specified something else in other parts of the code.

Member Avatar for bugmenot
0
283
Member Avatar for CzechRock3
Member Avatar for CzechRock3
0
105
Member Avatar for priyala

Please refer your other thread for reply. I have already answered your second question there.

Member Avatar for Jx_Man
0
78
Member Avatar for edsat
Member Avatar for Jx_Man
0
153
Member Avatar for NazishKanwal
Member Avatar for talablink

I don't know whether i can post name of other sites here or not. You can easily find all that by investing some quality time by web searching.

Member Avatar for choudhuryshouvi
0
75
Member Avatar for abhiiiii5

How can you develop a project only in sql server 2000 without using any front end tool.

Member Avatar for Ramy Mahrous
0
102
Member Avatar for dogma

Try find out the number of active connections . Try to use [B]v$session[/B]

Member Avatar for dogma
0
139
Member Avatar for aminpr
Member Avatar for aminpr
0
199
Member Avatar for evios

From where you want to capture the score ? Are you using any database ? BTW the above code is a procedure not a function. A function must have a return type and must return a value.

Member Avatar for debasisdas
0
96
Member Avatar for vikas1111

Simply try to use this sample code . This is the best option. [code=vb] con.begin trans con.execute "update table_name set field_name= text1.text" con.committrrans [/code]

Member Avatar for debasisdas
0
174
Member Avatar for urmip

Then better change the row width. It is always better to use some reporting tool than controls for reports.

Member Avatar for debasisdas
0
66
Member Avatar for omya
Member Avatar for debasisdas
0
68
Member Avatar for SolTec
Member Avatar for VB_help
0
143
Member Avatar for evios
Member Avatar for Mr.Wobbles

You can try to make a copy of the original MDB file and that can be used as a backup of actual data. The syntaxes of oracle or mysql will not work here.

Member Avatar for jbennet
0
102
Member Avatar for priyankaagrawal

To run .NET application framework is compulsory. You can easily install the framework using windows live update.

Member Avatar for debasisdas
0
81
Member Avatar for vbobba

If yo want to match for two conditions then you have to specify that in the sql query.

Member Avatar for debasisdas
0
67
Member Avatar for mahibha

I think this is a duplicate thread , and your question has already been replied in your other thread.

Member Avatar for debasisdas
0
180
Member Avatar for bashir matovu

if you want to save the data then no need to open the record set at all. Try using this sample code [code=vb] 'con is the adodb connection object con.BeginTrans con.execute "your insert or update statement here." con.CommitTrans [/code]

Member Avatar for debasisdas
0
101
Member Avatar for vickyx
Member Avatar for delete_at
Member Avatar for debasisdas
0
99
Member Avatar for mahibha
Member Avatar for debasisdas
0
213

The End.