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

Search:

Type: Posts; User: Donotalo

Page 1 of 3 1 2 3

Search: Search took 0.06 seconds.

  1. Optimizing and enhancing security of a web application

    (First of all I would like to say sorry if this forum is not a proper place for posting this thread, as this is not be a typical general/chit chat thread. I could not find a forum to cover all the...
  2. Replies
    8
    Views
    2,476

    Re: a window that stays topmost

    The password will be set by the user and it doesn't have to be windows password. Besides, this the program I need for my personal use. I've no intention to distribute it right now.

    I said before...
  3. Replies
    8
    Views
    2,476

    Re: a window that stays topmost

    BOOL InitInstance(HINSTANCE hInstance, int nCmdShow)
    {
    HWND hWnd;

    hInst = hInstance; // Store instance handle in our global variable

    hWnd = CreateWindowEx( WS_EX_TOPMOST,...
  4. Replies
    8
    Views
    2,476

    Re: a window that stays topmost

    My window is using this style. But then if I press ALT+TAB, the task bar is shown which is not desirable. From the task bar I can activate Task Manager. In my computer, the option Always on top is...
  5. Replies
    8
    Views
    2,476

    a window that stays topmost

    How can i create a window that stays topmost and don't loose focus with ALT+TAB or by any other process lunch like Task Manager?

    I can create a fullscreen topmost window but unable to keep it...
  6. Replies
    1
    Views
    863

    Re: DOM Table Caption in IE 6

    Solved by using createCaption() function. :)
  7. Replies
    1
    Views
    863

    [RESOLVED] DOM Table Caption in IE 6

    function createTitleUrlTable() {
    var newtable = document.createElement("table");
    newtable.border = "0";

    for (var i = 0; i < 4; i++) {
    newtable.insertRow(i);...
  8. Replies
    4
    Views
    1,485

    Re: MySQL sorts data by primary key

    Sorry for unclear explanation. What I meant is this:

    I'm inserting records using INSERT command.
    When required, I'm reading value using SELECT command and storing the records for later use:
    ...
  9. Replies
    4
    Views
    1,485

    MySQL sorts data by primary key

    Just noticed that MySQL sorts a table records by primary key. I want to prevent this behaviour. I don't need any sorted data. I need the sequence at which user entered data. How can I do that?
    ...
  10. Replies
    10
    Views
    12,122

    Re: Cannot send message using POST

    oh! that was because my net speed was too slow at that time. however, my problem was in my office computer. i will check it out there next week. thanks.
  11. Replies
    10
    Views
    12,122

    Re: Cannot send message using POST

    Sorry for the double post. The link you provided seems broken to me. I cannot open the page. Anyway, thanks.
  12. Replies
    10
    Views
    12,122

    Re: Cannot send message using POST

    I am unable to test AJAX-PHP codes because of the problem (or feature) of Firefox as per post #3 in this thread. I'll be grateful if anyone can solve this problem.
  13. Replies
    10
    Views
    12,122

    Firefox Authentication

    I am using IIS 5.1 on Windows XP SP2. When I try to access a php file (using AJAX, a normal php file loads) through firefox 2, firefox wants authentication. After googling I tried several tweaks in...
  14. Replies
    10
    Views
    12,122

    Cannot send message using POST

    The ajax code:

    var xmlHttp = GetXmlHttpObject();
    if (xmlHttp == null) {
    window.alert("Your browser does not support ajax.\n Please use latest version of your browser.");
    return;
    }

    if...
  15. Replies
    5
    Views
    761

    Re: i want this to be working...

    Actually, this is what I wanted - making static virtual functions. I changed now all of the static class methods to non static, and write abstract base class for them.
  16. Replies
    5
    Views
    761

    Re: i want this to be working...

    Well I didn't know that it is impossible to code static virtual function. I did that for lots of similar classes because I wanted the behaviour out of the classes without having to initialize them....
  17. Replies
    5
    Views
    761

    i want this to be working...

    I've lots of classes with similar interface. The following class is a placeholder of other classes:

    class Derived : public Base {
    static int x;
    public:
    Derived() {x = 10;}

    static int...
  18. Replies
    2
    Views
    706

    Re: visual c++ manifests

    i've read the online msdn about manifest files. but i didn't find using visual studio how to write my own manifest files. that's why i asked.
  19. Replies
    2
    Views
    706

    visual c++ manifests

    how to use the *.manifest files that visual c++ produces?

    thanks.
  20. Replies
    6
    Views
    2,294

    Re: how to use abstract template base class?

    i just learn that what i want to achieve is completely impossible. i need to redesign.
  21. Replies
    6
    Views
    2,294

    Re: how to use abstract template base class?

    so silly of me. :blush:

    Here is the fixed code:

    AbstractGroup.h:


    #ifndef ABSTRACTGROUP_H_
    #define ABSTRACTGROUP_H_
  22. Replies
    6
    Views
    2,294

    Re: how to use abstract template base class?

    Thanks for your reply. But using

    AbstractGroup<string>* g = &d3;

    does not eliminate the errors. Besides, my intention is some thing different. There are many other classes that derived from...
  23. Replies
    6
    Views
    2,294

    how to use abstract template base class?

    Abstract.h:

    #ifndef ABSTRUCTGROUP_H_
    #define ABSTRUCTGROUP_H_

    template<class Type>
    class AbstructGroup {
    public:
    virtual Type element(int) const = 0;
    virtual int order() const = 0;
  24. Replies
    1
    Views
    520

    Template and Inheritance

    I've several classes (D3, D4, etc) which I would like to pass to the constructor of class C. All of these classes (D3, D4, etc) derived from an abstract class called AbstractGroup. I'm having problem...
  25. Re: Stand alone exe does not run in other computer

    Thanks for the replies. Dependency Walker is indeed a great tool! Thanks Doron Moraz for that. Using Dependency Walker I find a horrible thing: the Qt application also needs QtCore4.dll and...
Results 1 to 25 of 70
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured