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 Westi 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. georg59

    How To Import From ADT,ADI, ADM Tables

    thank you Olaf, for this valueable tipp. I will have a try on this... I've seen the odbc driver at www.sybase.com Georg Nickel Germany
  2. georg59

    How To Import From ADT,ADI, ADM Tables

    hello to all data specialists, I have to import some data from ADT,ADI,ADM files. It seems to be the advantage proprietary dataformat. Has anybody an idea how to import this in foxpro tables in an easy way? thank you for any answer... Georg Nickel Germany
  3. georg59

    How to extract binary data from general field

    Hello Griff, thanks a lot but this code does what you said, it read the prefix. The Code in FAQ184-5314 does this also in a good way. But my problem is, that i have to truncate the code behind the data. Foxpro adds a lot of meta information behind the original data. This is what i must...
  4. georg59

    How to extract binary data from general field

    Hello Borislav, thank you for your tip. I know that general fields have many problems. This is the reason why I have to extract the data from the existing tables. My problem is, that hundreds of files are stored in this way and I have to extract this now to save this existing data basis for...
  5. georg59

    How to extract binary data from general field

    If you store data in a general field vfp adds some data at the end of the file content. Does anybody have an idea how to get rid of this? I have to extract some binary data from a table with a general field containing binary data from a cad program. The reason is, that general field content is...
  6. georg59

    Printing PDFs and TIFs in VFP-Reports as Picture

    Thanks robsuttonjr, I think I have to reduce the functionality only to TIFs. After some tests this works if the TIF-files are in the right format. Why PDFs still don't work keeps a mystery for me... Georg Nickel Germany
  7. georg59

    Printing PDFs and TIFs in VFP-Reports as Picture

    I have a table (named docouments) containing an object row (named file). in the objekt row i have to store different filetypes such as word, excel, jpg and others... Then i have a report containing a picture. As picture data source i use the field documents.file. This works great for many...
  8. georg59

    How can foxpro retrieve the path to "my files"-folder

    Thanks for this solution. It works great! Georg Nickel Software Development Germany
  9. georg59

    How can foxpro retrieve the path to "my files"-folder

    I have the problem to save an export file to the my-files-folder that is default by system to the current user. Does someone know a neat solution? Georg Nickel Software Development Germany
  10. georg59

    How to store active control

    Thank You Rick, [thumbsup2] this is what I was looking for. It works very fine. Sometimes the fox is more convenient we expected. Georg Nickel Software Development Germany
  11. georg59

    How to store active control

    Hello to all, I like to write some code to refresh a grid after moving the cursor. I have a form with some textboxes and a grid that shows all records of the table. Also I have a toolbar with buttons for SKIP -1 and SKIP 1. After a SKIP I like to move the record pointer at the correct position...
  12. georg59

    Application.ActiveProject don't work in EXE

    Hello Mike, I spent three ours for that problem and couldn't understand. -- I also had this idea to do it with AGETFILEVERSION, but I thought it would be a better way not to access to the file. But it seems there's no other way. Thank's a lot for your quick answer, now i know what to do. That...
  13. georg59

    Application.ActiveProject don't work in EXE

    i like to show the version of my applicaton in a info-box. In the init event of the form i have: thisform.lblAppVersion.Caption = Application.ActiveProject.VersionProduct() This works very well. But after I build an exe-file and start it, I get an error: "Can't evaluate object&quot...
  14. georg59

    Synchronizing Outlook, Etc.?

    Sorry, it's early in the mornig, the last bracket ist set wrong and some other mistakes... it must be: IF TYPE(odefaultFolder.Items.Find("BalanceDue").Value)="N" Georg Nickel Software Development Germany
  15. georg59

    Synchronizing Outlook, Etc.?

    Hello Philip, I do some import functions from outlook, too at this time. So I think, I understand your problems. Foxpro can't access to user defined fields until they have a value assigned! So you must check first if the type is correct. Somethink like IF...
  16. georg59

    I am hard coding in Visual FoxPro 6

    itc1 I think your problem isn't really a foxpro problem. You have to decide whether you set up your email as plain text, rtf, or html. In html you can use html tags like <b> and </b>. So we need more information how you output the data into the email and which format it is. hope this is a small...
  17. georg59

    Import custom fields from outlook: type mismatch

    Thanks all for your good answers. Now I'm able to solve my problem. The reason for difficulties by accessing user defined outlook fields is, that foxpro doesn't know the type of the field until you have assigned a value to it. So here is my code for importing data from outlook's contact folder...
  18. georg59

    Import custom fields from outlook: type mismatch

    Hello Mike Gagnon, thanx for your quick reply. I think Your tip is right. But how is the right syntax? I tried: ? oItem.UserProperties(&quot;MyField&quot;).Value But foxpro gives me an ERR 1943. Georg Nickel Software Development Germany
  19. georg59

    RDBMS NextID

    I'm using the following code since some years, and it works very fine for me, perhaps it helps you. &quot;Id&quot; is a text field I use in every table. This function is called after every &quot;append blank&quot; statement. *--- Automated id-counter 06.09.00 GN *--- 20.11.2001 len for Id...
  20. georg59

    Import custom fields from outlook: type mismatch

    Hello, I have to write code that must import user defined fields from outlook's contacts folder. But every time i try to access from foxpro, i get a &quot;type mismatch error&quot;. Do anyone know about this problem? Here is the reducted code, that shows that problem: LOCAL...

Part and Inventory Search

Back
Top