2,951 Posted Topics
Re: are you trying to convert the horizontal model to horizontal ? | |
Re: you can use loop inside a sub program for the purpose. | |
Re: 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. | |
Re: are you trying to prepare the insert script for all the tables ? | |
Re: 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] | |
Re: try the following code with ADO [code] con.begintrans 'con--ADODB connection object con.execute "put your sql statement here " con.commitrans[/code] | |
Re: oracle does not support the data type BOOLEAN in sql. use some flag for true and false and process accordingly. | |
| |
Re: Timer is one of the easiest controls to code. It has the minimum properties and responds to timer event of the control. | |
Re: 1. select the month. 2. findout all the dates. 3. findout the days by passing the dates ---use WEEKDAYNAME function for the purpose. | |
Re: one of the best servering moderator . So i give you 9. | |
Re: have you created the DSN in the target system to connect to database ? | |
Re: 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 , … | |
Re: what is the table structure and what is the query that you are working on ? | |
Re: you want me to write a complete accounts package in VB 6.0 and give it to you for free ? | |
Re: Please find a related discussion [URL="http://digg.com/programming/Handling_Picture_Box_in_VB_6_0"]here[/URL]. | |
Re: 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. | |
| |
Re: 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. | |
Re: only practise can make you perfect as there is no shortcut to success. | |
Re: 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]. | |
Re: and just to explain vbcrlf----stands for---VisualBasicCarriageReturnLineFeed. even though a bit long, i hope that is quiet easy to undestand . | |
Re: what is [B]My[/B] ? is that an object ? | |
Re: even better to use any grid control. | |
Re: why not run the exe by using Scheduled Task ... | |
Re: try to use some flag setting for loading and unloading of child forms and check the same during unload of the MDI form. | |
Re: you deserve a pat on the back. so pat pat pat.......pat pat pat ....pat pat pat .... i hope that is enough | |
Re: kindly post the codde that you are working on, and the part you are faing problem in. | |
Re: that is not possible (to reverse engineer the EXE to get the source code). | |
Re: then you need to findout the time difference between the start time and end time and keep on adding them | |
Re: 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]. | |
| |
Re: You need to design your own compoent for that. | |
Re: please find the connectionstring at [url]http://www.connectionstrings.com/?carrier=oracle[/url] | |
Re: 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 . | |
Re: If you arer not happy with the free controls, try to define your own component. | |
Re: what is the problem for you ? i suggest you to better use DTPicker control instead of a calander. | |
Re: is that for interface of VB applications ? | |
Re: you need to pass the sql query dynamically at run time as per user input. | |
Re: What you want to impliment in online examination project ? | |
Re: if using ADO that can be done by using SQL queries using LIKE search. | |
Re: Wishing Happy New year to my immediate neighbours, a bit in advance though. | |
Re: Are you getting any error in your code ? that should work for you. | |
Re: you can also use Multimedia control to play audio/video files. | |
Re: since you will need to display a lot of records why not use a grid instead of number of textboes. | |
Re: 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. |
The End.