2,951 Posted Topics

Member Avatar for jsimula
Member Avatar for arvin2006
Member Avatar for zerugaze

1) FRM-----form file contains all the componenets and code there of. 2) BAS-----module file contains objects with global access 3) FRX-----form binary file contains images of FRM file. 4) OCX----windows components. 5) CLS----class file contains the classes defined if any. 6) VBP-----visual basic project. hope that helped you.

Member Avatar for debasisdas
0
123
Member Avatar for dami06
Member Avatar for debasisdas
0
60
Member Avatar for dev_kc
Re: vb

better use ADODB library for the purpose. try the sample code below [code=vb] con.begintrans 'con-----adodb connection object con.execute "your sql insert statment here" con.committrans [/code]

Member Avatar for debasisdas
0
80
Member Avatar for dev_kc

try the following code with ADO [code] con.begintrans 'con--ADODB connection object con.execute "put your sql statement here " con.commitrans[/code]

Member Avatar for debasisdas
0
72
Member Avatar for creativehacker

oracle does not support the data type BOOLEAN in sql. use some flag for true and false and process accordingly.

Member Avatar for debasisdas
0
76
Member Avatar for chevyww1936

select substr(ss_id, -6) from id_table this should work for you

Member Avatar for debasisdas
0
184
Member Avatar for mmmmmmmmmmmm
Member Avatar for ITech

Timer is one of the easiest controls to code. It has the minimum properties and responds to timer event of the control.

Member Avatar for marakulyo
0
113
Member Avatar for devilz

1. select the month. 2. findout all the dates. 3. findout the days by passing the dates ---use WEEKDAYNAME function for the purpose.

Member Avatar for devilz
0
549
Member Avatar for Doctor Inferno
Member Avatar for ahihihi...
0
130
Member Avatar for abu taher
Member Avatar for abu taher
0
114
Member Avatar for jaasaria

Try use this sample code [code=vb] Private Sub tv1_NodeClick(ByVal Node As MSComctlLib.Node) LV1.ListItems.Clear rs.Open "select * from EMP", con, adOpenDynamic, adLockOptimistic Dim li1 As ListItem Set li1 = LV1.ListItems.Add() If Not rs.EOF Then If IsNull(rs(0)) Then li1.Text = "" Else li1.Text = rs(0) End If If IsNull(rs(1)) Then LV1.ListItems(1).ListSubItems.Add , …

Member Avatar for chanthung
0
189
Member Avatar for bluebird

what is the table structure and what is the query that you are working on ?

Member Avatar for gurshan
0
103
Member Avatar for attari19

you want me to write a complete accounts package in VB 6.0 and give it to you for free ?

Member Avatar for jireh
0
55
Member Avatar for cham1829

Please find a related discussion [URL="http://digg.com/programming/Handling_Picture_Box_in_VB_6_0"]here[/URL].

Member Avatar for jyotsna sahu2
0
63
Member Avatar for firoz.raj

what do you mean by [B]only distinct row [/B]. i believe that means all the fields in a row are same. [B]distinct[/B] will definately filter that out.

Member Avatar for firoz.raj
0
104
Member Avatar for aligatorfurr
Member Avatar for ryan311
Member Avatar for Matt3144
0
125
Member Avatar for ryan311

you can use recordset for the purpose. open a recordset from temp table and insert to temp2 table. later if you want to delete the records from temp then go for it.

Member Avatar for choudhuryshouvi
0
86
Member Avatar for giovany
Re: vb?

only practise can make you perfect as there is no shortcut to success.

Member Avatar for giovany
0
87
Member Avatar for Hairul

1.i can't understand the first question. 2.if you are looking for the connection string find it [URL="http://connectionstrings.com/"]here[/URL].

Member Avatar for Hairul
0
87
Member Avatar for kehar

and just to explain vbcrlf----stands for---VisualBasicCarriageReturnLineFeed. even though a bit long, i hope that is quiet easy to undestand .

Member Avatar for debasisdas
0
92
Member Avatar for veledrom
Member Avatar for firoz.raj
Member Avatar for veledrom
Member Avatar for RahulV

try to use some flag setting for loading and unloading of child forms and check the same during unload of the MDI form.

Member Avatar for jireh
0
236
Member Avatar for Ancient Dragon

you deserve a pat on the back. so pat pat pat.......pat pat pat ....pat pat pat .... i hope that is enough

Member Avatar for debasisdas
0
34
Member Avatar for Board22
Member Avatar for Board22
0
143
Member Avatar for mmmark
Member Avatar for Emerogork

then you need to findout the time difference between the start time and end time and keep on adding them

Member Avatar for Emerogork
0
103
Member Avatar for markx_018

why you need to connect Vb to another GUI tool , not a database. I hope yo know SQLyog is a GUI not a database like msaccess. if you are looking for the connection string to mysql ,find it [URL="http://connectionstrings.com/mysql"]here[/URL].

Member Avatar for debasisdas
0
196
Member Avatar for Rrajal
Member Avatar for sganandhsg
Member Avatar for abhi_elementx

please find the connectionstring at [url]http://www.connectionstrings.com/?carrier=oracle[/url]

Member Avatar for gambling
0
175
Member Avatar for Kainan54

What do you mean by [B]compiler for VB6 [/B]? If you want the VisualStudio, that is not supported any more by MS so VB6.0 is not available for purchasing anymore .

Member Avatar for winrawr
0
100
Member Avatar for jeffrey16

If you arer not happy with the free controls, try to define your own component.

Member Avatar for johnkeartson
0
230
Member Avatar for nagatron

what is the problem for you ? i suggest you to better use DTPicker control instead of a calander.

Member Avatar for debasisdas
0
73
Member Avatar for yuleball
Member Avatar for balamurali07
Member Avatar for rajuprasad82
Member Avatar for Comatose
0
130
Member Avatar for brothertse2008
Member Avatar for ryan311
0
122
Member Avatar for sneekula

Wishing Happy New year to my immediate neighbours, a bit in advance though.

Member Avatar for debasisdas
0
75
Member Avatar for Jenniferlinn
Member Avatar for debasisdas
0
121
Member Avatar for ryan311
Member Avatar for ryan311
0
79
Member Avatar for sumeth
Member Avatar for smile4evr
Member Avatar for yoyoaz77

since you will need to display a lot of records why not use a grid instead of number of textboes.

Member Avatar for yoyoaz77
0
117
Member Avatar for kathir_krr

YOU DO NOT NEED ANY EXTRA CODE. when you read the barcode using the device ,it directly inserts the code into any comntrol having focus on the form. Next you just need to process the code as per your requirment.

Member Avatar for debasisdas
0
53

The End.