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 Mike Lewis 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. gashcud

    ASP Net Validation

    I have a webform that holds several TextBox Controls, RequiredFieldValidators and a button. When I click the button the form is validated and if it is invalid a message box pops up. My question however: is there a way to execute code, after the button click event but before the message box pops...
  2. gashcud

    CRAXDRT Error Occurred on Server. 507 : An exception occurred

    I found the following post from July 29 2003 and I am having the same problem. Unfortunately there haven't been any replies and crstal decision do not have any documemts referring to this error. So maybe there is someone out there who can help. thx Gashcud I use Crystal 8 professional edition...
  3. gashcud

    CRAXDRT Error Occurred on Server. 507

    I found the following post from July 29 2003 and I am having the same problem. Unfortunately there haven't been any replies and crstal decision do not have any documemts referring to this error. So may there is someone out there who can help thx Gashcud I use Crystal 8 professional edition...
  4. gashcud

    Writing to the parallel port

    check out this: http://www.codeproject.com/csharp/csppleds.asp#xx614717xx hope it helps Gash
  5. gashcud

    Need help with windows form

    you could just store them in public static fields public class MyForm : Forms { public static pwd = "MyPassword"; public static user = "MyUsername"; // some other code } and o the new form zou simply say: string pwd = MyForm.pwd; srring user = MyForm.user; yrs...
  6. gashcud

    SQL exclusive Join?

    thanks guys, the "where null" thing did the job for me yrs gashcud
  7. gashcud

    Empty String ?

    i know this is quite late, and i m sure you figured it out yourself in the meantime. the prob is, that a static field does not call the constructor, thus the initialization wont take place
  8. gashcud

    SQL exclusive Join?

    Hi, i have a silly question and i'm sure the answer is just too simple. i have two tables with primary key and forign key, what i want to achieve is to get all the rows back where there are no matches. e.g. Table 1 Table 2 Name ID Company ID John 1...
  9. gashcud

    SQLQueryString ORDER BY Problem!!!

    When I look at the SQL Server's Current Activity, I can only view the first 255 bytes of the SQL String (but the 255 bytes seem to be ok)
  10. gashcud

    SQLQueryString ORDER BY Problem!!!

    this is the SQL string that is passed to the DB, but how can I find out if it makes it to the db SELECT vwKalkulationsvorschau.ANB_PROJEKT_NAME, vwKalkulationsvorschau.ANB_BBR, vwKalkulationsvorschau.ANB_ART, vwKalkulationsvorschau.ANB_EINGANG_DT, vwKalkulationsvorschau.ANB_ABGABE_ORT...
  11. gashcud

    SQLQueryString ORDER BY Problem!!!

    Hi, I'm creating a report that should be displayed on an ASP Page. I want to pass an SQL string to the report which has an ORDER BY clause. I checked the SQL string in SQL-Server Query Analyzer and it worked fine. However when I pass it to the rport's SQLQueryString property the report...
  12. gashcud

    A4 Format Problem

    Sorry to bother you, but I'm a complete newbie to CR 8. However I was asked to the designe a CR which is used by an ASP Page to disply the Report. Whenever I try to print out the Report I have to change the printers setting, because the report trys to print in an US-Format. As I'm here in...

Part and Inventory Search

Back
Top