Jump to content
Xtreme .Net Talk

Robby

Moderators
  • Posts

    3848
  • Joined

  • Last visited

Everything posted by Robby

  1. Instead, place a public function in your code behind to eval the status, if true return the description.
  2. What are you asking?
  3. Ok, I understand what you mean now. I've seen this happen before, I can't remember the cause though. Does this occur with any web control?
  4. You can overload the constructor of form 2 and pass them during decalration... Dim Form2 As New SecondForm ( somearg1,somearg2) Or you can create some properties in form 2, set their values while in form 1.
  5. Back to your question, is this a custom control that you created?
  6. Since it's a question on ASP.NET I moved it to said board. By the way, most posts on this site are 'doubts'. Good luck.
  7. This should help http://support.microsoft.com/default.aspx?scid=kb;en-us;326502
  8. This board is for Suggestions pertaining to the forum not your code. Is this what you ment?
  9. You need to create a custom control type project
  10. Check out this link ... http://samples.gotdotnet.com/QuickStart/aspplus/default.aspx?url=/quickstart/aspplus/doc/webdataaccess.aspx
  11. What type of project did you create in order to make this control?
  12. Can you post the relevant code
  13. Is the ClientValidationFunction on the clent side or server?
  14. All I see in SE is SQL tables. Are you trying to delete from the 'database connection' section or from the 'server section' ?
  15. something like this.. TextBox1.Text = TextBox1.Text.Replace("SomeWord", "Rocks")
  16. I would either split them into multiple pages or multiple panels within one page making it look like a wizard of sorts
  17. First thing is place Option Strict On and Option Explicit On at the top of each code page. Then remove all the quotes surrounding True and False values.
  18. My solution Explorer allows deletion of tables.
  19. When you place a ButtonColumn you can allow a user to select the row.... <asp:ButtonColumn Text="Select" CommandName="Select"></asp:ButtonColumn> 'You can also set style properties to selected rows <SelectedItemStyle BackColor="Red"> </SelectedItemStyle>
  20. When you enable row selection (by adding a ButtonColumn "Select") then it should fire when the user selects a row.
  21. Use an ExecuteNonQuery() with a statement like... sSql = "Insert into Records ......"
  22. Well looking at the error message it states that access to "current.wbd" is denied. Is the file open? And have placed your code in a Try/Catch block?
  23. It's advisable to never use Modules, create classes to churn out instances of the objects or declare them at the form level.
  24. I would put it in the business layer, because the data layer shouldn't know specific rules on how to handle the data and the presentation shouldn't know anything regarding data or its' rules.
  25. Are the labels and textboxes in a container like groupbox or panel? If so, you need to iterate those containers.
×
×
  • Create New...