Jump to content
Xtreme .Net Talk

Robby

Moderators
  • Posts

    3848
  • Joined

  • Last visited

Everything posted by Robby

  1. Just to mention; don't confuse the pre-reqs for the IDE with Pre-reqs for the Framework. I think one of the links mentions JET, MDAC, etc...
  2. Read this... http://www.xtremedotnettalk.com/showthread.php?t=69454
  3. That's exactly how you should do it, you can have a class member dataset that you keep within the scope of your form. It looks like your dsStockCode is already a member of your page, right?
  4. Were playing AVIs the start of your problems?
  5. It sounds like a virus or something, do you recognise all the proccesses running in the box? Also, are there any extra services running?
  6. End-users do not need all that you listed, read the following: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetdep/html/vsredistdeploy.asp http://www.microsoft.com/downloads/details.aspx?familyid=262d25e3-f589-4842-8157-034d1e7cf3a3&displaylang=en http://support.microsoft.com/default.aspx?scid=kb;en-us;324733
  7. Don't use Request.Form to retreive values from a previous page, create properties or use the querystring.....here's a sample http://www.xtremedotnettalk.com/showthread.php?t=78434
  8. You can use the PrimaryKey of your DataTable. Reason is probably that the web version cannot really bind to its source as a desktop grid.
  9. Here are a few parameters... toolbar=yes, location=yes, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=no, copyhistory=yes, width=400, height=400, top=100,left=100
  10. get a second line with the backslash and n ie... "First line\nSecond line" The reason your page is disappearing is that it's rendering the client message then doing a postback to the server. Also if you want to ask the user for confirmation... var name = confirm("Press a button") if (name == true) document.write("You pressed OK") else document.write("You pressed Cancel")
  11. An easy one ... http://support.microsoft.com/default.aspx?scid=kb;en-us;Q300951&ID=kb;en-us;Q300951&SD=MSDN
  12. You can place a Reset button on the form BUT the problem with that is if you change a textbox's value during postback the reset will consider that new value as the default value. ie... First time you load a page.... text1.Text = "" On postback you cahnge the value because of some condition on the server... text1.Text = "Hello" Clicking the Reset button now will set text1's value to "Hello" Long story short, use tate's method above.
  13. Try setting pooling=false in your conn string
  14. TextMode = MultiLine Then you can do this.... TextBox1.Text = "This is the first paragraph." & ControlChars.NewLine & "And this should be the second!"
  15. I'm not sure that I understand. Clicking a button that posts back to the server is in a sense refreshing the page.
  16. As I stated in my PM, I understand that your intent is not to be malicious in any way but we cannot continue this conversation in public. If someone wants to provide help to Arch4ngel then send him a PM. http://www.xtremedotnettalk.com/private.php?do=newpm&userid=34166 Thank you.
  17. To Sql Server? If so, you can Import from Access to Sql Server with a few clicks.
  18. Yes the value, it must be a string value of the field name.
  19. what is the value of Table.ReqNum?
  20. Is AutoPostBack = True?
  21. You need to give an ID to your controls, otherwise they will be named automaticaly
  22. Either use the column names as part of your Select statement instead of using "Select * From" Or add the BoundColumns to the Columns Collection
  23. The linkButton has server events and the hyperlink does not. You need to use Javascript for the popup window eitherway so it will be done on the client. The way to do it is add an OnClick to the control (hyperlink) to use window.open('myPage.aspx') Some JS samples http://www.w3schools.com/js/tryit.asp?filename=tryjs_placenewwindow and http://www.w3schools.com/js/js_examples.asp
  24. place the UC in a Panel, then you can control the state of the panel.
×
×
  • Create New...