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 bkrike 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: MikeDamone
  • Content: Threads
  • Order by date
  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?

    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...
  8. 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...
  9. 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...
  10. 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
  11. 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...
  12. 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...
  13. 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...
  14. 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...
  15. MikeDamone

    Mimic the Alert Function...

    Does anyone know how I can trick the browser into thinking an alert was issued and that the user clicked ok? Thanks
  16. MikeDamone

    Crystal for .Net Question

    I have a Crystal repoort with a ton of formatting that I've already done, and now I need to add a new database field to the report. Problem is if I go through the report expert its going to reset all my formatting. When I right click and choose insert, the "field" option is disabled. Anybody...
  17. MikeDamone

    Windows App Datagrid Question....

    I have a number of datagrids in a windows app and some of the fields can a large number of characters. Is there a way to tell the datagrid to wrap the text? Currently, the text is there, but only the portion that falls within the width of the datagrid column is displayed. Thanks
  18. MikeDamone

    Maximize/Minimize box Question

    I have a windows app and on the form I have both the maximize box and the minimize box property set to true, but when I run the app, all I get is the X in the upper right corner. Has anyone else seen this? The form is called from a module and uses EnableVisualStyles for the XP look if that...
  19. MikeDamone

    Disable DataSet Change Event?

    I have a dataset that I want to disable the the change evernt handler long enough for me to format some numbers and then turn it back on after the format. Does anyone know how to do this? The dataset thinks there have been changes when I format the numbers, but its cosmetic changes that I...
  20. MikeDamone

    VB.net and Crystal Report Question

    I have a windows app that has a crystal report on it. It was working fine, but now when I run it, the crystal toolbar buttons have lost their icons. The buttons still work, but you can't see them. All their visible properties are set to true and display toolbar is set to true. Any ideas? Thanks

Part and Inventory Search

Back
Top