Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. polash

    Decimal Data Type Conversion

    Paul, Thank you very much
  2. polash

    Decimal Data Type Conversion

    I want to convert 23.43535353 to 23.44 like this in VB6. Can any body help me in this regards. Thanks in advance. Polash
  3. polash

    searching minimum and maximum for series of consecutive numbers

    NGOLEM, OK, to solve your problem if the number series is as like 1,2,3,6,7,8 then you should first seperate each value through different program for comma or other delimeted. We can do it easily. You also said about non cosecutive numbers. I think it can be solved easily. At the first of...
  4. polash

    searching minimum and maximum for series of consecutive numbers

    I think you know VB5/6. I solved your problem with VB. May there are some problem within this program. Because I solve it within a very short time. At first Place a command button in a VB form and copy the following program into it's click event. ''''''''''''''''''''''''''''''''''''''' Dim...
  5. polash

    Working with VB 6.0 and access 2000.

    You have a database name db1. A table Category(categorycode,CategoryName)in db1 also. Public cn As New ADODB.Connection 'For connection Public Sub dbconnect() cn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Persist Security Info=false;Data Source=" & App.Path & "\db1.mdb" End Sub...
  6. polash

    OpenDatabase(something)/open recordset and Data1.DatabaseName

    Without using Data control you should use the First way. The first onr is faster than Data Control. So when you handle large database the first one is much more preferable. Thank You
  7. polash

    Saving Data to Access DB from MSHFlexGrid

    You wants for MsHflexgrid. But I do it with MsFlexGrid. It may be helpful to you. rs.open "TableName" for i=1 to msgrid.rows rs.addnew rs!id=msgrid.texmatrix(i,0) rs!name=msgrid.texmatrix(i,1) rs!address=msgrid.texmatrix(i,2) rs.update next rs.close I think you get the help
  8. polash

    NEW ADO CONNECTION

    after creating file dsn you should use ADODC. then try to connect with that dsn through adodc properties. If connection eshtalished properly then you get the string in a text box of the connection. Copy it and place it after cn.open. I hope you get the solution.
  9. polash

    Database Search Problem...

    you hve written the code below at one stage : rsRec.Open FindString, "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\\idcnt2\db$\movies.mdb", adOpenStatic, adLockReadOnly, adCmdText here yo read adlockreadonly. change it and try again. another thing is that you can use...
  10. polash

    which grid control?

    I use for this purpose ms flexgrid control. Though it have not any option for writing some thing but it can be possible by writing some code. which is not available now with me.if you want from me you should wait some days.
  11. polash

    Populating a FlexGrid

    if your problem is not solved yet then mail me at mamunal@yahoo.com. Because I have some code to write data in flexgird but not to small(free of cost)
  12. polash

    How to access Oracle7 and Oracle8 data from VB5 or VB6

    You should Create a DSN from control panel of ODBC. Then you call it from vb5 with odbc direct method from dao/rdo. In vb6 you can use Ado control also and using the same DSN. you can connect it.
  13. polash

    Moving database

    You can backup Option to make a Back up that Database. you will find it at All Task of that data base. When you want to use it in your office you make the proper name of that backup file. Then you take to your office and use the Restore option of that Backup file.

Part and Inventory Search

Back
Top