Search:

Type: Posts; User: franse

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    1,386

    Thank you Bubba, this was what I thought also. I...

    Thank you Bubba, this was what I thought also.
    I did see that other Visual did have the wizard for that. I think I have found Installer2Go 4.2.5

    :)
  2. Replies
    2
    Views
    1,386

    Make a setup.exe file with .net framwork

    If I have created a form application in vc++ 2008 express edition and now want to make a setup.exe file out of this.

    What is the way to do that and I also is thinking of that the user that will...
  3. Replies
    21
    Views
    3,709

    That was great to know and follow your...

    That was great to know and follow your discussion...
    I would really keep such information in the Local Application Data folder to it correctly and to be
    on the safe side at the same time.
  4. Replies
    21
    Views
    3,709

    Okay what would be the difference to have it in...

    Okay what would be the difference to have it in the System and Local Application Data folder ?
    However the Local Application Data folder works fine.

    Then I suppose I would write it like this:

    ...
  5. Replies
    21
    Views
    3,709

    Yes, that was the page I found before when...

    Yes, that was the page I found before when writing the GetFolderPath() but I did miss all the platforms.
    That really gave me the answer and I can there see what OS that supports SpecialFolder etc......
  6. Replies
    21
    Views
    3,709

    I am not sure if this is very easy to ask them,...

    I am not sure if this is very easy to ask them, if they have any support for this regarding programming like a forum ?
    I can only find support and contact us but they should only be for products...
  7. Replies
    21
    Views
    3,709

    Ok! I use XP Proffessional and I have tried...

    Ok!

    I use XP Proffessional and I have tried this code out:


    System::Environment::GetFolderPath(Environment::SpecialFolder::System)


    This gives me: "C:\WINDOWS\system32"
  8. Replies
    21
    Views
    3,709

    I think that your first suggestion for me is the...

    I think that your first suggestion for me is the moste interesting one after all where the portability will work for "all" systems.

    To create an encrypted file out of user/password.
    If I assume...
  9. Replies
    21
    Views
    3,709

    For this line: ...

    For this line:



    softwareKey->SetValue("Description", "Description of my product");


    How would it be possible to get the string for the first argument: "Description"

    How would it be...
  10. Replies
    21
    Views
    3,709

    I have tried to follow an example to "Create a...

    I have tried to follow an example to "Create a New Registry Key and Value".
    This code compiles and when running the code, it adds a "My Product" like this:

    HKEY_CURRENT_USER\\Software\\My Product...
  11. Replies
    21
    Views
    3,709

    I must ask here before checking up because I have...

    I must ask here before checking up because I have thought about something simular but as the path is for example:
    C:\\Documents and Settings\\username\\Application Data\\..

    There will be a...
  12. Replies
    21
    Views
    3,709

    Registry, Regedit

    I have done an application where you will have to enter a Username and a password in order to enter the program...

    So a panel with 2 textboxes is promted for this.

    Now when you have entered the...
  13. Replies
    4
    Views
    1,556

    Pass a List^ to an opening Form

    In wonder if I can pass a List<double> to another Form when this form opens ?


    List<double>^ ExampleList = gcnew List<double>; //ExampleList has for example 50 elements



    With the code below...
  14. Replies
    3
    Views
    2,419

    >> Save the initial value of BackgroundImage ...

    >> Save the initial value of BackgroundImage

    Actually when experimenting around I might need to save the initial value of BackgroundImage.
    The problem is that I haven&#180;t done this before so I am...
  15. Replies
    3
    Views
    2,419

    Yes that can be a good idéa, I beleive I also...

    Yes that can be a good id&#233;a, I beleive I also found a different solution to the problem where I could insert different images also.


    Form1::BackgroundImage = Image::FromFile("C:\\pic.JPG");
  16. Replies
    3
    Views
    2,419

    Remove Image for button

    I have set a backgroundimage to a button and wonder how it would be possible to remove this image programatically.
    I have tried to search all members but cant find any clue to how to do it.
    ...
  17. Thread: for loop

    by franse
    Replies
    2
    Views
    1,106

    Stupid of me |..| ofcourse. Now it works. Thank...

    Stupid of me |..| ofcourse. Now it works. Thank you..
  18. Thread: for loop

    by franse
    Replies
    2
    Views
    1,106

    for loop

    I want to do a loop that iterates the numbers: 1,4,7,10
    but when doing this loop, this loop iterates 1,3,3,3,3,3.. and keeps showing 3 in infinity.
    Should the loop be done in any other way....
  19. Replies
    6
    Views
    1,347

    They do wonder really, this simplified the code...

    They do wonder really, this simplified the code very much.
    I will think about that in the future code I am doing to :)
  20. Replies
    6
    Views
    1,347

    Yes ofcourse, I should have used arrays/vectors....

    Yes ofcourse, I should have used arrays/vectors. This works fine now.
    Thanks for direction.



    stringstream b1;
    std::vector<int> Num(20);
    std::vector<string> a(20);
    for( int i = 0; i < 20;...
  21. Replies
    6
    Views
    1,347

    Problem with conversion with stringstream ?

    I am using rand() to put random numbers between 1 - 10 and then I am counting how many of each of these numbers that appeard.
    After this I am converting them to std::string and finally I try to...
  22. Replies
    5
    Views
    1,546

    This was strange, suddenly it works with the...

    This was strange, suddenly it works with the _Changed event and NotifyFilter "LastAccess".
    The Watcher detects the file and full path when using the testcode like this.
    I will try to test it out. ...
  23. Replies
    5
    Views
    1,546

    okay, I have to ask. I wonder if the...

    okay, I have to ask. I wonder if the fileSystemWatcher component in the form application can do this. I have have tried this component out with these events:

    _Changed
    _Created
    _Deleted
    _Renamed...
  24. Replies
    5
    Views
    1,546

    Detect when a file is used

    I am not sure if this question should be here but what I wonder is if this is possible:
    I have a mp3-file like this. "D:\\music\\song.mp3".
    Now if I will play this song with example VLC-player,...
  25. Replies
    2
    Views
    1,094

    Yes, I could understand that it was a bit diffus...

    Yes, I could understand that it was a bit diffus question. I use XP Professional.
    I am doing a "tricky" thing communicate between a program that I am doing and a thirdparty
    program.
    I am reading...
Results 1 to 25 of 61
Page 1 of 3 1 2 3