Jump to content
Xtreme .Net Talk

Robby

Moderators
  • Posts

    3848
  • Joined

  • Last visited

Everything posted by Robby

  1. How are you populating your grid? (ie dataset, dataview...) Here's one way... http://www.aspfree.com/articles/519,1/articles.aspx
  2. The only solution that I can think of is referencing MS Word, keep in mind that the end users need Word installed on their machine. If you want to go that route, let us know.
  3. check this out... http://samples.gotdotnet.com/quickstart/winforms/ look under: Databinding in Windows Forms
  4. datagrid.ShowHeader =False Or do something similar in the designer (property builder)
  5. I'm just to busy too upgrade or install anything on my various partitions. If I upgrade one I need to do all of them.
  6. Did you create a client-side function to be used by the custom validator?
  7. that control is client side only, use a linkbutton instead
  8. First you need to set premco as a Subweb, either through Frontpage extensions or the website's control panel, then set the permissions for it to have the user ASPNET to have full control. If the control panel of the host does not allow this then open a ticket and they'll take care of it for you.
  9. You need to create a client side script to handle this ( cvRiders)
  10. Mine works fine in 1.0
  11. You would have to pass a reference of the page or create a base class and let your client pages inherit from it.
  12. One way is to open it in Crystal Reports. (this may not be a viable solution if you're deploying the application though)
  13. You can use this method from .NET.... http://www.visualbasicforum.com/showthread.php?threadid=41012
  14. Is it possible that it's cached in memory?
  15. What is the value of 'm_check.DataItem(2).Text' when you trace it?
  16. try this... (I'm quoting from your post by the way)
  17. Create a new project within a new solution then. (Forget about your existing one at the moment) I'm curious to see how or if a new solution will run.
  18. Humor me, Create a new web project and see if it runs.
  19. Is this a new project you created or from someone else?
  20. Please check my first post in this thread.
  21. Robby

    If Or

    Yes they are both faster because they only evaluate until the condition is not met.
  22. Robby

    If Or

    As well you can use the new AndAlso. It behaves somewhat like OrElse, if the first condition is false it stops evaluating.
  23. Use a Radio Button Instead
  24. What are the two fields called in table? Are they 'name' and 'ID' ? If so, then just do this... With ComboBox1 .DataSource = dvp .DisplayMember = "name" .ValueMember = "ID" end with
  25. I'm also still waiting for other members to share links to the free ones. :):):)
×
×
  • Create New...