Search results for query: *

  1. asnider

    global constant

    You can add a module to your project and define public functions within the module that can be called by any form: you can also instantiate global variables in modules: Module basGlobals Public gstrCCId As String Public Function MyFunction End Function End Module In this case you would...
  2. asnider

    Question Use a form again and again

    you can create a baseform with the desired layout and then inherit from it.....have you looked into that?
  3. asnider

    Vs.netinstallation

    i have kept the express edition installed and then installed the professional version over them in both 2005 and 2008 without any problems.......why do you recommend uninstalling the express edition?
  4. asnider

    Code Around Needed

    not that i know of. seems to me that you have a pretty good solution though....
  5. asnider

    Installation Issue - Vb2008

    Too many improvements to list in any reasonable amount of time. LINQ is a huge plus, WCF, WPR, not to mention the improvements with the table adapters. My favorite is the clickonce signing fix, where it won't error out after one year (if you use clickonce you know what i mean!). anyway, if you...
  6. asnider

    Vs.netinstallation

    I'm guessing you mean, visual studio 2005 express was installed with sql server 2005 and now you want to install visual studio 2005 professional (or standard)??? if that's the case, no you don't have to uninstall the express edition before installing the professional edition.....it will creates...
  7. asnider

    VS 2005 vs. VS 2008

    I currently have VS2005 and VS2008 installed on my computer (XP) and I have not experienced any problems. The earlier poster was correct in saying you can still use .net 2.0 from VS2008, which is a huge plus! VS2008 has so many improvements though, it doesn't make a lot of sense developing in...
  8. asnider

    Weird TabControl Behavior

    I created an inherited textbox control that overrides the OnPaint event so that the textbox is not greyed out when disabled. My code is below. When I place this inherited textbox on a tabcontrol, it works well as long as it is on the first tab page. If I place it on any other tab page, the font...
Back
Top