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

Search:

Type: Posts; User: SBeier

Search: Search took 0.03 seconds.

  1. Replies
    3
    Views
    1,822

    Re: How can I create this functionality....

    I think he wanted the clients to do the lookup, and send the info to the server. In which case server side scripts is really not that great. My suggestion would be to create a java applet, or use...
  2. Replies
    0
    Views
    1,143

    Intercept messages between processes

    Hello, I got a program A, and another program B. In B its possible to create stuff that can then be run with A. I have then decided that I want to create my own program C instead of B. My problem is,...
  3. Replies
    1
    Views
    1,492

    Re: Get string from c++ dll in c#

    I found a solution.. I needed to change my struct in c# to


    struct SFILE_FIND_DATA
    {
    [MarshalAsAttribute(UnmanagedType.ByValTStr, SizeConst = 260)]
    ...
  4. Replies
    1
    Views
    1,492

    Get string from c++ dll in c#

    Hello.. I got a problem I'm hoping someone here can help me with.
    I am writing an application in c#, and wish to use a c++ library. In this library, I am calling the following method


    HANDLE...
  5. Replies
    2
    Views
    2,867

    Re: An algorithm for a card game needed.

    If you number the cards after which beats which(1 being lowest, 54 being highest), I calculate that if you pull the card c, your chance of winning will be the product from i=1 to the number of...
  6. Replies
    1
    Views
    815

    Re: Algorithm Help for a String

    when you say FSM, do you mean finite state machine, as in regular expression?
  7. Replies
    1
    Views
    6,075

    Fixed point number to and from string

    Hi, I am trying to make a fixed point number in c#.
    I would like to be able to convert it to a decimal string, and to parse a decimal string into a fixed point number. I can't find a good way of...
Results 1 to 7 of 7





Click Here to Expand Forum to Full Width

Featured