2,951 Posted Topics

Member Avatar for locsin
Member Avatar for debasisdas
0
120
Member Avatar for olaitanmails

if looking for the connection string please find it [URL="http://www.connectionstrings.com/?carrier=sybase"]here[/URL]. and then use ADO in VB for the purpose.

Member Avatar for debasisdas
0
80
Member Avatar for rucci

ADODB is based on the OLEDB. This is a different architecture from ODBC. ODBC is a different layer itself, it is neither part of front end nor backend.

Member Avatar for debasisdas
0
93
Member Avatar for dnk
Member Avatar for mathbalaji

try to use this [code=vb] Dim objOutlook As Object Dim objOutlookMsg As Object Set objOutlook = CreateObject("Outlook.Application") Set objOutlookMsg = objOutlook.CreateItem(0) With objOutlookMsg .To = "myfriend@gmail.com " .Cc = "hisfriend@yahoo.com" .Subject = "Hello Friends (one more time)..." .Body = "This is the body of message" .HTMLBody = "HTML version of …

Member Avatar for cometburn
0
159
Member Avatar for kv79

You can refer some good books for the purpose or can find a lot by inesting some quality time in web-seaching.

Member Avatar for choudhuryshouvi
0
195
Member Avatar for bashir matovu
Member Avatar for choudhuryshouvi
0
163
Member Avatar for prajwala

You need to store the username,pasword and along with that store the secret question and its answer. If the user forgets the password display the question and prompt for the answer. If it matches with stored answer then provide the password or send a mail to his account.

Member Avatar for debasisdas
0
70
Member Avatar for rajuhyd
Member Avatar for evios

You can also assign individual keys for each of the positions using the above logic.

Member Avatar for debasisdas
0
99
Member Avatar for bashir matovu
Member Avatar for wolverine_ramir

To find the difference yo simply need to substract. Kindly post what you have tried to solve this.

Member Avatar for debasisdas
0
77
Member Avatar for kzdev
Member Avatar for markx_018
Member Avatar for elanch

Try to use this sample code To use this sample, please following steps Create a new project in VB6 Pull down the Project menu and choose Components . Select the checkbox next to Microsoft ChartControl 6.0(OLEDB), Click OK. Add a combobox,one Mschart control and one check box tothe existing form. …

Member Avatar for debasisdas
0
122
Member Avatar for Sroxx
Member Avatar for Mushy-pea
Member Avatar for maui_mallard
0
238
Member Avatar for shinchan

try to use this sample code [CODE=vb]Public Function DistanceBetween(ByVal X1 As Single, ByVal Y1 As Single, ByVal X2 As Single, ByVal Y2 As Single) As Single ' Calculate the distance between two points, given their X/Y coordinates. ' The short version... DistanceBetween = Sqr((Abs(X2 - X1) ^ 2) + (Abs(Y2 …

Member Avatar for debasisdas
0
241
Member Avatar for lerkei
Member Avatar for jubal4285
Member Avatar for Madaxe

You start working on th eproject and post here if you face any problem. We will definately help you.

Member Avatar for debasisdas
0
111
Member Avatar for richme86
Member Avatar for debasisdas
0
42
Member Avatar for jaasaria

It is always better to store the picture in a LOB field in database after converting the file into a byte stream . It ensures that no data is lost . So you don't have to bother about location of all the files.

Member Avatar for jaasaria
0
90
Member Avatar for rajeshkhanna_in
Member Avatar for rajeshkhanna_in
0
66
Member Avatar for Ankita B

To connect TOAD to oracle you simply need to pass the username ,password and the database name. IF connecting to any other server ,you need to midify the entries in the TNSNAMES.ORA file.

Member Avatar for Jx_Man
0
127
Member Avatar for keynan_toht17

This part of the forum is not the right place for all that. Please visit Geek's Lounge for all that.

Member Avatar for Jx_Man
0
67
Member Avatar for jaasaria
Member Avatar for SolTec
Member Avatar for Ranx
0
105
Member Avatar for sbv

AND means all the conditon must satisfy. OR means any of the condition should satisfy.

Member Avatar for debasisdas
0
96
Member Avatar for mark0420
Member Avatar for technogeek_42
0
187
Member Avatar for Ankita B
Re: Toad

First of all Create is a DDL. So commit is not required for that. Check to ensure that you created the table in that schema.

Member Avatar for Jx_Man
0
154
Member Avatar for technogeek_42
Re: Vb6

what do you mean by self running ? If you are trying the program run automatically then create a windows service using .net

Member Avatar for technogeek_42
0
238
Member Avatar for ahmed elweshahy

You can't convert directly. But you can upload data of access into oracle. You can export the data of access into a .CSV file and from oralce use the SQL LOADER to load the same data to oracle table.

Member Avatar for kevs1607
0
78
Member Avatar for ukinaru
Member Avatar for rajeshkhanna_in

SQL is part of backend database not of VB itself. It always executes in database .Vb has no sql syntax of its own. Even the SQL is not compiled by VB.

Member Avatar for debasisdas
0
63
Member Avatar for shibukr
Member Avatar for debasisdas
0
55
Member Avatar for rhinocort23
Member Avatar for debasisdas
0
93
Member Avatar for Eric132

Self learning is the best form of learning anything and once you know that you will never forget that.

Member Avatar for debasisdas
0
1K
Member Avatar for dragonheart
Member Avatar for dragonheart
0
274
Member Avatar for Xooku
Member Avatar for mosses
Member Avatar for hawisme000
Member Avatar for priyala

You call the second form in the timer event of timer control .Timer accepts interval in miliseconds . i.e. for 1 second u need to pass 1000.

Member Avatar for Jx_Man
0
86
Member Avatar for mkarasu
Member Avatar for debasisdas
0
81
Member Avatar for sk8ndestroy14
Member Avatar for rajeshkhanna_in

[QUOTE=rajeshkhanna_in;515403]Hi all, Is there a way in which a TSR program could be made in vb6.0. Something like If an EXE of a software written in vb6.0 is run, then this TSR program should load and remain their for as long as it wishes to (the program cannot be stopped …

Member Avatar for rajeshkhanna_in
0
364
Member Avatar for ashishprem

if you are inserting value from VB , you can restrict the entry of single quites by restricting chr(39) in the key press event. But if you dont want to do that replace ' by '' i.e. single quote by 2 single quites . Then there won't be any problem.

Member Avatar for jireh
0
117
Member Avatar for newto_vb

instead of creating 10 check boxes create an control array and in a loop check the value of all and then finally frame the sql command dynamically. and pass the sql to report.

Member Avatar for technogeek_42
0
74
Member Avatar for r3su3l0
Member Avatar for freden

You need to store the employee id in a global variable declared in the module so that it stores the value across the form. You easily fetch the record using the same id in form 2.

Member Avatar for freden
0
85

The End.