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

Search:

Type: Posts; User: sclement

Page 1 of 4 1 2 3 4

Search: Search took 0.11 seconds.

  1. Replies
    0
    Views
    6,827

    wpf canvas resize

    Dear all

    I am slowly learning how to program wpf. One thing I am trying to do is plot a series of polylines on a canvas. I have gotton this far. However I would like the polylines to scale as I...
  2. Replies
    0
    Views
    1,096

    polyline binding

    Dear all

    I am slowly converting one of my apps to WPF, using model-view-presenter design pattern.

    One thing I am trying to replicate is the plotting of multiple polylines of different colors...
  3. Replies
    0
    Views
    1,840

    DataGridView defaultcellstyle

    Dear All

    I am using several DataGridView's in a VS 2008 c# project. I set the defaultcellstyle in the properties pane, inluding the fore and background colors.

    This seems to work ok...
  4. Replies
    4
    Views
    1,006

    Re: indexers and arrays

    Thanks for your help

    cheers

    simon
  5. Replies
    4
    Views
    1,006

    Re: indexers and arrays

    Thanks BigEd

    I changed my code so that the arrays were no longer exposed. I'd be curious to see an example using IList

    cheers

    simon
  6. Replies
    4
    Views
    1,006

    indexers and arrays

    Hi

    I have a class which has several members which are arrays of doubles. I am trying to figure out the best way to access these arrays.

    Is it best to use properties:

    private static...
  7. Replies
    2
    Views
    4,720

    fancy windows forms

    My boss at work, has asked me to make my 2 software products a bit easier on the eye, add some shading, fancy color schemes etc.

    This is somehting I have always struggled with. Has anybody got...
  8. Replies
    3
    Views
    884

    Re: screen resolution

    Hi Matt

    yes it was that pesky font size not being set to 100%. All working now

    cheers

    simon
  9. Replies
    3
    Views
    884

    screen resolution

    Dear All

    I've recently purchased a new laptop, with a different screen resolution (1920 x1080) to the one I do all my coding on at work (1680x1050). Ideally I would like to be able to transfer...
  10. Re: Convert Windows Application to Windows Control Library

    Hi Hannes

    I thought that might be the case, as I could find no references on conversion when I did a search. Oh well just means a bit more coding !

    cheers

    simon
  11. Convert Windows Application to Windows Control Library

    Dear All

    I have adapted a C# application (written in VS 2005) to run along side a VB6 app. At the moment the VB 6.0 app dictates when the c# application is run.

    Ideally what I would like to...
  12. Replies
    4
    Views
    10,501

    Re: Changing Assembly name at Build time

    Hi Boudino & Cilu

    thanks for the replies. I put some conditional statements in the assemblyinfo.cs. Like you state this changes the assembly title etc which is half of what I wanted to achieve. ...
  13. Replies
    4
    Views
    10,501

    Changing Assembly name at Build time

    Hi all

    I have an GUI application written in c# VS 2005. I want to be able to to modify the assembly name and other assembly information depending on the context in which the application is built....
  14. Replies
    2
    Views
    721

    Re: marshalling structure

    Hi Cilu

    I tried that as follows:

    [Serializable]
    public class FilterParams : MarshalByRefObject
    {
    public Int32 param1 = 0;
    public Int32 param2 = 0;
    ...
  15. Replies
    2
    Views
    721

    marshalling structure

    [VS 2005 , Vista]

    Hi

    I am having a bit of difficulty marshalling a structure which is the parameter in a unmanaged function call.

    The structure is

    [StructLayout(LayoutKind.Sequential,...
  16. Re: problem implementing a com component callback procedure

    Hi Darwen

    Thanks for the reply, it now works. Rather silly mistake on my part

    thanks again

    simon
  17. problem implementing a com component callback procedure

    Hi

    I am working with a com component, which I have added a reference to in my C#. I am using windows vista (32 bit) and VS2005.

    I have to implement a callback object which handles data being...
  18. Replies
    1
    Views
    4,455

    Re: slow toolstrip progress bar

    Got a solution to this

    I have drawn my own progress bar, it actually looks ok when using a LinearGradientBrush, and it redraws when I want it to redraw

    cheers

    simon
  19. Replies
    1
    Views
    4,455

    slow toolstrip progress bar

    hi

    i am using a toolstripprogressbar in an application. I increment this using
    PerformStep(), which is called on the tick event of a timer.

    When I set the progressbar range from 0 to 9,...
  20. Replies
    0
    Views
    492

    localization problem

    Hi

    I have quite a lengthy appplication that has a requirement to be localized into in Spanish as well as in English.

    I have set the localizable flag to true on every form in the project, and...
  21. Replies
    5
    Views
    1,171

    Re: access database not updating

    Hi Torrud

    it's now working. Unfortunately for no particular reason.

    Strangely i have not seen this behavior under XP - perhaps is vista being flakey.
  22. Replies
    5
    Views
    1,171

    Re: access database not updating

    Hi Torrud

    I should have added that I'm running under Vista.

    I am pretty sure I deleted all copies of atomicdata.mdb from my hard-drive.

    Interestingly I did a re-boot and and now my .exe...
  23. Replies
    5
    Views
    1,171

    Re: access database not updating

    This is fun !

    I checked the connection string member of one of the table adaptors, displaying it in a message box.

    It points to "c:\Program Files\company name\ product...
  24. Replies
    5
    Views
    1,171

    access database not updating

    Hi

    I have a c# application written with VS2005, that uses an access database.
    When I run the application from within the the dev environment, it seems to connect to a different instance of the...
  25. Replies
    0
    Views
    1,096

    SetThreadLocale and Vista

    Hi

    I have quite an old MFC project (which is now being built under VS2005), which has multiple language resources, for English, Polish, Spanish etc. The way I currently set-up which language...
Results 1 to 25 of 76
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured