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 strongm 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: *

  1. aizeret

    Update record on form accroding to the selection of a combo box

    Hello avivit, This is how I would do it.... The 1stCombo look at the properties, click on the 'Event' tag, go down the list until 'After Update'....this should be changed to [Event Procedure]. When you click on this Access creates a function in VB. You have to feel in the body of it. Add the...
  2. aizeret

    registry install location

    I only came across this problem recently. The way I looked at it is installing the wav file in the same directory as the application. That way you can find the application Name which includes the directory and all you have to do is remove the application name and add the wav name instead. There...
  3. aizeret

    Update record on form accroding to the selection of a combo box

    I have a form which displays the fields of a particular record. On the same form I have a combo box which is limit list to one of the fields of the table. What I would like it to is when a selection is made in the combo box to update the rest of the forms display according to the new selected...
  4. aizeret

    Maximise form doesn't reflect on subform?

    I have a form which has a subform. My problem is that while it is running if the user presses the maximising button, the form is viewed full screen but the subfrom still remains the same size. I would like the subform to maximise as well as the form. Any hints are appreciated.
  5. aizeret

    Struct help

    As declared by others..... #define MAX 5 struct User { int Score; char Name[10]; }; Initialise the array structure............... struct User Table[MAX] = { /*Score Name */ {150, "name1" }, {50, "name2" }, {5...
  6. aizeret

    keyboard values

    I don't belive this is as easly as calling getch(). My understanding is that the arrow keys on the keyboard are amongst a group called accelerator keys. When one of these get pressed they get sent to the message pump which controls containers. How ever if you are writing in C++ you can intercept...

Part and Inventory Search

Back
Top