Jump to content
Xtreme .Net Talk

Threads

Avatar/Signature
  • Posts

    66
  • Joined

  • Last visited

Personal Information

  • Occupation
    Programmer / Technical Lead / Student
  • Visual Studio .NET Version
    Visual Studio.NET 2003 Enterprise Architect
  • .NET Preferred Language
    VB.NET, C#

Threads's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Of course, the moment I post this, I find the correct link. http://msdn.microsoft.com/library/en-us/dnadvnet/html/vbnet07082003.asp?frame=true
  2. Updated Example I'm sorry, the link I posted was incorrect. Now I can't seem to find the proper article. However, I still have the source download from the article, which also includes a copy of it in a Word document. I have attached it here. vbUserSettings.zip
  3. Check out this example Here is a cool example that includes serialization of a class to save settings.... It also shows how to store it in multiple ways. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dv_vstechart/html/vbtchCreateYourOwnDynamicPropertiesPreservePropertySettingsInVisualBasicNET.asp
  4. Suggestion If you are going to be using a loop such as: Do Until intBlah = 3 Application.DoEvents() Loop [ In most cases, it would be good to add a System.Threading.Thread.CurrentThread.Sleep so that system utilization won't be so high. For example: Do Until intBlah = 3 Application.DoEvents() System.Threading.Thread.CurrentThread.Sleep(20) Loop If you compare the two code-snippets, you will notice that the CPU utilization for the 2nd one is significantly lower than the first. If you are waiting for user input or something similar without tons of other stuff processing on the same thread, there will be no noticable delay in responsiveness at all. Afterall, it is just 20 milliseconds.
  5. Ok, this may be a silly and stupid question, but I can't seem to find how to do it. I have a VB.NET Windows application that is often run with multiple instances on a Windows XP computer. Normally, the icons are side by side on the taskbar for Windows. However, when many applications are running, Windows XP starts grouping the applications under one level where you can click and reveal all the instances running. (exactly like it should, of course). The problem is that when it does this, the title of the grouping is blank. So I see the icon set for the whole application, but then the title is blank in the taskbar. When I click the group, it reveals all the instances with the proper window names. I have changed the AssemblyTitle and AssemblyProduct in the AssemblyInfo.vb file, but these still seem to have no effect when the instances are grouped by Windows XP on the taskbar. What am I missing here?
  6. No, you don't lose any features. It doesn't have the same "activation" scheme as Windows XP and other products do.
  7. You are going to need to use Request from the pages that need it and not from global.aspx. It isn't available from that context
  8. Very cool. I'll try out your site some to see the speed and all later from home. Just a glance at the features looks great. If I decide to go with them, I'll contact you first. There may be a way to get you referral credit or something. If anyone else has any other suggestions I am all ears (well eyes in this forum)
  9. Robby, is that where Bassic Software is hosted?
  10. True, you didn't say it was Academic. However, you later posted that "I wouldn't get get that, since it can't be upgraded". The MSDN licenses are the same whether you paid the Academic Price or the full price. And either can be "upgraded/renewed" at the same rate. Customers who qualify for the renewal/upgrade price include: Existing MSDN Universal, Enterprise, Professional, and Operating Systems subscribers Microsoft Visual tool users, version 5.0 or later Microsoft Certified Partners & Certified Trainers So really it is still cheaper and you are getting the same thing even if you do get Academic and both can be upgraded the same since they are MSDN.
  11. :-\
  12. MSDN Professional 7.0 Subscription $609.95 MSDN Universal 7.0 Subscription $789.95 Check out http://www.academicsuperstore.com/ and do a search for MSDN. They will even match other prices if you find someone cheaper. I've ordered from here before.
  13. Actually, I know for a fact MSDN Universal is $750 Academically priced. Some sites even list it for around $780.
  14. That is true, Volte. Or you could sign up for a yearly subscription to MSDN with it. You can even get a year of MSDN Universal for $750 (others are much less expensive). Still cheaper than some versions of them separately. :-\
  15. Sign up for a class at a local college and then get the Academic priced VS.NET Professional for $99. The funny thing is you would get the program cheaper than just going out and purchasing it even with all the extra costs of college included.
×
×
  • Create New...