CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: MattBerry

Search: Search took 0.07 seconds.

  1. Replies
    12
    Views
    1,333

    Re: Saving to a File

    Hi,

    I think this link will help, just use the Properties.Settings class.

    http://msdn.microsoft.com/en-us/library/aa730869(VS.80).aspx

    Hope this helps.
  2. Replies
    1
    Views
    4,312

    Re: uninstalling ClickOnce application

    Hi,

    I think you would want to look at System.Configuration.Install.AssemblyInstaller to uninstall an application via code.

    Hope this helps
  3. Thread: Mvc

    by MattBerry
    Replies
    3
    Views
    676

    Re: Mvc

    Thanks for the reply, and as a coder myself I can see an advantage to be removed from the design side, and I am aware of the testing side but have not looked into it. I am not sure if testing...
  4. Thread: Mvc

    by MattBerry
    Replies
    3
    Views
    676

    Mvc

    Hi Guys,

    I have been looking at MVC for a few days now and still haven't come to a conclusion of why on earth anyone would ever want to use it! When you look at the richness of WebForms in...
  5. Replies
    5
    Views
    1,040

    Re: How to store text between two words?

    I would probably rethink how this file gets written if you can and change it to a xml format
    ie
    <system1>some text here</system1>
    Then you can use LINQ to access it, or XMLReaders
  6. Replies
    3
    Views
    885

    Re: screen resolution

    Hi Simon,

    Seems a ridiculous situation doesn't it! Luckily it can be sorted out by going to Control Panel/Fonts and changing the font size to 100&#37;.

    Matt.
  7. Replies
    11
    Views
    2,595

    Re: Why is my Windows Service dying?

    If this is the only machine doing it and your not getting an error message, perhaps the cause of the problem is in the catch section. ie the eventlog is full, you could always write to a log file...
  8. Replies
    6
    Views
    4,715

    Re: AssemblyInstaller

    I forgot to mention that for this example project I create 2 folders a source and a destination. In the source I would put the ServiceTest and the WindowsServiceTest.

    Please help, I have tried all...
  9. Replies
    2
    Views
    783

    Re: Problems with resize

    Hi, the first thing that comes to mind is that the bitmap is maintaining proportions. Make sure you haven't got sizing uniform in the properties.
  10. Replies
    6
    Views
    4,715

    Re: AssemblyInstaller

    Thanks for replying you guys, I have made sure I have stopped the service and I have attached a test solution which does exactly the same thing.

    Any continued help would be great.
  11. Replies
    6
    Views
    4,715

    Re: AssemblyInstaller

    Thanks very much for replying.

    The method that calls the forementioned one is as follows but I cannot see that there would be any locks:

    private void recursiveCopy(string dirSource,...
  12. Replies
    6
    Views
    4,715

    AssemblyInstaller

    Guys I hope you can help me as this is driving me mad.
    I have written an installer. This installer installs a service.
    If I release an upgrade to my app, the installer is meant to overwrite the...
  13. Replies
    2
    Views
    844

    Re: Widescreen issues

    Yes, I agree with you if a control is anchored to the right it should remain that distance from the right edge. The problem is it doesn't. It will be fine if I look at it on my computer, but if...
  14. Replies
    2
    Views
    844

    Widescreen issues

    I recently bought a nice shiney new laptop with widescreen 1080p. The problem is now when I compile the application and it is run on a non-widescreen monitor it displays incorrectly. In particular...
Results 1 to 14 of 14





Click Here to Expand Forum to Full Width

Featured