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 strongm 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. stahorse1

    Flat File Connection Manager

    Hi, I have a file directory path were I get a csv file per day, with current date. I have set up Flat File Connection manager that uses expression to access that location. When I execute I get an error that it cannot open datafile. The problem is, my path doesn't include the filename itself...
  2. stahorse1

    SSRS Column width size

    Hi I have to make the width of the columns of the table must allow for the maximum number of digits (10 billion) as well as for a negative, and I have no idea how to go about that. Please help.
  3. stahorse1

    SSRS format

    I have an expression =(Fields!Guaranteed_Value.Value) which gets me a value 456.98, I want to get R456.98, I tried this expression ="R"+(Fields!Guaranteed_Value.Value) but I an error. help.
  4. stahorse1

    ssrs watermark VS 2005

    Hi I'm new to SSRS and I'm given this problem, I'm creating a report in VS 2005. In my Dataset I have a field that returns either N or Y, if it returned Y it means that the report is in error and the .pdf should be created with the error watermark. I'm still reading up on watermark, please help.
  5. stahorse1

    DatePicker MaxDate

    I have a DatePicker, and on properties I have set max date to today. the problem with this is that next day my max date is the previous date. please help
  6. stahorse1

    Validating Date

    When I step through my code I still get DTPicker1.Value to be in this format, dd/mm/yyyy
  7. stahorse1

    Date Picker Format

    On the Datepicker properties, I Changed Format: to 3-dtpCustom and CustomFormat: to "yyymmdd", but the value I get it's still on dd/mm/yyyy format, please help
  8. stahorse1

    Validating Date

    I have choose datepicker, but I have problem with CustomFormat of properties, I set it to yyyymmdd but it doesn't seem to be working, any advise on that, cause I need that format
  9. stahorse1

    Validating Date

    I've entered 20140101 as a date and it accepted it. it didn't throw a MsgBox "You can not enter future dates" with this code: If IsDate(mskEffDate.Text) Then dte = CDate(mskEffDate.Text) If dte > Date Then MsgBox "You can not enter future dates" Else ValidateEffDate...
  10. stahorse1

    Validating Date

    Hi I have this code below, validating the date. so far it's just validating the date. I'm accepting a data from the user and I want to throw error also when they put future date, be it on the month or a year, please help. If (Mid(mskEffDate.Text, 1, 4) >= "1900" And _...
  11. stahorse1

    VB6 Date Validation

    Hi I'm using maskEdBox to accept date from the user in this format yyyymmdd, Now I want to validate this date to be a valid date, (i.e the user might input 1234/12/12), and also the date shouldn't be any future date, either with a month or a year, max date should be the current date. please help.

Part and Inventory Search

Back
Top