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 Chriss Miller 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: skittle123
  • Order by date
  1. skittle123

    ASP passing parameters problem.

    Faced this problem recently, from what I coudl find in an ASP .net app crysatl cannot prompt for parameters. You have to set the paramters at run tim before seeing the report . Try to bind your report after getting values from the user using a regular asp page with text boxes etc. when they...
  2. skittle123

    Name/add a DataGrid column at run time

    Hi all. I was trying to rename a column in a datagrid so I could pull data from different tables but use the same form/datagrid for it. the only way that I could find to do this was at this link: http://www.c-sharpcorner.com/Code/2003/Feb/DynamicDataGrid.asp It describes how to add...
  3. skittle123

    SQL question...

    create a textbox (make it invisible) called (say rMonth and rYear ) in your last report. I n both of your queries substitute the part where it asks for user input with rmonth.value and rYear.value respectively, it should just ask you once then. I also have a question from your post: how did...
  4. skittle123

    Subforms and wheel mice

    that was pretty helpfull!! It took me a while to find it on the ms site, so heres the direct link if anyone needs it http://support.microsoft.com/default.aspx?scid=kb;[LN];278379
  5. skittle123

    how do you lock the scroll?

    have struggled a lot with the same problem. Get a new mouse w/o a scroll wheel is what I suggest :)
  6. skittle123

    Populating Form Field Based on Other Field

    IN combo box on the subform for the ID field (USER_OBJ) set the vllue by refereing to the value that is on the main form like so (where Me refers to subform) me.<idFldName>.value = Forms![&quot;MainformName&quot;].Forms.<objectname>.value let me know if I havent answered your question
  7. skittle123

    Recordset Not updateable in Form

    this error usuly pops up if the recordset you are selecting is not unique, check your primary keys on all the tables you are joining,
  8. skittle123

    Removing the default record navigator from a for in Access 97

    right click on the form (at teh little black suare in the left top conrner) fgo to properties/format set the &quot;Navigation Buttons = NO&quot;
  9. skittle123

    New button grayed out Access 2000

    you've prob tried this, but does the enabled property of the button in the new database still say &quot;enabled = yes&quot;?
  10. skittle123

    Close an unsaved report

    MrMajik: with regard to this post I have a question: you said you are creating a report entirely in code. I am trying to do something similer but am having trouble setting the recordsource of this new report. can you tell me how you did that? Thanks
  11. skittle123

    How do I change the cursor on a &quot;mouse move&quot; event

    screen.pointer = <number> will change it to different types
  12. skittle123

    Label Properties (Mouse Move)

    Haydon, can you tell me how you solved this please? I am trying to do the same thing and using detail.on_mouse_move
  13. skittle123

    Combo box not updating when adding new not in list

    hi I am guessing you are trying to add new entries to a combo box and want them to show up in the drop down list. in the after_update event of your combo box add this Call FunctiontoInsertNewFeildInDB Me.<comboboxname>.requery

Part and Inventory Search

Back
Top