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 SkipVought 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: stanmurphy
  • Order by date
  1. stanmurphy

    Unlocking a Database??

    When I checked the file this morning, it had been released. Don't ask me how or when :) And no, I don't have any REPLACE ALL commands. Also, I don't find the program running on any machine. And we're using Novell 3.11
  2. stanmurphy

    Unlocking a Database??

    Actually, in the compiled code, the path is: \\serv110\sys\software\vision_appt pointing to the directory on the Novell network. I haven't tried the low level handle.
  3. stanmurphy

    Unlocking a Database??

    No problem, I appreciate the interest. There are no exclusive opens. There are Flock() commands, but they are all matched with unlock(). And besides, shouldn't the lock be released when the program is closed?? I have tried opening the file on both Novell workstations from which it was...
  4. stanmurphy

    Unlocking a Database??

    No, there are no reports.
  5. stanmurphy

    Unlocking a Database??

    Yes, I do. Listed below is the code in my MAIN program: ********************************************** CLOSE ALL CLEAR ALL PUBLIC m.CLIENTID, m.CAMPUS PUBLIC m.CURRENT_USER STORE "" TO m.CURRENT_USER, m.CAMPUS ON ESCAPE STORE "" TO mmmmm SET TALK OFF SET BELL off SET...
  6. stanmurphy

    Unlocking a Database??

    Hi All, I've written a multiuser program in VFP8 but apparently multiuser programming is not my forte. All users are locked out of the data table now. And when I go in to edit the program, I'm told the database is locked when I try to use it or any of the tables. How do I unlock it, please...
  7. stanmurphy

    Starting MAIN program from Login Screen

    Sorry, I should have said 'call my main form'. SCHEDULE is a form.
  8. stanmurphy

    Starting MAIN program from Login Screen

    Actually, I should have said the error is "Alias SCHEDULE not found"
  9. stanmurphy

    Starting MAIN program from Login Screen

    Hello All, I would like to call my main program, SCHEDULE, from a login screen after I have checked for valid username and password. When I simply call the SCHEDULE form from the LOGIN form, I immediately get an error say that the object SCHEDULE cannot be found. However, if I run the...
  10. stanmurphy

    Substituting variables into statements

    Thank you Stella, it works perfectly!! :) and thank you also for your assistance robsuttonjr
  11. stanmurphy

    Substituting variables into statements

    It really doesn't matter what the function of the code is. I may want to do any number of things with it. That's why I put it in a generic program called by all the text boxes, so I can easily modify the program as my needs dictate. The question is how to reference the particular text box using...
  12. stanmurphy

    Substituting variables into statements

    I have 68 text boxes arranged as a grid of colums and rows. Each text box is named for the row and column it is in. I.E. TextBox1_1, TextBox1_2, etc. In the click event of each text box I DO a program (the same program for all boxes), sending as parameters the row and column of the text box I've...
  13. stanmurphy

    Substituting variables into statements

    Hello all, Is it possible to substitute multiple variables into a statement such as: thisform.text1.value = m.columnX_rowY where X and Y are the variables? I have tried something like: thisform.text1.value = m.column&X.._row&Y.. but it doesn't work. Can anyone help, please. Thank you. Stan
  14. stanmurphy

    Storing ComboBox Fields to a record

    Thanks so much. It works perfectly :)
  15. stanmurphy

    Storing ComboBox Fields to a record

    Hello All, My form has a combobox pointing to a table. My table is as follows: Field1 Field 2 01 | Option 1 02 | Option 2 03 | Option 3 04 | Option 4 I want field2 to be displayed to the user, but have field1 stored in my data table when I save the data on the form. I...
  16. stanmurphy

    Printing a form as displayed on-screen

    Thanks very much.
  17. stanmurphy

    Printing a form as displayed on-screen

    Hi there, Since the Keyword search is down I can't check if this has been answered before. Is there a way to print a form as it is displayed onscreen. I have written a scheduling program and the users want to be able to print the schedule as it appears onscreen in case of a power failure or...
  18. stanmurphy

    PageFrame & Memvar Problem

    I meant 'by declaring the variableS'
  19. stanmurphy

    PageFrame & Memvar Problem

    The problenm was fixed by declaring the variable PUBLIC in my Main.prg Thank you everyone for your assistance. I always learn so much when I come here!!
  20. stanmurphy

    PageFrame & Memvar Problem

    I will give that a try as well. Thanks :)

Part and Inventory Search

Back
Top