nothing of any of that sort after looking at the picture in india where students are just going and doing anything for computer degree to get a good job Row
ROWALI
Posts
-
future of programming -
Get to know your local frog...How three monitors are configured with one cpu. Row
-
Get to know your local frog...Thanks :-O Sorry if I had offended you. Row
-
It's Friday!I would rather prefer clean deserts ;) Row
-
It's Friday!I am in Thailand on onsite assignment, I am going to have wild nights this weekend. ;) Row
-
Problem in WH_CBT hook [modified]define a BOOL variable BOOL windowCreated = FALSE; then in your windows procedure. if(windowCreated==FALSE) { msgbox.. windowCreated=TRUE; } Row
-
code frog read thisI worked late night in the office yesterday. Also needed to attend the conference call in the morning so I came with cloths not ironed. But my boss blamed me for shabby look. Better to work at home like code project. wear anything.. or nothing .. do you cod-frog. which cloths do you wear at home in front of your machine or nothing at all? Row Row
-
[Message Deleted][Message Deleted]
-
password hacking ideas.I think set a windows hook, if any windows is opened then enum windows in it. if edit field is there.. then start a timer for it or something and check if focus is getting lost for it. at the time of focus getting lost , capture the text in it. any modification anyone suggest? What about edit fields in the webpage? how can I get to it actually? Row
-
Atl executable without InterfaceHi, I have created an ATL executable. It has only CExeModule (base -> CComModule) I inserted a dialog. and in _tWinMain , I create this dialog and show. So when I execute this exe itself, dialog shows up. Now I want this COM exe to be used in a VB program. I give the reference to this particular component . But in code how may I use this to show my dialog in my exe COM. had there been an Interface with method showdialog (where dialo will be created and showed), I would have used similar to.. Dim obj as Object Set obj = new MyInterface obj->showdialog 1. But without such interface , how can I show up my dialog in VB , if the dialog itself is created at the entry point of com i.e. in _tWinMain 2. If the ATL exe has interface and method (to show dialog), then how can I use ATL exe itself to show the dialog. Thanks Row
-
what is windows service?What is windows service? What is it's purpose? does service means , a program which starts to run when the windows starts .. Row
-
importI want to use COM components in my application. When to use
#import
and when to useCoInitialize, CoCreateInstance(..)
Are both reaching to same destination? Or #import has to be used with ATL executable and CoInitialize, CoCreateInstance has to be used with InProcess Dlls Please confirm? Row -
How to use ATL executable(exe) and service exe with the client? [modified]How to use executable(exe) and service exe with the client? Is it same as using Dll with client? Any sample links please? Thanks Row -- modified at 8:02 Tuesday 20th June, 2006
-
how to know?;P Row
-
how to know?:)abe ghanchu=> oy cheap guy. dotn mind :rose: Row -- modified at 6:33 Tuesday 20th June, 2006
-
how to know?abe ghancu Row
-
how to know?Tell me Row
-
how to know?Many times I have to maintain the existing code. So how to understand in visual studio if the given code is MFC dll or win32dll or if the given executable had other dlls statically linked or dynamically linked? row
-
Linking external library to ATLI have a win32 library with no interfaces , just only exported functions. e.g. One of those is ..
bool getInfo (char *string, int counter);
I created a ATL exe , inserted a simple object.No I want to link the above library to my ATL project. So in Project->settings->link, I gave the lib name and directory of the lib file. Now I want to use this function getInfo in my atl program. SO I added one method in my interface sayCallLibFunction
And in that method I want to call getInfo.. Are these steps ok? Please let me know, any other precaution or regarding data types??? Kindly let me know. Row -
Linking external library to ATLI have a win32 library with no interfaces , just only exported functions. e.g. One of those is ..
bool getInfo (char *string, int counter);
I created a ATL exe , inserted a simple object.No I want to link the above library to my ATL project. So in Project->settings->link, I gave the lib name and directory of the lib file. Now I want to use this function getInfo in my atl program. SO I added one method in my interface sayCallLibFunction
And in that method I want to call getInfo.. Are these steps ok? Row