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!

Search results for query: *

  • Users: sumpun
  • Content: Threads
  • Order by date
  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

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

    How to implement popup windows or dialog boxes ??

    Why aern't there any articles on handling popup dialogs ?? What I want is to prompt the user for a selection and use his/her selection to change the data source of a dropdownbox For instance : Select choice : 1. Fruit 2. Vegetable If the user selcts fruit, my dropdownbox will show pear...
  11. sumpun

    Running VFP3.0 on WinXP/WinNT with 256MB memory

    Does anyone know how I can get VFP30 to run on WinXP/WinNT with memory equal to and greater than 256MB. If I open the VFP application I get the following error : *** Insufficient Memory *** If I change my memory capacity to 192MB or less, it works OK. There are no such problems with Win98 (I...
  12. sumpun

    Reading Word Documents using VFP3 and save to memo

    HELP !!!!!! Does anyone know how I can read and extract sections of text from word documents using VFP version 3.0 and then save this into a memo table field of a table. HOPE SOMEONE CAN HELP ME !!!??? Cheers, Sum
  13. sumpun

    retrieving text from word documents into VFP memo

    Can someone help !!!???? Does anyone know how I can retrieving text from word documents, and then append it to a memo field I can do it vice versa, but not from word to vfp I am using VFP3, just in case that's the problem HELP !!!!!!!!!!!!!!!!! Sum

Part and Inventory Search

Back
Top