Jump to content
Xtreme .Net Talk

mutant

*Experts*
  • Posts

    1922
  • Joined

  • Last visited

Everything posted by mutant

  1. bCrlf will not lower your app's performance. http://www.zdnet.com.au/builder/dotnet/story/0,2000042147,20269716,00.htm Quote from this website:
  2. There is no real difference, except that vbCrlf is not a .net framework object. You will get the same thing no matter which one you use.
  3. You would have to use if...elseif for that. You can however use SelectCase to return a boollean about the object: Select Case TypeOf r Is String Case true 'is a string Case false 'is not a string End Select
  4. Yes and yes.
  5. As you are saying that you try examples from DX book I assume your making game, which will make me assume you want to use directional buttons :) KeyPress does not trap keys like directional keys.
  6. Use Convert.ToChar(theasciinumberhere), this will return a character that the number stands for.
  7. mutant

    Validation

    Look into the RegularExpressonValidator control. You only have to type in the pattern that it will accept and it do all validating for you.
  8. mutant

    Help: buttons

    There can be only one serverside form on an ASP.NET page. Unless you are using normal html forms. Are hitting enter to submit the form?
  9. From my observations it looks like the button keeps getting focus to itself, to see what im saying put the button on the form and set Enabled to false, now you will be able to catch form KeyDown.
  10. That works fine for me. What are you doing the the keydown event?
  11. mutant

    Getting Started

    You dont need anything except .NET framework installed on your server, IIS, and ASP.NET enabled. This page has steps to install ASP.NET on your server. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconaspnetplatformrequirements.asp
  12. Opps. Sorry forgot the attachment :)
  13. F stands for Floating point.
  14. I dont know if this will help you a lot :) Now you have to press right slightly before space, almost the same time :) and mario will now not be able to move while jumping so if you jump right you go right until you get to ground :)
  15. "PrinterNet" or "Printernet", I dont know but if i say it those sound different becuase Net seems like a new word, and other one just looks like a normal chain of letters without capitalised letter which would could make a new word, but who knows maybe its my accent :)
  16. First bullet of the list on that page :) http://www.xtremedotnettalk.com/showthread.php?s=&threadid=49561
  17. mutant

    Advice!?

    Every asp.net page is created with either VB.NET, C# or JScript.NET or some other .net framework compatibile language if they support it. So there is plenty of examples :)
  18. Its a newline constant. It puts a new line in whatever you use it in that can have it.
  19. That makes a great name if its pronounced like "internet" :)
  20. Im not sure what you need but you can try this. Go through every textbox and check its name to see if it matches something. Dim txt as TextBox For each txt in Me.Controls if txt.Name = something then 'do something end if next Again, im not sure what you want so this might not help :)
  21. DId you declare any of the classes or objects from the DLL?
  22. I just looked through the sample chapter, it was intresting :) And you say its good, I think ill buy it :).
  23. Use this: If e.KeyCode = Keys.Escape Then
  24. Look into this page. It explains how to call APIs in .NET http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcn7/html/vaconCallingWindowsAPIs.asp
  25. Its not good to declare as Object but if you used as Any you have to use Object as it can represent anything.
×
×
  • Create New...