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 John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by JoeMicro

  1. JoeMicro

    MVC Single Model Two Dialogs - with PyQt

    Hi, i am trying to use a single dataModel for two different forms in hopes that when the dataModel is changed in one form it will effect the other as well. but that doesnt work. i built two forms: Form_1: has two views set to a model class. Form_2: has one view connected to the same model...
  2. JoeMicro

    One Before Max

    Tnx, MakeItSo, that works great.
  3. JoeMicro

    One Before Max

    Because i need to pull it into a loop and play with each one individually. and just sorting the table in order and looping through it will make things more complicated.. let me try to explain the concept i am trying to do, maybe that will help... i have this quantity ex 75843 i want to divide...
  4. JoeMicro

    One Before Max

    Hi, is there a way i could get in vba one before the max of a field? ex. Column 2500 3200 1500 5700 so i want to able to get into a variable 3200, and then 2500, etc.. basically i should be able to specify how for backwards from the max i want to go.. i hope his makes any sense. Any ideas...
  5. JoeMicro

    Access 2007 Ribbon Edit Box

    sorry, let me try explain. i m looking for vba code that Clears an editBox on the Ribbon. but the code should not be fired by the editBox but rather from another button on the Ribbon i hope this is better
  6. JoeMicro

    Access 2007 Ribbon Edit Box

    Does anybody know how to clear an editBox from callback of a different Control? I have a button on the ribbon which does an opens a form with a recorded which is indicated in the editbox by the user, but i couldn’t figure out how to clear the editBox after the callback from the button is done...
  7. JoeMicro

    Inserting Data To Access From DataGridView

    Thank you RiverGuy, i know how to create a datatset with the wizard, and what i tried to do was create an empty table in the dataset and bind that to the DGV, but i didnt understand what Imports you have to use at the beginning of the code and how to get the Insert's and Update's to work. i m...
  8. JoeMicro

    Inserting Data To Access From DataGridView

    Empty data grid view (with sum Combo Box, but i dont think thats what you asked) Purely ready for new data entry! thanks for taking your time to help me here. Joe
  9. JoeMicro

    Inserting Data To Access From DataGridView

    i didnt really do anything. is it possible to give me a heads up?
  10. JoeMicro

    Inserting Data To Access From DataGridView

    Hi, i m trying to build an application where the user could enter data in a datagridview and it should be inserted into an Access Database (or to SQL Server which ever you will advise me to use) i know how to create a DataSet, i tried creating a new DataTable in the dataset and bind that to...
  11. JoeMicro

    Refresh report wirth vba

    Hi, how do i refresh a report in access with vba. my problem as i m calling a report in acViewReport, and the report is bigger then the screen but i dont get the side scrollbar only if i refresh the report manually. i tried me.refresh but it doesen't work thanks Joe
  12. JoeMicro

    Prompt for Printer

    how about DoCmd.RunCommand acCmdPrint
  13. JoeMicro

    Delete record matching form value

    is this how its formated in the vba editor? do you get any masseges, is it running at all? where do you have the problem? if its only the formating then try docmd.excute("DELETE tblStoredBatches.TempBatchID FROM tblStoredBatches WHERE tblStoredBarches.TempBatchID = '" & Me.TempBatchID & "'")...
  14. JoeMicro

    Reference Application title in VBA

    thanks guys thet did the job thanks again Joe
  15. JoeMicro

    Reference Application title in VBA

    Thanks FancyPrairie, this works great with my running file, now how do i get the same thing from another file. like the application title of the file to which the tables in the current file are linked? Joe

Part and Inventory Search

Back
Top