Jump to content
Xtreme .Net Talk

PlausiblyDamp

Administrators
  • Posts

    7016
  • Joined

  • Last visited

Everything posted by PlausiblyDamp

  1. You would get an unhandled exception in your catch block you are just re-throwing it. You should be handling the error there.
  2. http://www.xtremedotnettalk.com/showthread.php?s=&threadid=81944&highlight=aspnetregiis
  3. What database are you using? What is the datatype for the field on the database
  4. at a guess - Graphics Card
  5. http://www.xtremedotnettalk.com/showthread.php?s=&threadid=82946&highlight=open+close+form http://www.xtremedotnettalk.com/showthread.php?s=&threadid=74805&highlight=open+close+form
  6. select * from information_schema.tables where table_type ='BASE TABLE'
  7. services.exe is the generic windows exe that hosts a lot of OS related services - definately required. aspnet_wp.exe is the service that provides asp.net functionality to IIS so is required if asp.Net is in use.
  8. What telnet client are you using? A mail server can't disable the telnet from accepting keystrokes. If you are using the windows 2000 / XP client you may need to get it to echo characters locally type telnet and when the prompt appears enter SET LOCAL_ECHO and try again
  9. you may want to have a look at the following sample from our code library http://www.xtremedotnettalk.com/showthread.php?s=&threadid=78721
  10. What does the variable Decrypt look like if you step through the code? Is it being built up correctly? Also there is a lot of VB6 code in there - you might be better of looking at classes under System.IO and System.Security.Cryptography for this kind of thing.
  11. Public Class D3DGraphicsClass Public alex As New clsSprite() End Class Public Class clsSprite Inherits D3DGraphicsClass End Class 'aand finally form1's declarations: Dim Game As New D3DGraphicsClass( clsSprite inherits D3DGraphicsClass - every time you create a clsSprite it calls the D3DGraphicsClass new method - and in it's new method you are creating a new sprite etc. Is there a reason why you are doing it this way?
  12. sorry missed that bit server=SERVERNAME
  13. .aspx, .ascx, .asmx, web.config, \bin, global.asax plus any images,asp and html pages
  14. myString.SubString(mystring.length-2,1) should do it
  15. ...and you are telling us this for a reason?
  16. http://xmlfox.com/CSsamples.htm may have some useful samples for you
  17. By and large VB.Net and C# are very similar - although C# does have a more 'c' like syntax plus a few extra C++ features (operator overloading being the only one that sprinigs to mind). C++ is still going to have a major role in the industry as it is still a dominant language and there is an enourmous amount of code written in C/C++ that will need to be supported. It is however a harder language than VB / C# - you will need to evaluate how much time you want to spend learning a language in regards to the possible benefits. Learning C# will get the general syntax of C/ C++ familiar and may be a good stepping stone into the world of C++.
  18. You will need to assign a valid SwitchClass object to each of the array elements before you can access them.
  19. return (also works in VB.Net)
  20. What kind of file .vb , .cs , .h, an asp include? If it is a standard code file you can right click on you project and select add existing item, browse to the file you want and click the arrow next to the open button and select link file. It may be worth considering compiling the file into a DLL and referencing the DLL from the other projects though
  21. If frmMain isn't a form but a module is there any code in it's Show method?
  22. Could you explain how the dates are converted inito those numbers? n
  23. Couldn't you pass in the max value for contor as a parameter and hide the label when it's reached?
  24. Public Function insertNewDataPerformanceMeasures(ByVal sender As System.Object, ByVal e As System.EventArgs) As clPerfGroupMeasures Is there a reason for thee sender and parameters? they are normally associated with an event handler rather than a functioin / sub. If you delete them from the definition things should work okay...
×
×
  • Create New...