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

  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
  15. MikeDamone

    Required Field Validator question....

    I have a required field validator that is supposed to fire when a button is clicked. It uses the required summary to pop a javascript message box letting the user know that a certain field is required. It works correctly if the user is patient enough to let the entire page load before clicking...
  16. MikeDamone

    DataView Question

    I have a datatable that I am adding rows to on the fly. Then I'm setting the datatable equal to a dataview for sort purposes. Then I want to loop through the sorted dataview and build an html table. The problem I have is that the row indexes of the dataview table do not reorder when I sort...
  17. MikeDamone

    Exporting Datagrid to Excel Question

    Hi all, I have a datagrid that is populated from a SQLServer query that contains a few text fields in the query. When I try to export it to Excel, I get the following message 'Cell data too large' I was assuming this was because the text fields contained too much data, but I have since setup...
  18. MikeDamone

    User and Login Detached?

    I am restoring a DB and when I do user 'x' becomes detached from login 'x'. I found a way to re-attach them by using EXEC sp_change_users_login 'Update_One', 'x', 'x'. The user and login now appear to be re-attached, but when I log into Query Analyzer as 'x' and try to select, I have to...
  19. MikeDamone

    Mimic the Alert Function...

    Holy cow the delay worked. Thanks to everyone!

Part and Inventory Search

Back
Top