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 wOOdy-Soft 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 dbsquared

  1. dbsquared

    Carriage return characters and strings...

    You could also just strip out the chr(13)from your string when are retrieving the data from the textbox dim tempstring as string = textbox.text.replace(chr(13),"") or something like that as i haven't tested it out yet. To go where no programmer has gone before.
  2. dbsquared

    HOW TO CREATE A MENU IN ASP.NET WITH C#?

    not to fix your issue here but why not use a sitemap? To go where no programmer has gone before.
  3. dbsquared

    Help with Network path not found

    worked like a charm thanks a bunch tsuji To go where no programmer has gone before.
  4. dbsquared

    Help with Network path not found

    Thank you for your response. I have tried the %20 and I still get the same error. DO you have any other suggestions? Thanks To go where no programmer has gone before.
  5. dbsquared

    Help with Network path not found

    I have a simple JavaScript that is causing me headaches. Here is the code <script language="javascript" type="text/javascript"> function RunProg(CommandLine) { var ws = new ActiveXObject("WScript.Shell"); ws.run(CommandLine,1,false); return; }...
  6. dbsquared

    ascx page ddl control causing postback in holder

    asp.net On this page there are links to add AJAX and many intuitive videos to get you started. To go where no programmer has gone before.
  7. dbsquared

    [b]Time format hh:mm:ss[/b]

    that would be my choice, or for more sophistication you could use an ajax calander control with an ajax extender. To go where no programmer has gone before.
  8. dbsquared

    simple question about placing controls beside each other

    When you run the webpage does it render correctly? If it does then you are seeing what I consider a small design flaw within the visual studio environment. it is just a visual effect of the designer. You can force it to layout correctly using tables (I do) but you don't have too if you don't...
  9. dbsquared

    Reading an Excel file

    Since you are loading the data onto your server for reporting then you can normalize the data any way you wish. So using the office objects or xml xls reader or whatever you choose from that point is up to you. The end user will not know what you have used to read and manipulate thier data...
  10. dbsquared

    Reading an Excel file

    You could export your file to csv that way when the user opens it it comes in excel, then you can just use a streamreader to input the data. To go where no programmer has gone before.
  11. dbsquared

    Reading an Excel file

    1) give the user a browse box to find the file 2) use the Office objects and open it as a file then you can go to sheet(0) or what ever. 3) wont matter with the office objects too much 2007 introduces a few quirks but that will have to be handled as they appear. To go where no programmer has...
  12. dbsquared

    Making changes to a .NET web site.

    You have to copy the changed aspx pages and the bin directory after you have built the website, if your using VS 2005. I usually copy my app_code directory as well as that is where I put my class code. To go where no programmer has gone before.
  13. dbsquared

    .NET framework

    you could also use impersonation. google it or look it up here for info. To go where no programmer has gone before.
  14. dbsquared

    Help with Sql statement in VB.Net..

    Use the Sum() in you select statement you can Google it to get examples. To go where no programmer has gone before.
  15. dbsquared

    Calculate VAT without doing a PostBack

    you could also put it into a update panel so that everything doesn't get posted back and do your calculation as normal. To go where no programmer has gone before.

Part and Inventory Search

Back
Top