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

    Knowing when mover bars have been used on list box?

    I ended up using the InteractiveChange event and a cMOVED variable. After the interactive change I do the error check. Simple but it works for what I need to do. Thanks for the help! Eve
  2. EMJULIAN

    Knowing when mover bars have been used on list box?

    Thanks, the listbox is just a list, no table associated with it. I'll take a look at that March article you wrote Tamar. If all else fails this feature will just have to wait until I get around to upgrading to 8! :) Thanks again Eve
  3. EMJULIAN

    Knowing when mover bars have been used on list box?

    How about in 7? Thanks. Eve
  4. 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
  5. 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
  6. 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
  7. EMJULIAN

    Making an AM/PM spinner?

    Thanks all for the replies. In the interest of time and keeping things simple I ended up using a combo box for AM/PM and a text box for the time. I appreciate all the great ideas though and will be keeping them for reference - i'm sure I'll have another project where it will come in useful...
  8. 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
  9. EMJULIAN

    Making an AM/PM spinner?

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

    Parameters on a form with page frames?

    Aha. Oops! :) I've used parameters before, you'd think I could remember how they work. Thanks for the brain un-clog! Eve
  11. 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
  12. EMJULIAN

    List box bound column not changing?

    Rick, Thanks, leaving the bound column and using value and display value worked perfectly. Thanks! Eve
  13. EMJULIAN

    List box bound column not changing?

    Rick, The list is built in the INIT of the combobox, from fields in a table (Col 1=eventlis.list_descrtn and Col 2 = eventlis.list_name) RowSourceType=0 RowSource=none Style=2-dropdown list Control Source=reccom.list_name (field in a table) Data type of both columns is character In the click...
  14. 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...
  15. EMJULIAN

    Check box not updating?

    Aha! I found it. I have to set the focus off the check box and somewhere else on the grid before it would refresh. Who knew?! Thanks for you reply. Eve
  16. EMJULIAN

    Check box not updating?

    Yes, yes, yes and yes. :) Any other thoughts? I am thinking it has something to do with the focus not getting set off, or back on, or something like that. It's just one of those little things that is driving me crazy! Thanks, Eve
  17. 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...
  18. EMJULIAN

    Grid losing focus

    B-e-a-utilful! That fixed the problem. Thanks for the quick response. Eve
  19. 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...
  20. EMJULIAN

    Buffering mode and exclusive views question

    The problem is that when I try to update the view (eventview.no_recs=eventview.no_recs+1) I get a "file in use by another user" error, even though I'm the only user. It always happens when I click on the grid to select a record before I try to update it. If I use the arrow keys, no error. Any...

Part and Inventory Search

Back
Top