Search results for query: *

  1. Administrator

    Question Shared vs. Instanced Methods - impact on a Windows app?

    I'm curious of the impact of using shared (static) methods vs. instanced. Take for example I want to save a text file to the hard drive. I would use code such as Friend Shared Function WriteToDisk(byVal textData). It's simply easier than creating an instance of the class to access the method...
  2. Administrator

    MSDN Magazine - May 2008 Issue available

    http://blogs.msdn.com/msdnmagazine/archive/2008/05/16/8508638.aspx
  3. Administrator

    Question Creating an update application

    I love how Lutz Roeder's reflector checks if it's out of date, closes, downloads a new version, starts reflector again. Does anyone know how to go about this type of framework/pattern? There is a great framework for the MAC called Sparkle and I'd love to do something like this in Windows...
  4. Administrator

    DataGridView responsiveness when adding rows

    You could load your data in a dataset on a background thread (background worker) and then when done bind it to the grid and refresh. You may also want to use a higher performance grid such as the Developer Express XtraGrid.
  5. Administrator

    Forum Update - Please Read

    One of the new features we implemented with the vBulletin update are Thread Prefixes. You can set a prefix such as "Question" and later come back and edit the thread title to change Question to Answered. Don't forget to go back and update your thread prefixes!!!
  6. Administrator

    Question Testing

    Baaaaadaaabing
  7. Administrator

    Forum Update - Please Read

    Hello VB.NET'ers: The forums have just been upgraded to the latest version - vBulletin 3.7. This is a huge update and your browser probably cached old scripts so clear your browser's cache now by CTRL + F5 or clear it however you choose. We are learning the new features of vBulletin 3.7 and...
  8. Administrator

    Displaying a Form as TopMost but only TopMost to the app, not everything

    No, can't use the built-in functionality due to a custom login/authentication system. I rewired it using the owner property in a .Show method, thanks for the tip, that seems to be working.
  9. Administrator

    Graphics Programming with GDI+

    Graphics programming with GDI+ (the title is NOT "Game programming..."). There is a lot more to GDI+ than what you're thinking, read the table of contents on a resource such as Amazon.com.
  10. Administrator

    Displaying a Form as TopMost but only TopMost to the app, not everything

    I show a splash on startup and need to make sure the splash is always top most so I have the TopMost property set to true. The problem is this "TopMost" property is in "Windows" and not just the application. My customers don't like that they may launch my app, go to check e-mail and yet the...
  11. Administrator

    Tell a running application to close?

    Thanks! I'll see if I can figure something out along the path you suggest.
  12. Administrator

    C# guy driven crazy by what happens in VB when I press "ENTER"

    David, I think this issue you're talking about is actually a new way intellisense works in VS 2008, not a VB specific issue although I haven't tried it in C#. I do know that intellisense works differently in VB 2008 vice earlier versions, I think...
  13. Administrator

    Tell a running application to close?

    I have an EXE running and then an update comes along. I have an update system, essentially another EXE that drives the MSI updater. During the update process I want to tell the main application to close. I don't want to kill the process, I want to have the application run its close chain such...
  14. Administrator

    Application.doevents memory leaks (please help!)

    It sounds like whatever code you have running in the background worker may in fact not be working properly. If you want to provide more code for review I can help better, but without seeing more it's too hard to help you with this.
  15. Administrator

    Building Standalone Exe.

    You only get a setup.exe if you add a setup project to your solution. For the specific project you are building you can select DEBUG or RELEASE mode and then click the Build menu to build the project. You can right-click the project in the Solution Explorer and build it from there as well...
  16. Administrator

    How to determine which web method...

    Web method is the same as any other method, it's called only when you deliberately call it. Just like you call MyCode.DoSomething you also call My.WebServices.MethodName, or however you call the method from your proxy.
  17. Administrator

    Application.doevents memory leaks (please help!)

    Try putting a Thread.Sleep(250) before or after the DoEvents call.
  18. Administrator

    Extending the My Namespace

    A great article to help make your coding easier!
Back
Top