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 TouchToneTommy 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: ggrewe
  • Content: Threads
  • Order by date
  1. ggrewe

    Using Special Characters in Grid Header

    I am trying to find a way to display special characters in a grids header. For example; I have a method written in my grid class that when I click on a grid header, it sorts the grid accordingly. I also change the caption of the header to include an up arrow (^) when the header is first...
  2. ggrewe

    E-Mailing selected values

    Folks, I have a form that displays several posible selections (from a database query) as checkboxes on a form. The code below displays those choices correctly; <% query = "select * FROM qry_MinistriesandTimes" set rs = con.execute(query) html_str = "" RecordNumber = 1 do...
  3. ggrewe

    Adding Color to a ListBox

    In VFP 9 is it possible to change the color of the text in a listbox dynamically? Sort of like DynamicBackColor in a grid. Basically I want to change the text color list item if a particular value is true. I have tried the following to no avail; FOR i = 1 TO .lstAttendeeName.ListCount IF...
  4. ggrewe

    Problem Validating Data

    I am trying to validate a textbox field for a value that is not empty. I am using the following code. I added the code { alert(lcValue) ; } to test the value being passed. When the function fires, the alert "undefined" is displayed. Any help is greatly appreciated. <script...
  5. ggrewe

    Updating a table from a drop down

    I am having a problem updating a table with the correct value from a drop down combo. The code below lists the correct value associated with the AccessGroupName, but the value for the AccessGroupID (which is an 'int') is not correctly passed to the SQL update string. The update string acutally...
  6. ggrewe

    Problem Setting Focus

    I have created a base class with a method of "Edit_Records". In that method, the last line sets focus to some object on the form. What I would like to do is populate a variable on the form (roSetFocus) so when the edit method is called, I can do something like : THISFORM.roSetFocus.SetFocus()...
  7. ggrewe

    Dynamically Printing a Blank Page in VFP 7

    Folks, Does anyone know of a way I can print a blank page or do a page eject when the end of a report group is reached and it is an odd page? I have tried adding IIF(MOD(_pageno,2)<>0, EJECT PAGE, "") to the group footer on exit expression to no avail. I have done something like FOR i = 1 TO...
  8. ggrewe

    Undefined function in Query

    I have searched for this problem and found several postings that tell me to open the VBE and then check "Tools, References" to make sure the right libraries are added, but I still have the same problem with this query. I cannot determine what libary is missing. I am running Access 2003. Any...
  9. ggrewe

    Outlook Form the Links to a UNC Path

    I have a client using Exchange 2003 and Outlook 2003. I have created a custom for them to track thier client information, kind of a mini CRM package. What they want to do now is have a tab on that same form that will list all the clients documents stored on the server. Is it possible to...
  10. ggrewe

    Printing Multiple Copies

    In VFP 7, is there a way to print multiple copies of the same report without calling the report form twice? For example, I have a cursor with 51 records and I want collated copies of the report. Right now I do the following; for i = 1 to alen(idnumber) for n = 1 to number_of_copies...
  11. ggrewe

    onsubmit return problem

    I am trying to validate two dates to make sure they are really dates, then to make sure that the beginning date is less than the ending date, and lastly to make sure the beginning date is greater than the last date in the curent table. Here are some snippets of the code. The function works...
  12. ggrewe

    onsubmit return problem

    I am trying to validate two dates to make sure they are really dates, then to make sure that the beginning date is less than the ending date, and lastly to make sure the beginning date is greater than the last date in the curent table. Here are some snippets of the code. The function works...
  13. ggrewe

    Problem with SI Forms and Menus

    I am running VFP8, SP1. I have created a stand-alone exe with its own menu system (mainmenu.mpr). One of the options is to call various complied applications (top-level forms) with thier own menu system (app.mpr). I call the app like so "DO App.app WITH .t.". The problem is once the app is...
  14. ggrewe

    Designing Outlook Forms

    I am attempting to build a Customer Outlook Form in an Exchange Public Folder. I am trying to setup a grid or table on a specific page. I want users to be able to enter data on the grid. In various columns on the grid, I need a ComboBox so that users can select from pre-determined values and...
  15. ggrewe

    Creating New Cirtix Profiles

    I would like to know if there is a way to setup a profile for a Citrix user without logging in first? This setup would need to include printers, Exchange setup, etc. I am using W2K Advanced Server and Citrix MetaFrame. Thanks in advance for any help.
  16. ggrewe

    Updating a Table with SQLEXEC

    I am having a problem updating a table in MS SQL SP3 WITH VFP7 AND VFP8. I have run the following code, but the final SQLEXEC statement always fails. I am sure I missed something in setting the properties, but I cannot find what it is. Here is the code, without the error trapping... OPEN...
  17. ggrewe

    Problem printing to a DOT Matrix printer

    I have several reports that some users want to print to dot matrix printers. When they use the report that I have created using a laser printer as the default, the report prints fine, but it always changes the dot matrix printer to Letter Quality and takes forever to print. I have created...
  18. ggrewe

    Modify Report in Compiled EXE

    I want to give the end user the capability to modify various reports after the program has been complied into a standalone exe. I have that part working, but the problem is normally you have to open the "Reports Control Toolbar" to edit text, draw lines, etc. Is there anyway to have that...
  19. ggrewe

    Multiple Grid Questions

    I have a couple of questions about using a grid to do some data entry, if anyone can help, I would apreciate it... I am using VFP 7, SP1. 1. My grid has 8 columns, 6 of which can be seen on screen most of the time on an 800x600 setting. When a user tabs past column 6, the grid moves to the...
  20. ggrewe

    Save Form as Class Question

    I have a form that I recently converted to a class (Save As). I modified all the code to use createobject instead of do form. But when I build the exe, the form keeps being added back into the project manager. When I rename the form, the complier generates an error trying to find the form...

Part and Inventory Search

Back
Top