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 derfloh 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: dylim
  • Order by date
  1. dylim

    Easy Way to Update EXE to all Workstations

    Thank you for taking the time and effort for this rather lengthy reply. I appreciate it. By "network share", you mean a shared folder on the server and the workstations must map this shared folder to a certain drive letter, right? I also agree with you that copying the EXE into a local folder...
  2. dylim

    Easy Way to Update EXE to all Workstations

    Won't running an EXE from a network drive have problems like latency? Do you practice this sir?
  3. dylim

    Easy Way to Update EXE to all Workstations

    Wow. It's up there in the food chain alright. That's kinda like having a Lamborghini to deliver newspapers in a neighborhood. Thanks for pointing this to me. This is perfect for a company with a sizable IT inventory. I simply needed a simple way to update EXEs across multiple workstations.
  4. dylim

    Easy Way to Update EXE to all Workstations

    The "main computer" where the workstation checks against must have a shared folder where the EXE is, right?
  5. dylim

    Easy Way to Update EXE to all Workstations

    How is the very act of downloading done? Just a simple COPY FILE command? Thanks
  6. dylim

    Easy Way to Update EXE to all Workstations

    Hi Guys, I know this has been discussed. I would just like to get your various methodologies in doing EXE updates across multiple workstations using the app so I can decide on which to adopt. Thanks in advance.
  7. dylim

    Is there a FUNCTION or Property to Get the "Complete Address" of a Form Control

    Chriss, I had an OLD form class used for generating reports wherein I use as part of my Validation routine the 'direct addressing' of a form control that has an invalid value. The Validate routine will go through all controls (textboxes usually). If the Value is invalid, I passed the offending...
  8. dylim

    Is there a FUNCTION or Property to Get the "Complete Address" of a Form Control

    To all who replied, SYS( 1272, This ) is what I am looking for! Thanks SoftArt
  9. dylim

    Is there a FUNCTION or Property to Get the "Complete Address" of a Form Control

    Hi Guys, Is there some VFP function or Property that will return the "complete address" of a form control? This is what I mean: Suppose I have a textbox named txtFirstname, which is inside Page1 of pgfMain found in a form. How can I get its complete address...
  10. dylim

    Strange MariaDB behavior with Sequential GUIDs

    Well, for MariaDB, from hereon out, I will use "ORDER BY id" then. Again, kinda weird, coz MySQL has always shown the resulting rows already arranged. Thanks!
  11. dylim

    Strange MariaDB behavior with Sequential GUIDs

    Well, for MariaDB, from hereon out, I will use "ORDER BY id" then. Again, kinda weird, coz MySQL has always shown the resulting rows already arranged. Thanks!
  12. dylim

    Strange MariaDB behavior with Sequential GUIDs

    I use InnoDb, not MyISAM, because I need transactions. And yes, the ID field is the primary key.
  13. dylim

    Strange MariaDB behavior with Sequential GUIDs

    The reason I used sequential GUIDs is just to make sure they are ordered in the "natural order" of entry of the invoice details (child) rows. This has worked for me ever since I used MySQL, as a "workaround" to our VFP table record number.
  14. dylim

    Strange MariaDB behavior with Sequential GUIDs

    This is really strange. Ever since I have used MySQL, I have never used "ORDER BY id" to make sure they are in the 'natural' sequential order. No worries though. I will explicitly put "ORDER BY id" from hereon out since I am now with MariaDB. Thanks.
  15. dylim

    Strange MariaDB behavior with Sequential GUIDs

    Kindly check my reply to mJindrova. I have been using MySQL and it always shows the records sequentially - by the sequential GUID - without the need to put "ORDER BY id". It is only when I migrated to MariaDB recently that I noticed this behavior. If this really is the default behavior, then no...
  16. dylim

    Strange MariaDB behavior with Sequential GUIDs

    Hi, If you execute the same using MySQL, it orders it sequentially with out adding an "ORDER BY id". Strangely though, if you: select * from SODTL without any WHERE clause, it will arrange it "correctly" - sequentially. Only when you place a WHERE clause will it show the rows in reverse order.
  17. dylim

    Strange MariaDB behavior with Sequential GUIDs

    Hi Guys, I use sequential GUIDs for both my Invoice header and detail tables. Ever since I moved to MariaDb, it was only now that I noticed that if I do a select of the invoice detail rows of a particular header row, MariaDB shows the rows in REVERSE order! I have to explicitly add a "ORDER BY...
  18. dylim

    Using cursor adaptor to update blob data in MySQL

    Hi DDPL, Check out FILETOSTR() function. Also STRTOFILE(). You need them for Blobs.
  19. dylim

    Window displaying differently outside VFP environment

    SitesMasstec, What is the SCALE value in Windows Display Settings?
  20. dylim

    png file not displaying in image control

    Hi ravicoder, Is the image control Visible set to True? Or maybe is the Image control "on top" or "under" some other control?

Part and Inventory Search

Back
Top