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 strongm 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: *

  • Users: patil
  • Order by date
  1. patil

    Playing sounds???????

    you can use the multimedia control to play the required file. for more info check in MSDN it has some examples.
  2. patil

    modules

    A module is essentially used for reusability of the code. also you can use a class module to implement object oriented programming. you can add a module(standard/class) by right clicking on the project->add in the project explorer or by clicking on the arrow adjacent to ADD FORM button on...
  3. patil

    can it be done

    VB can be used as a fromt end and connected to DB2 but i dont know whether you can recieve files.
  4. patil

    VB & ACCESS How to create a report based on Form Input

    as far as i understand your problem your concern is with building the SQL depending on whether the user checks some of the boxes. you can use something like the code below. mySQL = "select * from journal_status" if chkmonth.value then mySQL = mySQL & " where month = " &...
  5. patil

    Deelting records in a dB

    you can either change the SQL to "select * from ..." and then open the recordset and execute the delete method of the recordset object or you can directly use dbsNorthwind.execute MySQL check the appropriate syntax. it will delete all the required records from the database unless you...
  6. patil

    Error Msg: "You do not have the appropriate liscence..."

    do the machines on which you face problems have registered/ licenced versions of the activex controls that you are using. this is the typical reason for error 429. you can check which control is giving you the error by trying to insert the components on a blank form on the comps that give...
  7. patil

    ADO addnew cancelupdate problem

    could you post the relevant portion of code with you are facing this problem. i guess it could be because of some recordset update event.
  8. patil

    TrueDBgrid

    you have to explicitly update the database. truedbgrid doesnt do it automatically. if you are using a recordset to populate values into the grid then invoke the update method of the recordset from the afterupdate method of truegrid.
  9. patil

    Deelting records in a dB

    to connect to a remote database on a server you can use the ADODB object. to use this you have to add the Microsoft Activex Data object to the references. for the connection you can specify a connection string to connect to any remote database using approproate JET/ODBC driver. as for the...
  10. patil

    Simple code question

    you need to invoke the show method of the data report. an example would be datareport1.show where datareport1 is the name of the data report.

Part and Inventory Search

Back
Top