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

    Change the cell color for a single cell in grid

    Hi, Is there a way to change the background color for just one cell in a grid? I want to change the color of a single cell as information is updated in the cell. Thanks, Aseem
  2. Aseem1234

    Multi-line Messagebox

    How does one go about creating a multi-line messagebox in Foxpro 8. I cannot figure it out even with the escape characters. Is there another way? Thanks
  3. Aseem1234

    Is there a way to make a form dockable?

    Can this be done? Or how would you go about creating a window yourself that can be docked? Thanks
  4. Aseem1234

    How to position a toolbar form absolutely?

    Hello, I have a foxpro application in which I have made a form to represent a toolbar that the user can use to navigate the application...I would like this toolbar to show up exactly 50 pixels below the foxpro menu at the top of the window...I tried to use top and left, but if I am correct...
  5. Aseem1234

    Smallest width for a foxpro 8.0 form?

    Can it get any smaller than 110 pixels??? I can't seem to make it any skinnier! Thanks
  6. Aseem1234

    How to figure out the name of a column heading in a cursor?

    Hello, I have a cursor which has many fields in it, most of which never change, however, sometimes I update the cursor and some of the field names change. I use the name fields to figure out some things the user is doing and therefore need to be able to figure out dynamically what the name of...
  7. Aseem1234

    How to figure out what is the active row in a grid?

    Hello, I have a grid and I am trying to figure out which row the user selects in order to pull the information from that particular row and do some processing...however, i can't seem to figure out how to figure out which row is selected! Can someone help? I have the grid recordsource bound to a...
  8. Aseem1234

    Best way to validate code?

    What is the best way...using field validation in the database itself, using masks and format in the form, or having code to handle the situation? I know that each situation would depend on the application, but are there any issues that pop up using one method over another?
  9. Aseem1234

    Getting the current value and old value in a trigger procedure

    Hello, I have a stored procedure for the update on one of my tables: PROCEDURE updCaseInfo local x, y IF (cst_statid) < 0 messagebox("The error will be logged!") x = alltrim(str(oldval("cst_statid", "cases"))) y = alltrim(str(curval("cst_statid", "cases"))) insert into...
  10. Aseem1234

    Ways to create a program event logging database

    I apologize if this question is not supposed to be in this forum, but since I am using Foxpro to do it, I thought I would ask... I am trying to create a program in which I can log many system and user events, such as if the user deletes a Customer or how many customers have logged into the...
  11. Aseem1234

    Textbox using Input Mask...problem.....

    Hello, I have a textbox that has an input mask of 9999-999 and also the format proprty is set to &quot;R&quot; (I don't want to save the dashes) What I would like to do is that when the user enters the number and presses the TAB key, a automatic search will be done...the problem is that when...
  12. Aseem1234

    Foxpro triggers...

    If anyone could send links for information about Foxpro triggers, I would greatly appreciate it. I am trying to create a eventLog class that will log various actions of the user, e.g. if the user deletes a order or edits a customer profile...has anyone done this before? How did you implement...
  13. Aseem1234

    Lose grid headers and widths on refresh...

    Hello, I have a grid which is bound to a cursor and the recordsource for the grid is an alias. I am having the problem that whenever I recreate the cursor, the grid displays the data from the cursor, however, it replaces the grid headers I specified with the headers in the cursor and it also...
  14. Aseem1234

    Very slow search in Windows and Powerpoint

    Hello, I have a strange problem...In Powerpoint 2002 when I try to do a search for clipart, it takes an extremely long time to load a particular section of the resutls. What is mean is that when I try to scroll through the images, it takes almost 2 minutes to load some of the pictures. This...
  15. Aseem1234

    Very slow search in Powerpoint &amp; Windows

    Hello, I have a strange problem...In Powerpoint 2002 when I try to do a search for clipart, it takes an extremely long time to load a particular section of the resutls. What is mean is that when I try to scroll through the images, it takes almost 2 minutes to load some of the pictures. This...
  16. Aseem1234

    Unable to bypass 1 form in set of 3 forms

    Hi, I have three forms, the main form has a command button, that when clicked loads Form2. In the Init of Form2, there is a call to load Form3. Form 3 is the only modal form. And while form3 is showing, form2 is hidden... My problem is that I want to go directly back to the main form from...
  17. Aseem1234

    Visual Source Safe and Foxpro 8.0

    Hello, Is there anyway to use VSS with Foxpro so that when a user checks out a lib that they only check out ONE CLASS within the library? Or is checking out the entire library the only way to use VSS with Foxpro? Thanks, Aseem
  18. Aseem1234

    Acessing Collection Object methods within wrapper class

    Hello, I have a collection class called DataColl and my program creates this collection object and passes it back to another form...I also want to pass more information about the state of the current form to the second form, so I decided it would be best to use a wrapper class...this is my code...
  19. Aseem1234

    Database merge using Foxpro 8.0

    Hello, I have merged two databases together, an old and a new one, that have the same data. I used a union all because I have a memo field called Notes in each of them. I then store this merged table into another table on the local hard drive. When I load this data into a userform, all the...

Part and Inventory Search

Back
Top