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: chicdog
  • Content: Threads
  • Order by date
  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

    Is there a way to get login information from a CAC card in VS2003?
  3. 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...
  4. 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>
  5. 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...
  6. 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?
  7. 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?
  8. 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...
  9. 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...
  10. 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...
  11. chicdog

    Uploading Image to Server Problem

    I've got the upload part done, but the problem I have is that the image must be in a bitmap form. What happens is that when the user has the image they want to use it's converted into a Bitmap. When I run it on my PC it's fine but when I run it off the server it gives me an error that the file...
  12. chicdog

    Line up textboxes

    I was wondering if it's possible to have all of my textboxes line up (ie Align left) like when using grid layout but in flow layout?
  13. chicdog

    Have multiple web programs open

    Is it possible to start and run multiple web apps at once. What I'd like to have is if a user is in one web app when they click on the shortcut of another it'll open a new instance of IE, is this possible?
  14. chicdog

    Get color palette

    I want the user to be able to change the color of specified text. Is it possible to display a color palette and how do I bring back that choice?
  15. chicdog

    Problem with pushbutton in datagrid

    I'm trying to void a record in a data grid. I've tried to use the 'dgFunctions.DataKeys(e.Item.ItemIndex)' but it is not set because I dymanically fill the datagrid in code and do not use Datakeys. I do set the key in a hyperlink column to link the infomation on another page. Is there a way to...
  16. chicdog

    Set two variables to receive SELECT results

    Is it possible to set two variables to receive the result of a Select statement knowing that there will be ONLY one row returning. SET @Var1, @Var2 = (Select A,B From tblTable Where Key=3) Thanks, Bryan
  17. chicdog

    Open folder on clients PC

    Is it possible to open a specific folder on the clients PC through a ASP.net program? I need to access the clipart folder to allow the user to select a border for a report. Chikey
  18. chicdog

    Union problem

    I keep getting the error 'Incorrect syntax near the keyword 'UNION'. What I'm trying to do is do an Union between two result sets. (FYI The SELECT Statements match) SET @WhereClause ='AND (dbo.tblAttendEvent.EventKey IN (' + @WhereClause + '))' DECLARE @SQL Varchar(3000) SET @SQL='SELECT...
  19. chicdog

    Insert blank line into rich text formula

    Is it possible to enter a blank line into a rich text formula? Here's my formula, what it does is it make the word before the ':' bold. dim InputField as string IF ISNULL({stpFunctionWorksheet;1.Decor}) or {stpFunctionWorksheet;1.Decor}=&quot;&quot; THEN else InputField=&quot;DÉCOR...
  20. chicdog

    Better way to do Sum on multiple rows??

    Is there a better than using a cursor to move through a record set? What I need to do is in order to get the total cost for a customer's hotel room cost when he/she has booked two or more rooms for our convention. DECLARE RoomTotalCursor CURSOR FOR SELECT CONVERT(money...

Part and Inventory Search

Back
Top