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

    Knowing when mover bars have been used on list box?

    Is there a way to know that the user had moved a list box entry with the mover bars? How can I tell when they've completed the operation and what listindex they moved to? Thanks Eve
  2. EMJULIAN

    Putting bold text into a messagebox?

    Is it possible to make some of the text in a messagebox() function in bold? Right now my messagebox displays: "John Doe is already entered in the A relay" I'd like John Doe and A, which are both character variables to be in bold. Is there a way to do this?? TIA Eve
  3. EMJULIAN

    Adding fields to a view?

    I have a view that I would like to add 2 fields to that I can populate with temporary data. The fields would not be attached to a base table, just added to the end of teh field list of the view and populated with data temporarily. Is this possible? TIA Eve
  4. EMJULIAN

    Sorting a list box "numerically"

    I have a list box that gets populated with items that are characters but are numbered (i.e. "1-item a", "2-item b", etc.). The SORTED property on the list box puts them in order 1,10,11,2,3,4. Is there another way to sort a list box that will sort the numbers 1,2,3...10,11,12? Thanks Eve
  5. EMJULIAN

    Making an AM/PM spinner?

    Is it possible to create a spinner that toggles AM/PM? Thanks, Eve
  6. EMJULIAN

    Parameters on a form with page frames?

    Is there a trick to passing parameters to a form with page frames? I put the "Parameters ICALLED" into the INIT of the form, but it never seems to get there. TIA Eve
  7. EMJULIAN

    List box bound column not changing?

    I have a form with 4 pageframes. On page 2 there is a drop down list box that has 2 columns, only one is visible. When the user selects the item from the list, I populate fields in a table with the information from both columns by changing the bound column and doing a replace in the table with...
  8. EMJULIAN

    Check box not updating?

    I have a checkbox in the 1st column of a grid. User selects the box (to select the record) then clicks a command button to execute code. In the code it resets the check box to .F. The only way I can get the check box to refresh in the grid (back to the .F. state), is to either click on any colum...
  9. EMJULIAN

    Grid losing focus

    I use a text box and a grid to enter data into another grid. If I double click on the record in grid A, it calls ADD and then sets the focus to a field in grid B, like it's supposed to. However, if I use the arrow keys to move down to the record and press <ENTER> on the record in grid A, it...
  10. EMJULIAN

    Buffering mode and exclusive views question

    Would the buffering mode of a form effect whether or not a view opens exclusive? I open all my views in one form (although they're used in several once they're open). I open them with USE myView in 0 SHARED, and the database they're in is opened SHARED, and EXCLUSIVE is set OFF, but still the...
  11. EMJULIAN

    Handling errors from updating views

    I am using a view that users are entering data into. There is a possibility that all the fields in the table will be exactly the same and when the table updates I get an error (The key defined for the KeyField property for table is not unique). What I'd like to do is figure out how to check this...
  12. EMJULIAN

    Mouse icon on grid

    I have a form with a grid that clicking on the header of each column changes the index on the grid to sort by that columns information (last name, first name, etc). I use 2 forms with the same grid on each. On one form when I move the mouse over the header the icon changes to a black arrow...
  13. EMJULIAN

    Drag and drop on multiple page grid?

    I am doing a drag and drop on a grid. I use a gridhittest to determine which row they start on (which corresponds to the record in the table), and another to determine the row (and record) that they drop on. I copy the source and destination info to an array and then swap them (source to...
  14. EMJULIAN

    Views locking records.

    I have a form with 4 grids that are using 4 different views as their datasources. I open the views and other tables in form A using: Use Database Use myView in 0 select myView set index to..... then I run form B, which is where the views are actually used. The problem I am having is...
  15. EMJULIAN

    views opening exclusive even with set exclusive off???

    I am working with several views on a form as data sources for grids. The views are opening exclusivly, even though I have SET EXCLUSIVE set to OFF. Is there somewhere else to set EXCLUSIVE? Having them open exclusive is causing problems with my application. Thanks! Eve
  16. EMJULIAN

    Enable/disable multiple objects simultanously?

    Is there a way to enable/disable multiple objects on a form simultanously? I want to have several objects disabled until the user clicks a button and then have them all enable without having to code in every single "enabled=.t.". Thanks! Eve
  17. EMJULIAN

    indexing views?

    When indexing views, can you build several indexes at once (using "index on...to ...") and then call them using "set order to tag..."? I tried this, and it only finds the last index that I build in the list, any other index comes back as an invalid tag. Thanks! Eve
  18. EMJULIAN

    Maximum number of tables open at one time?

    I am working on a form that has 13 tables associated with it and I am also trying to use 4 views (in addition to the tables) as my data sources, so I would have 17 tables/views open at once. I create the view in view designer, but when I USE the view, one of my tables closes (the one at the...
  19. EMJULIAN

    How to set up views from dynamically filtered data?

    I have a form with 4 grids, each connected to a table, we'll call them A,B,C and D. Table A and B are filtered to show only the data for a particular dataset. Clicking on table A will cause table C to be filtered to that data, and clicking on table B will further refine the filter for table C...
  20. EMJULIAN

    Relating Cursor with a base table - how to update base?

    I have a form that has several grids on it. The data sources in these grids are filtered, so the scroll bars on the grids don't look quite right. To fix this I want to 1) copy the filtered data into a CURSOR or working table 2) use the CURSOR/working table as the data source for the grid so the...

Part and Inventory Search

Back
Top