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 SkipVought 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. poeijer

    unlocking tables

    Hi, when using the crviewer i notice it probably makes some locking with certain tables i access. even if i destroy or close toe crviewer object, i still cant delete my tables. i need to quit my development environment to be able to delete the files. i closed all tables in my datasessions...
  2. poeijer

    deleting cursor when closing a form

    adding to above: the error only occurs after i activated the view object of CR. when i dont preview the report there is no problems deleting the cursor(.dbfs)
  3. poeijer

    deleting cursor when closing a form

    Hi, I create a cursor and use the 'copy to' (safety off) command to create a dbf from it, which i put someowhere on my harddrive. i connect to crystal repots and make all the connectiongs.. all work fine only next time when i open up CR and need to create the cursor again and copy to it to a...
  4. poeijer

    application slows down with multiple users

    TeknoSDS: I got a better solution for that. Just exclude the extensions .dbf, .cdx and .fpt. This way you still are protected and it doesn't affect your foxpro application. Leland123: Thanks, I am gonna test it out some more. I did find the problem it was some instruction which kinda hung up...
  5. poeijer

    application slows down with multiple users

    but it doesnt cause a lot more netwerk traffic with 2 systems.. this has to be it DOES cause :) ..
  6. poeijer

    application slows down with multiple users

    I got an application developped in foxpro 7.0 when 1 user works with the application ( opened by a shortcut from the server ) it all works quick. when a 2nd user opens the application it slows down dramatically. when the 2nd user closes the application it still stays slow, but when the 1st user...
  7. poeijer

    treeview ctrl

    Yes, you are correct. the treeview has to have the focus to see the highlighted bar... thanks.
  8. poeijer

    treeview ctrl

    i managed to use this line: oNode=.treeview.nodes.add(,1,"EM","first",0) oNode.selected=.T. it says that item is indeed selected but doesn't give the highlighted bar over it??? thanks
  9. poeijer

    treeview ctrl

    I add a couple nodes to a treeview and then i want that the first item is default selected how can i accomplish this? thanks.
  10. poeijer

    sending attachments with SMTP?

    Indeed, CDO can be seen like MAPI. it cant handle SMTP or POP connecting but uses the installed client on the PC to handle the mail routines.
  11. poeijer

    sending attachments with SMTP?

    Hi Mike, yes that is the code i used before. only there is no option in it for attachments as far as i could see.. i got that wwIPstuff to work now and i can easy send smtp with attachments. testing out if pop3 works as easy as well. i might buy it then anyways. thanks for your help!
  12. poeijer

    sending attachments with SMTP?

    Hi, well i can send emails with smtp now + attachments. 2 bad i need to pay for it................. do u know of a solution withouth payment? greatings..
  13. poeijer

    sending attachments with SMTP?

    Can anyone explain to me how i can send attachments through SMTP? i can send a normal email withouth an attachment. but i know u need to uunicode the attachment?? anyone has an example of that?? thanks in advance
  14. poeijer

    using the mswinsock activeX component

    When i do: oWinsock = CREATEOBJECT("MSWinsock.Winsock.1") oWinsock.Protocol = 0 oWinsock.RemoteHost = "smtpserver" oWinsock.RemotePort = 25 oWinsock.Connect it connects withouth a problem. and the owinsock.state is 7 but when i use the ActiveX component and do this...
  15. poeijer

    sending attachments with winsock

    hi, i can send mails with smtp but my question is how do i attach attachments to the messages? oWinsock = CREATEOBJECT("MSWinsock.Winsock.1") oWinsock.Protocol = 0 oWinsock.RemoteHost = mailserver oWinsock.RemotePort = 25 oWinsock.Connect IF oWinsock.State = sckConnected WAIT...
  16. poeijer

    retreiving email adres of the sender

    In my application i retreive the senders emailaddress by creating a reply object. replymail=omail.reply senderemail=Replymail.recipients(1).address the problem is that when someone fills in a replyadres in his outlook client, the senderemail of the reply object appears to be empty... is...
  17. poeijer

    using // in strings

    Yes, that is my current solution.. 2 bad it isnt fixed yet :( thanks anyway!.
  18. poeijer

    using // in strings

    No, because it can be a normal pathname e.g.: c:\My documents\test.doc or \\fileserver\c\documents\test.doc in the first case it puts the entire path in the listbox in the 2nd case it puts \fileserver\c\documents\test.doc in the listbox
  19. poeijer

    using // in strings

    hi, no . a network path name.
  20. poeijer

    using // in strings

    when i have a string in a textbox starting with // and i put this txtbox.value to my listbox it only takes one / instead of 2 /'s i know that sometimes // expects another value and if not found it wil correct himself orso, but how can i get it to work?? any ideas? thanks

Part and Inventory Search

Back
Top