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 Wanet Telecoms Ltd 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 chicdog

  1. chicdog

    Adding alt attribute or LABEL to checkbox in gridview

    The application that i'm working on requires 508 compliance and I'm recieving a failure on the checkboxes in the gridview. Is there a way to add an alt attribute or LABEL to a checkbox control in a gridview that's dymanically created?
  2. chicdog

    Get user login info from CAC

    The user will insert his/her smart card and enter their pin number. The application will the get the userid and compare it to the entry in the database to get permissions.
  3. chicdog

    Get user login info from CAC

    Is there a way to get login information from a CAC card in VS2003?
  4. chicdog

    Populate DropDownList in DetailsView from database

    I had something similar but i was using a Gridview. In the code behind I had to put the function that my dropdownlist was bound to in the RowEditing procedure along with the function I used to bind the Gridview with.
  5. chicdog

    Getting Object reference not set to an instance of an object.

    I'm having a problem with my code. My users occasionaly get Object reference not set to an instance of an object. It occurs when the I try to get the results back for a stored procedure. I'm at a loss as to what to change. FYI MyReader & MyCmd are declared in a global modual Here's the stack...
  6. chicdog

    Add ALT tag to datagrid

    Thanks, that helped a great deal.
  7. chicdog

    Add ALT tag to datagrid

    Is there a way to add an ALT tag to the following bit of code in a data grid to make it 508 compliant? <EditItemTemplate> <asp:TextBox ID="txtEdit_Description" Width="289px" Text='<%# Container.DataItem("Description") %>' Runat="server" /> <EditItemTemplate>
  8. chicdog

    Using Predefined Execl Reports in ASP.Net

    I have several reports that are done in Excel on a user's desktop and the emailed to specified recipients. The reports are predefined so I have code that will fill them with data. I would like to add this functionality to the intranet program and allow the users to create the report themselves...
  9. chicdog

    Opening VB Program

    I see what you mean. Am I close on how the command shell would look? Aslo I currently have the program on a seperate machine from the SQL Server, do I need to anything to the code below? xp_cmdshell 'programname.exe'
  10. chicdog

    Opening VB Program

    Currently I have a VB program that checks our database to see if data for a location has been downloaded every 10 seconds. It then creates a spreadsheet then goes back to checking every 10 seconds. Is there a way for SQL to start the process of creating the report?
  11. chicdog

    Using Excel in VB 6

    I have a program that creates Excel spreadsheets for users. Do I need to have Excel on the machine in order to run it successfully when it's included in the program's package?
  12. chicdog

    Check for Locked Directory

    My program uses PKZIP to zip images to a file on our server. The problem I'm facing is that when one machine strats to zip its images the other does the same and the second one gets locked out and fails. Is there a way to check to see if the directory being used to store the image is free to...
  13. chicdog

    Get Counts between two dates

    I have a report that uses a cross tab that gives me the counts for each arrival date. What I need is if Joe Smith arrives on June 22nd and departs the 25th I need to show it in the count for the 23rd & 24th. Is it possible to have a range of dates and show the proper counts for each day. An...
  14. chicdog

    Use user's version of excel

    Thanks John for pointing me in the right direction I believe that will work.
  15. chicdog

    Use user's version of excel

    My problem is that in my program I export data to excel and the user has a different version than I do. Run-time error '374': Failed to activate control 'VB.UserControl'. This control may be incompatible with your application. Make sure you are using the version of the control that was...

Part and Inventory Search

Back
Top