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 Wanet Telecoms Ltd 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. koukouroukou

    Parse file name out of path

    strongm is right the best solution for file manipulation is file system object.
  2. koukouroukou

    Error previewing report

    StevenK you may be right but i did a lot of tests for previewing , exporting etc etc and my suggestion is full copy of this folder.Now i have managed to have a full client application with all the options i want and with no problems.
  3. koukouroukou

    Error previewing report

    You realy need to copy the hole Crystal folder to clients winnt for later ploblems (beliave me) also copy to c:\winnt\system32 the rest p2sodbc.dll p2ssql.dll ntwdblib.dll pg32conv.dll sscsdk80.dll with both P2 dlls into system32 you will not have to change DB driver/provider of the report...
  4. koukouroukou

    MSFlexgrid

    LETS SAY YOU WANT TO WRITE TO THE 5 CELL OF THE SECOND ROW msflexgrid1.ROW = 2 msflexgrid1.CELL = 5 msflexgrid1.text = "SOMETING"
  5. koukouroukou

    Printing Problem

    thanks man
  6. koukouroukou

    Printing Problem

    How can i print to a spesific part of the paper??
  7. koukouroukou

    CDR Duration

    no i mean how can i get the login and the log out times of the agent.
  8. koukouroukou

    CDR help please!!!

    I ve managed to make a program that logs the CDR sys parameters from COM1 all the records seems to be ok but i dont know what option is for the agent login and logout and i really need to monitor this operation. Thanks on advance
  9. koukouroukou

    CDR Duration

    i have made a similar program but i dont seem to get login and log out results.Do you know how can i get them?
  10. koukouroukou

    Loop through Excel and delete rows that don't contain text

    or use this and manipulate excel like a recordset Dim cnnDB As ADODB.Connection Dim rst As ADODB.Recordset Set cnnDB = New ADODB.Connection Set rst = New ADODB.Recordset With cnnDB .Provider = "Microsoft.Jet.OLEDB.4.0" .Properties("Extended...
  11. koukouroukou

    Best method to send mail?

    here is the code i used in one of my aplication: I read every 3 minutes the unread messages of a mailbox and them i mask them as unread Dim con As ADODB.Connection Dim rst As ADODB.Recordset Dim objSess, objInbox, objMsgColl, objMsgFilter As Object Dim objMess As Message Private Sub...
  12. koukouroukou

    Best method to send mail?

    Yes thats true but if you do not have your outlook open then everithing its ok
  13. koukouroukou

    Best method to send mail?

    in a project of mine i used CDO with exchange to send mass mail and record the results in an SQL server and it worked fine.
  14. koukouroukou

    DTS Help please

    i know how to use the dts wizard. I want to dynamicly create the package from code . Any Ideas
  15. koukouroukou

    DTS Help please

    I am using SQL 7 and it does not have this option
  16. koukouroukou

    DTS Help please

    i want dynamicly to create the DTS if its possible cause the excel i use is allways different.So i want to get the general idea about DTS and vb
  17. koukouroukou

    DTS Help please

    How can i transfer a Excel sheet to sql with DTS from Vb code and also create the nessesary table(if possible). Till now i use sqldmo to create the table but i was not able to create and execute the DTS.
  18. koukouroukou

    help with instance Urgent Please

    Lets say tha my Form1 calls : dim withevents cl1 as cl set cl1 = new cl and do all the stuff that i want . What if i want to call from another application(or Dll) the cl and raise events; ( i want my form1 to react on the raise event of the second instance of the class) In other words is...
  19. koukouroukou

    who is calling the DLL

    how can i use this. I have never raised an event before, Can you give me an example? Thanks on advance
  20. koukouroukou

    Automated email through Exchange 5.5

    here is the code i used in one of my aplication: I read every 3 minutes the unread messages of a mailbox and them i mask them as unread Dim con As ADODB.Connection Dim rst As ADODB.Recordset Dim objSess, objInbox, objMsgColl, objMsgFilter As Object Dim objMess As Message Private Sub...

Part and Inventory Search

Back
Top