2,951 Posted Topics
Re: 5. Not necessary .Yes 6. The latest the best . | |
Re: you can download the documentation if you want from the parent site. | |
Re: you can simply copy the original file to a new location ,rename it to the latest date and save as backup | |
Re: the logic is pretty simple. kindly post what you have tried. | |
| |
Re: please find a related discussion [URL="http://bytes.com/forum/thread783723.html"]here[/URL]. | |
Re: this error arises if your recordset returns some null values in any of the rows of the recordset. you need to use cn1.Text = iif(isnull(rc1.Fields(6)),0,rc1.Fields(6)) that should work for you | |
Re: you can easily find a lot of them by investing some quality time in websearching. | |
Re: this topic has already been discussed here several times. run search here in the forum with appropriate key word for such discussions with sme sample code. | |
Re: are you executing COMMIT after insert operation ? | |
Re: what exacctly you are trying to do with the scanner. once connected the scanner writes data directly to the control (like text box) having focus. | |
Re: try using this [code=vb] con.Begintrans 'con is ADODB connection ojbect con.execute "your insert / update statment here' con.committrans [/code] | |
Re: for all your issues ,you need ot create indexes in column that is frequently bsing using in where clause of queries. | |
Re: from your post i am not sure what you are trying to do ,please post your question clearly. | |
Re: i dont think it is compulsary to have office in the PC to run VB 6.0 . You mught be facing the problems because of some other issues. | |
Re: what you have posted is not enough to provide you with any solutions. Please pass more details. | |
Re: you can yse the shell function for this. | |
Re: what you want to access of another system ? are you trying to access files ? | |
Re: You can do this ata database level using SQL queries. if the employee number is a number use emp_number=number if the employee number is a string use emp_number like '%string%' | |
Re: are you trying to change the column caption on the grid ? | |
Re: if you do not have the source code and only having the OCX ,you can't get the source code from the component. | |
Re: vb suppoerts all version. i think the problem is you are not having required patch files /updates in your system. | |
Re: please do not start duplicate threads for the same question. | |
Re: please pass more information about your problem. | |
Re: the following code is in VB 6.0 conert to .net as desired. [code=vb] Private Sub Cmdcount_Click() List2.Clear T2 = Trim(Text2.Text) Open Trim(Text1.Text) For Input As #1 Do Until EOF(1) Line Input #1, n LNWORDCOUNT = 0 LNCOUNT = LNCOUNT + 1 T1 = n CT = 1 Do While CT … | |
Re: you can't add scrollbars to scroll the form itself. | |
Re: If you have cruystal report installed on your system can you that form project----> reference. | |
Re: you need to use ADOX library also can use DAO for the purpose. | |
Re: how the grid is being populated ? | |
Re: are you looking for the connection string ? | |
Re: Applications connects to the database through the drivers. ODBC, it is a differnt layer .ODBC is neither part of the frontend nor the backend. | |
Re: so what is the problem. 1.connect to databse . 2.create a data report 3.drag the field to report 4.format as desired and set some properties 5.show the report. | |
Re: Which reporting tool you are using data report or crystal report ? | |
Re: Why are you still using 9i .You can go for 10g with all the new features. | |
| |
Re: kindly post the part of the code that is throwing the error. | |
Re: crystal is not a part of VB6 .0 . You need to install that separately. you can only call that from VB. datareport is a part of vb 6.0 itself. | |
Re: what happens if you insert NULL to the field ? is there any constraints on the database table fields. | |
Re: copy the DLL or OCX you are using to develop the application to target systems and register those with windows using REGSVR32 command. | |
Re: 1.assign two flags for the files. 2.generate a random number. 3.display one picture if the number is even or the other if that is odd. | |
Re: you need to use some third party component for that. | |
Re: you need to create the database at designtime separately not at runtime. | |
Re: IF you want to print from vb then generate the report in vb using datareport or crystal report. | |
Re: please explain your problem. i am not used to opening any zip i come across in net. | |
Re: i think you need to contact some sys admin for the purpose . | |
Re: you can connect any version to VB. how you are trying to connect. | |
Re: try to use MID fuction for the purpose. make that dynamic. | |
Re: is the connect getting successful ? | |
|
The End.