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

Search:

Type: Posts; User: Ka-lolek

Page 1 of 2 1 2

Search: Search took 0.08 seconds.

  1. Replies
    7
    Views
    1,793

    Re: Polymorphism - why to use?

    sure,



    a ob = new b ();
    ob.fun(3);

    result:
  2. Replies
    7
    Views
    1,793

    Re: Polymorphism - why to use?

    indeed, thx ;)
  3. Replies
    7
    Views
    1,793

    Re: Polymorphism - why to use?

    I just wanted to know whether there is any difference between these two pieces of code...

    both print out
  4. Replies
    7
    Views
    1,793

    Polymorphism - why to use?

    Hello,
    i would like to know why should we use polymorphism (virtual + override keywords) instead of simple overriding...

    Let me show the examples:

    1) virtual + override keyword:


    class...
  5. Replies
    18
    Views
    20,702

    Re: FtpWebRequest - downloading big files

    so.. yes, i would like to show the progress
  6. Replies
    18
    Views
    20,702

    Re: FtpWebRequest - downloading big files

    i read this article earlier, but as i said previously for me the problem is server which doesn't support active mode..
    anyway, thx
  7. Replies
    18
    Views
    20,702

    Re: FtpWebRequest - downloading big files

    Thanks Mad for your interest! (and API)
    regarding the WebClient.. certainly, it was designed for http, but works fine with FTP too ;)
    i used it instead of ftpwebrequest and works fine.. despite the...
  8. Replies
    18
    Views
    20,702

    Re: FtpWebRequest - downloading big files

    i was considering using webclient instead of ftpwebrequest, but the problem is that my server doesn't accept active mode so that i can't display progress.. is there any other way to do it using...
  9. Replies
    18
    Views
    20,702

    FtpWebRequest - downloading big files

    Hello,
    I'm using FtpWebRequest to download files from FTP server.
    For small files <= 20MB everything is going well, but if the file is 100-200MB, it fails..
    it downloads like 50-70MB and then...
  10. Replies
    5
    Views
    4,880

    Re: Registry - writing to HKLM

    bump
  11. Replies
    5
    Views
    4,880

    Re: Registry - writing to HKLM

    is there no possibility to create key directly in HKLM - at any way?
  12. Replies
    5
    Views
    4,880

    Re: Registry - writing to HKLM

    but there is one more problem..
    my username is in administrators group but in spite of this when i open regedit and click add->key in HKEY_LOCAL_MACHINE, i get the message

    so i think even if i...
  13. Replies
    5
    Views
    4,880

    Registry - writing to HKLM

    Hello,
    i have problem cause when i try to write to hkey_local_machine, i get an exception with message

    the code looks like this:


    objReg = Registry.LocalMachine;
    RegistryKey obj =...
  14. Replies
    3
    Views
    929

    Re: include() in ASP.NET

    but could You tell me whether if I use master pages, when user clicks some link, all content is reloaded or only content which is different on every site?
    (using include I could do it faster because...
  15. Replies
    3
    Views
    929

    include() in ASP.NET

    hello,
    I would like to know how to write some script like this one:


    <?php
    if(!isset($_GET['plik'])):
    include("artykuly/oMnie.html");
    else:
    ...
  16. Replies
    3
    Views
    759

    Re: [ASP.net] scripts

    right,
    but there i found only: http://asp.net/learn/ thats good but not exacly what i'm looking for.
  17. Replies
    3
    Views
    759

    [ASP.net] scripts

    Hello,
    where can I find some nice scripts or tutorials (interesting menus, graphic galleries, some graphical effects etc. )
    Do you know some websites worth visiting?
    Greetings
  18. Thread: stdafx.h

    by Ka-lolek
    Replies
    7
    Views
    1,736

    Re: stdafx.h

    I've made this code:

    #include "stdafx.h"
    #include <conio.h>
    #include <iostream>
    using namespace std;
    int _tmain(int argc, _TCHAR* argv[])
    {
    cout << "aaa" << endl;
    _getch();
  19. Thread: stdafx.h

    by Ka-lolek
    Replies
    7
    Views
    1,736

    Re: stdafx.h

    Thanks,
    But how can I check what headers are frequently changed?
    I think that i don't change anything..
  20. Thread: stdafx.h

    by Ka-lolek
    Replies
    7
    Views
    1,736

    stdafx.h

    Hello
    I want to know whether can I do something to make compilation fastest..
    Now it takes about 50seconds and as I see about 40second it's compiling file stdafx.h
    but when I removed line ...
  21. Replies
    10
    Views
    1,474

    Re: Advenced gui / skins

    Thank You!:)
    very good idea IMO.
  22. Replies
    10
    Views
    1,474

    Re: Advenced gui / skins

    aha, and e.g. this map is white and in place where button is it's black ? Have I got it?
  23. Replies
    10
    Views
    1,474

    Re: Advenced gui / skins

    hmmm but it's not the only way to make 'cool' gui right?
    Could You tell me what are the posibilities to doing it?
  24. Replies
    10
    Views
    1,474

    Re: Advenced gui / skins

    I should make it in GDI? how?


    I know that one of possibilities are regions but I think that it's not the best solution...
  25. Replies
    10
    Views
    1,474

    Advenced gui / skins

    Hello I want to know how to make gui like winamp's gui and what should I do to be able to easy change skins?
    What libraries are used to do it? because in WinAPI I haven't seen anything to do so cool...
Results 1 to 25 of 33
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured