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 bkrike 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: poeijer
  • Content: Threads
  • Order by date
  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

    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...
  3. 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...
  4. 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.
  5. 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
  6. 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...
  7. 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...
  8. 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...
  9. 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
  10. poeijer

    refox and windows 95

    we get the error: invallid/damaged vp7r.dll (or vp7t.dll) when trying to run a refoxed foxpro (7.0) application. is there anything known about any problems with windows 95?
  11. poeijer

    returning array of strings

    I like to declare a function that splits up a string of 64 chars, to 8 substrings of each 8 chars. how do i declare such a function that it returns a pointer to my CString[8] and i can read the values from CString[1]..CString[8] ? thanks
  12. poeijer

    foxpro and groupwise

    Hi, I acces outlook with the following code. oOutlook = CreateObject("groupwise.application") oNameSpace = oOutlook.getNameSpace("MAPI") oInbox = oNameSpace.GetDefaultFolder(6) and then i can get the messages with: for each oMail oInbox.Items from where do i need to...
  13. poeijer

    ole error 0x80080005

    We use the option: createobject("word.application") this has always worked. but now the netwerk is changed. windows nt client 4.0, office 97 and foxpro application developper under 7.0 what can be wrong? could this be a right issue?
  14. poeijer

    calling groupwise from foxpro

    i can call ms outlook through outlook.application how can i call groupwise? i tried groupwise.application but then i receive an error: class definition GROUPWISE.APPLICATION is not found any suggestions?
  15. poeijer

    error with automation code vfp -> word

    idea is to copy the content of poTemplateDoc to poWerkDoc. using copy/paste. i use therefor the code below. ------------------------------------- poTemplateDoc.content.range().copy poWerkDoc.content.range().paste ------------------------------------- when executing the above code I get the...
  16. poeijer

    open with dialog box

    Is there any way to display the open with dialog box?? i found some on the internet how to do it with VB but i need it in vfp ofcourse :) any ideas? thanks.
  17. poeijer

    How can i open a file using vfp

    Hi, i would like to open different kind of files with their linked programmes through vfp. e.g. when a filename selected (name.doc) and i click on a button it should start up ms word and open the file. same with .jpg or .txt files. just the programme that needs to be opened is the programme...
  18. poeijer

    listing of a directory

    Hi, i am looking for some kinda object/class/component that shows me all files matching a certain criteria in a directory... and then the same way as windows explorer does. so with the nice word/excell icons... i basic need a nice windows explorer component.. anyone know where to get those...
  19. poeijer

    retreiving senders email

    Hi all, how can i retreive the senders email? ooulook = createobject("application.outlook") oNameSpace = oOutlook.getNameSpace("MAPI") oInbox = oNameSpace.GetDefaultFolder(6) oinbox.items[nr].xxxx what name to fill in the xxxx to get the email? i cant find any. i know off...
  20. poeijer

    Different ways of handling emails.

    Hi All, for each oMail in oInbox.Items with oMail tempsender=omail.sendername tempsubject=omail.subject temptime=omail.receivedtime if temptime > date_email_last_time etc........ the code above retrieves all mailitems received since a certain time. the problem that i have now is...

Part and Inventory Search

Back
Top