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 Chriss Miller 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. 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.
  16. dbsquared

    Validators odd behavior

    I have another issue now. If i have controls in the panels that need to validate what is in the current panel, when I press the button to say submit the form I am thrown the errors again when they are pressed. This only seems to be with the validators that I am doing on extended textboxes...
  17. dbsquared

    Validators odd behavior

    thank you that simple change has fixed the issue for all the validator types. This is more of an annoyance than anything. Thank you again. To go where no programmer has gone before.
  18. dbsquared

    Validators odd behavior

    You are correct the first one I used was the extender in the ajax control toolkit from asp.net. I diabled this one. Then I used a standard Compare validator and got the same behavior. To go where no programmer has gone before.
  19. dbsquared

    Validators odd behavior

    I have found an odd behavior from Validators and maskededitvalidators. what I startted with is views and one view in particular had validators on it to test ffor dates within a text box and empty is valid. However as I switched views I was getting the message error on page. I started with the...
  20. dbsquared

    Thoughts on MasterPages

    I would like to get some feedback about using masterpages on my website. One thing I have noticed is that it takes a lot longer to build the website with the masterpage design in one of my projects. Questions I have is: Should I change all my projects to use master pages? Will masterpages slow...

Part and Inventory Search

Back
Top