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

Search:

Type: Posts; User: BigWinston

Page 1 of 4 1 2 3 4

Search: Search took 0.03 seconds.

  1. Application Development using Eclipse Framework

    Hi All.

    I am about to start a new development project. I would like to use Eclipse as the shell of my application (i.e I dont want to develop with Eclipse necessarily, but I want my application...
  2. Re: Recommendation on C# Level Editor Controls

    Hi. Thanks for the suggestions.

    No, I dont want the level editor to run in game, just output an XML I will use in the game.

    Maybe I'll go the XNA route afterall....
  3. Recommendation on C# Level Editor Controls

    Hey There,

    I'm working on a mobile game and a level editor for it in C# .NET.

    I need a recommendation on which control to use (and some high-level info on how to go about implementing) for the...
  4. Transferring data between managed and unmanaged code

    Hi,

    ** Please move if I posted in the wrong forum - I wasn't sure where this belonged! **

    I'm looking for some advice... I would like to have a native C++ project read data from the process it...
  5. Replies
    0
    Views
    1,031

    XML / XSD - Advice Needed

    Hi,

    I am looking to get some advice here from some XML pro's!

    I'm a bit of a noob in using XML, and haven't touched XSD before.

    I'm writing a little utility and I need to be able to save...
  6. Replies
    2
    Views
    1,359

    File Explorer - Tree View Style

    Hi,

    I have the following code (at bottom of thread). All works fine, but it takes about 26 seconds to run through.

    The function 'FillDirectoryNodes' is reentrant in order to populate the...
  7. Replies
    6
    Views
    1,366

    Re: communication with serial com port

    Check here :
    http://msdn2.microsoft.com/en-us/library/system.io.ports.serialport.aspx

    Also this may help in your development :

    http://www.serial-port-monitor.com/
  8. Replies
    3
    Views
    819

    Re: Sharing Class Instances between Forms

    Ok, here's the code

    Main Form

    public partial class Form1 : Form
    {
    private serialCom newSeCom = new serialCom(); /* Create the serial port object */
    private static...
  9. Replies
    3
    Views
    819

    Sharing Class Instances between Forms

    Hi,

    I need some help! :)

    If I have my main form, and I declare an instance of a class (SerialPort in my case) in the main form, how can I pass this class instance to a sub form?

    In my...
  10. Replies
    1
    Views
    864

    Login and Database Question

    Hi,

    I wish to use the 'Login', 'Login View', 'Password Recovery', etc. controls in a web application I'm developing.

    The only tutorials I see use a system database that is maintained by the...
  11. Replies
    2
    Views
    882

    Graphics File Resources

    Hi,

    Does anyone have any online resources and links they could share when it comes to working with graphics files, such as JPEG's and GIF's? Opening, performing routines on (such as filters,...
  12. Replies
    0
    Views
    703

    Viewing 2D arrays in Watch Window

    Is there any way I can view 2D arrays in the watch window?

    I need to look at the data, ideally in a grid, but list will do fine.

    At the moment all I can see is the 2d array coordinates as the...
  13. Replies
    4
    Views
    2,004

    Text In Image Recognition?

    Hi There,

    I'm looking to perform a text recognition function.

    Here's what I need:

    - I am given an image, of lets say 100x75 pixels in size.
    - The image may or may not contain text.
    -...
  14. Replies
    3
    Views
    664

    Compilation of different source files

    Hi There,

    I'm not 100% sure if this is in the correct forum... Apologies if it is not.

    Basically, I have a class written in C# spread over 3 .cs files.

    Is it possible for me to include these...
  15. What's wrong with this 'const' array decleration?

    static const string Alphabet[] = { "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", x", "y", "z" };

    I keep getting the following...
  16. Replies
    5
    Views
    1,423

    Re: Problem with DLL / Lib

    No I'm not. I'm new to using DLL's.

    I can tell you I build the DLL / Lib using the nmake tool and a makefile.dos

    Here's the copy of the makefile if its any use :


    # Generated automatically...
  17. Replies
    5
    Views
    1,423

    Re: Problem with DLL / Lib

    Ok, I didn't think it was a problem with the code, I had assumed that it was a problem with my project settings.

    There is no documentation for the library, but I do have the source code for the...
  18. Replies
    5
    Views
    1,423

    Problem with DLL / Lib

    Hi There,

    I'm using a 3rd party lib file and headers in a project of mine.

    Once I start using the functionality provided by the .lib file I started getting the following error when compiling :...
  19. Replies
    0
    Views
    643

    Creating a usable DLL

    Hi,

    I am trying to access the functionality contained within a C# DLL in my visual C++ project. At first I thought it was a problem with how I was trying to use it in C++. It appears now that I...
  20. Replies
    8
    Views
    1,443

    Re: Please Help - Importing and using a DLL?

    A find in all files of the source showed nothing like you say.

    What can I do to use this?

    Can I convert to a COM dll or use it as a "normal" dll?
  21. Replies
    8
    Views
    1,443

    Re: Please Help - Importing and using a DLL?

    Not sure. How do I find that out? :)
  22. Replies
    8
    Views
    1,443

    Re: Please Help - Importing and using a DLL?

    Well, I have the c# source project. I have set it up to build a COM dll.

    It seemed to work fine. Now I am trying to use it in my project.

    It compiles fine (using functionality from the DLL no...
  23. Replies
    8
    Views
    1,443

    Please Help - Importing and using a DLL?

    Hi,

    I have no idea on where to even get started here.

    Basically I have a DLL written in C#, I want to be able to use that in my VC++ 2005 project.

    How can I do this?

    I'm guessing #import...
  24. Replies
    2
    Views
    1,011

    Re: Windows Form Handlers in CPP file?

    Infact, you can also get rid of the other namespace declerations, namely these in the example above. They're not needed here as they're declared in the header.

    So your example will now look like...
  25. Replies
    2
    Views
    1,011

    Re: Windows Form Handlers in CPP file?

    I figured this one out, so for anyone who's interested, here's the solution:

    You need to include the namespace for your project in the cpp file you use. You can get this by going to the main cpp...
Results 1 to 25 of 82
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured