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

Search:

Type: Posts; User: fernando306

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Re: SLOWING DOWN NumericUpDown control increments

    Wow, I really thought that I was missing something obvious, but apparently I wasn't. How could this control not have such a simple and necessary adjustment? :o

    Thank you Eri, I'll try to implement...
  2. SLOWING DOWN NumericUpDown control increments

    Hi There, how are you?

    I am working on a software (VC++ 2008) that communicates with a piece of hardware that is pretty "slow". I am having a small problem that, if the user holds the...
  3. Re: Using imaginary number " i ". Dev C++ vs. VS2008!

    Exactly! It worked perectly now. Thanks a lot!!!
  4. Re: Using imaginary number " i ". Dev C++ vs. VS2008!

    I found no problem setting the values when declaring the complex numbers btw. But after has been declared, I didn't find a way to change the imaginary part of it. In therms of computational...
  5. Re: Using imaginary number " i ". Dev C++ vs. VS2008!

    Well the problem comes from an even more basic level...

    I am not finding a way to set values to real and imaginary parts of the number separately.

    I found that the function real(complex_number)...
  6. Using imaginary number " i ". Dev C++ vs. VS2008!

    Hi There!

    I created an algorithm that uses imaginary numbers. It is fine on Dev C++, and now I am trying to port to VS2008. I figured out most things, including how to declare complex numbers....
  7. Replies
    2
    Views
    7,631

    Re: Permission to access file from program!

    Eri, you're GREAT! It worked! Thanks a lot!!!
  8. Re: How to FIX the annoying NumericUpDown behavior

    Hi Eri!

    I fully agree with you. There always will be some level of user irritation, I'm actually concerned about what they will think about the program's feel... But that's the best I could do at...
  9. Replies
    2
    Views
    7,631

    Permission to access file from program!

    Hi There! How are you?

    I have a program that I must load a certain image depending of certain conditions. This image can not be built into resources file, it must be separated from the program and...
  10. Re: How to FIX the annoying NumericUpDown behavior

    Hi Eri! As always, you're willing to help, thank you! :thumb:

    It was a very time sensitive situation so I got away with some "twists"... I really did set up a timer to perform the task. So I...
  11. How to FIX the annoying NumericUpDown behavior

    Hello!

    I am using NumericUpDown control as input for a range between 10 and 22000. So I set the minimum to "10", the maximum to "22000" and the thousand separator as true. Because of these...
  12. Replies
    1
    Views
    2,346

    Re: Automatic windows driver instalation

    SOLVED!

    I utilized Inno Setup. Easy easy easy. And as for the driver, all it takes is to copy the driver files to Windows\inf folder.
    :p

    Thanks!!!!
  13. Replies
    1
    Views
    2,346

    Automatic windows driver instalation

    Hi there, how are you?

    I developed a program that requires a hardware to be connected to the computer. This hardware uses a USB port and creates a serial port over it to communicate. Now that...
  14. Replies
    5
    Views
    6,798

    Re: Licensing software via internet.

    Yeah I imagine how this sounds strange! :eek:

    But yeah! Here's what's going on: I've developed this project, hardware, firmware and software. I won't be the one manufacturing it (it's out of my...
  15. Replies
    5
    Views
    6,798

    Licensing software via internet.

    Hi There! How are you?

    I'm nearly finishing this project that consists of two parts: An electronic board with a microcontroller, eeprom memory and a firmware, and, the Windows software. I've...
  16. Replies
    3
    Views
    1,878

    Re: Creating controls "on demand".

    Hi Eri523! I had the opportunity to test this idea and it's working fine, thank you! :thumb:
  17. Replies
    3
    Views
    1,878

    Re: Creating controls "on demand".

    Hi Eri523! Very helpful as always! Good idea to move controls from one tabPage to another. I'll surely try this and get back here ASAP!
  18. Replies
    3
    Views
    1,878

    Creating controls "on demand".

    Hi There, how are you? (Eri523, do you hear me? :D)

    I'm facing this problem, I'm not sure if there is a possible solution:

    I have 4 tabPages, each with 24 groupBoxes that are similar and...
  19. Re: Trying to dump an "unsigned char" array to file!

    Hey Eri523!

    I used FileStream and it worked 100% fine. I also used OpenFileDialog and SaveFileDialog to browse directories and provide the file path. It was a piece of cake!

    Thanks a lot, your...
  20. Re: Trying to dump an "unsigned char" array to file!

    Hi Eri523! Thank you so much for your help. I'll definitively study the FileStream class and implement it. No, I'm not handling text files, so you surely saved me from a lot of headaches :)

    Oh...
  21. Trying to dump an "unsigned char" array to file!

    Hi there! How are you?

    My problem is fairly simple for those used to CLI programming! :D

    I basically have an "unsigned char" type array that I need to dump to a file and later be able to read...
  22. Re: Working multiple forms using Visual C++ 2008

    Hi There! Hey, I have this book, but the 2008. I think it's very helpful and he really starts from the very beginning, I highly recommend it:
    ...
  23. Replies
    0
    Views
    1,616

    How to get the type of a struct member?

    Hi there! How are you?

    I have a struct that I created that looks like this:

    struct UI_Descriptor //(906 Bytes)
    {
    unsigned char mInput_Gain_L1;
    unsigned int mChannel_Attack_Txtb[4];...
  24. Re: A better way to write / read dozens of textboxes?

    Hi Eri523 and TheGreatCthulhu! :wave:

    Thank you so much for your kind consideration helping me! Indeed it was the cast problem, I tested it and it works like a charm now! I am very pleased with...
  25. Re: A better way to write / read dozens of textboxes?

    And I tried to access the control in a different manner, referring to it as the element of the array instead of it's name, still I can't access the "value" property, but I can access other properties...
Results 1 to 25 of 37
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured