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 wOOdy-Soft 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 MikeDamone

  1. MikeDamone

    Command Line Printing - Unable to Initialize device

    I have a program that will run on many different PC's that needs to print. The PC's come in all shapes and sizes. Windows 7, Vista and XP. The PC's will be connected to a local printer via Parallel and/or Serial ports. The solution was to create a generic/text only printer on each PC named...
  2. MikeDamone

    Command Line Printing - Getting the Unable to Initialize Device error

    I have a program that will run on many different PC's that needs to print. The PC's come in all shapes and sizes. Windows 7, Vista and XP. The PC's will be connected to a local printer via Parallel and/or Serial ports. The solution was to create a generic/text only printer on each PC named...
  3. MikeDamone

    Parent Child Dataset. How to get foreign key populated

    I have a dataset with a parent table and a child table. I have defined the relationship in the dataset designer. I am using a database generated sequence as the ID of the parent table which will be a foreign key in the child table On the windows form when I click addnew, I create a header...
  4. MikeDamone

    Call an Oracle Function from Access

    I'm looking for a way to call an Oracle function from Access. I was doing an inline query from Access to Oracle using a linked table but I had to use the Top 1 feature of Access to limit my result to 1 record. It is very slow. In oracle I can use rownum = 1 which is much faster. So I'd like...
  5. MikeDamone

    In-Line Select Sub-Query in Access...

    Does anyone know who to do an in-line select query in Access. In oracle I know hoe to do this but not in Access. For example in Oracle I can do this. Thanks for any help! select last_name, first_name, (select job from emp_jobs where id = person.id) job, address From Person...
  6. MikeDamone

    Get first day of previous month in Access

    I'm looking for a way to return the first day of the previous month in Access without the time So if today is 7/1/2010, I'm looking to return 6/1/2010. Does anyone know how to do this? Thanks!!
  7. MikeDamone

    How to get the date of the next Sunday?

    Thanks everyone! I got it working with your suggestions
  8. MikeDamone

    How to get the date of the next Sunday?

    I'm looking for a way to get the date of the next Sunday. -If the date selected is Thursday, 7/1/2010, I need to know how to return 7/4/2010 -But if today is Sunday, 7/4/2010, I need to return that date. 7/4/2010 I'd like to do this in one query. Is this possible? I know how to do it in...
  9. MikeDamone

    Dynamic Buttons not firing events

    The thing that drives me nuts is this exact code worked fine in VS 2003 but does not work in VS 2005.
  10. MikeDamone

    Dynamic Buttons not firing events

    Thanks to you both for responding. Setting the id did not work. I have seen some articles that say to create the controls in the page init, but the controls are built based on user input so I don't see how I can add their creation to the page init. Is that the only way this is going to work?
  11. MikeDamone

    Dynamic Buttons not firing events

    I have a series of dynamic controls that are created by the same sub. There are textboxes, buttons and dropdowns all being created together. The click event of the buttons are not firing even though they an AddHandler has been added. I know the dynamic controls are being rendered correctly...
  12. MikeDamone

    ODBC and Oracle Ref Cursor

    Is it possible to to use the Oracle Ref Cursor with an ODBC connection? I'm trying to have a windows app that connects to Oracle and returns a record set from an Oracle stored procedure. I know I can use the .net provider for Oracle or OLEDB, but I'm trying to stay away from having to put...
  13. MikeDamone

    Tab order question

    Thanks, but my problem isn't just with objects such as textboxes etc... Its with textboxes that are on user controls and those user controls are on a web form. There are multiple user controls on the web form, and multiple textboxes etc... on each user control. Only one user control is active...
  14. MikeDamone

    Tab order question

    I have a web form that has numerous user controls on it. The tab order seems to be all over the place. Does anyone know how to control the tab order with respect to the multiple user controls? Thanks

Part and Inventory Search

Back
Top