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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by sumpun

  1. sumpun

    How to modify report .frx files programmatically

    Can someone provide me a list of objtypes and objcodes ??? I understand that I can programmatically change attributes of a report by treating the (.frx) as a table, since I already do this for setting printer attributes. However, what I am trying to do is adjust all values of vpos and hpos for...
  2. sumpun

    Send mail using Lotus Notes 5

    Can you help me ... my password seems OK, but keeps showing the following "The password you specified was not valid" which is from the function defined above. Is there a simple way to test whether I can successfully send mail ?
  3. sumpun

    Send mail using Lotus Notes 5

    I have been using this example from an earlier post to send mail using Lotus Notes 5.0, but seem to always say that my password is wrong Is there any settings that I need to do first before using this. I already have the client (admin and user) installed. DO I need to do anything else ?? Is...
  4. sumpun

    How to define and use multiple arrays for class/struct

    I want to do is define multiple arrays inside a class or struct. To be more precise, I want to to define a struct than contains an two or three arrays of another struct type. Is using classes easier ?? I want to do something like this : public class mystudentclass { struct subject...
  5. sumpun

    Can I place all code of textbox.valid into textbox.lostfocus

    YES it works !!! Also, I found that I only had a few situations when I needed to setfocus back to itself. For these situations, I left all code in the valid event and return 0 Returning zero returns focus back to itself without error message. CHEERS !!
  6. sumpun

    accessing VFP3 databases using VFP7

    With free tables, it is OK But if the database contains relations and referential integrity, I can longer access it again using VFP30. I've decided to just do a full conversion to VFP7, as I didn't have that many problems with setfocus methods within valid events. CHEERS !!
  7. sumpun

    Can I place all code of textbox.valid into textbox.lostfocus

    Like everyone else I hve a problem with setfocus being used in valid and when events However, if I dump all code into the lostfocus event, it seems to solve my problems. Are there any problems with this ?? If I wanted the textbox to setfocus back to itself, it's fine, I only need to return...
  8. sumpun

    accessing VFP3 databases using VFP7

    Can I use VFP7 to access databases and tables created in VFP3 without any version conversions ?? I currently have a application written in VFP3, but need to develop some tools using VFP7. Can I access the database and tables using forms and code developed using VFP7 and maintain it so that it...
  9. sumpun

    Problem using activate window calendar (VFP3)

    I am using activate window calendar to implement a date picker function. What i have is a text box field and command button In the click method I have the following code : ACTIVATE WINDOW calendar THISFORM.date.value = _DIARYDATE THISFORM.Refresh However, it always returns me the wrong...
  10. sumpun

    Cannot derive classes from CommandEventArgs

    I have written something similar to this : namespace mynamespace { public class MyOwnEventArgs : System.Web.UI.WebControls.CommandEventArgs=20 { public int x ; public MyOwnEventArgs() { x = 3; } } } However I keep on getting a compile...
  11. sumpun

    Microsoft Office Automation using VFP7.0

    Does anyone know any good books for developing applications that manipulate word, excel and ms graph. There is one at this link : http://www.amazon.com/exec/obidos/ASIN/0965509303/qid=/sr=/ref=cm_lm_asin/002-6771909-8179251 The book is called "Microsoft Office Automation with Visual...
  12. sumpun

    Migration from VFP3.0 to VFP7.0

    What can I use instead of setfocus() in when and valid, as I have alot of those. As for the Y2K issue, I used SET CENTURY ON, which allowed to get round the Y2K problem.
  13. sumpun

    Migration from VFP3.0 to VFP7.0

    DO I need to make any drastic changes to migrate a program written in VFP3 to VFP7 ? Before converting and using the software, do I need to make changes. I tried it using a beta version of VFP7 and it was fine. I did not get the same problems as I did with version 5 or 6 where I was unable to...
  14. sumpun

    How to implement popup windows or dialog boxes ??

    Hi Rushi Received your example !! This doesn't seem to implement it as a popup window ... How can you implement it as a popup version ??
  15. sumpun

    How to implement popup windows or dialog boxes ??

    my mail address is spun@jashongkong.com

Part and Inventory Search

Back
Top