im going to assume that the user has to put in the user id and password. but is there a point when verification happens but the user has not yet be granted access to the machine?
thats when this needs to happen.
Hey Mark,
I've confirmed all the answers to your questions...
1. It's a security policy they must agree to.
2. Yes, before login. Originally he said it was supposed to be part of the login script.
3. Should not be granted access
4. It would be nice to record it in an event log
5. No, canceling...
Hey Mark,
I appreciate your help but this won't work. I've been told that HR wants it once and only for new hires.
I work for a global company with over 20 offices worldwide. I am a lowly developer in the basement who has no pull. ;)
~txjump
hey mark,
thanks! thats definately the idea. the only requirement i can see that is left to address is that its only supposed to happen the first time they login (new user).
from what it looks like, that cant be done with this because it happens before it even knows the users id. ive...
okay...
is this some sort of function i can call to get a dialog to show up or is this text in the command window or ... html ... or ?
can you point me in a more specific direction or to a link with documentation?
thanks,
txjump
Hello,
I'm not a VBScripter so I'm asking for some input on how best to display a custom dialog at login.
We have a script that runs whenever you log onto a network machine. I need to display some text and ask for acceptance the first time someone logs in. From what I've read I need to...
Hey Everyone,
I'm able to do a test connection to our database w/ the Oracle 9 drivers through the Data Source Administrator -> System DSN.
When I try to use the ODBC Consumer Wizard (from add class) I am able to connect to the database and see the tables. I select the table I want and...
well if atoi doesnt work, you may have to do some octal or hex math. in base 10, each digit farther to the left of the decimal gets multiplied by a multiple of 10.
ascii value of 1 is 49. so to convert a char cOne = '1' to int iOne = 1. you do something like
if(isdigit(cOne))
iOne =...
did you try useing the atoi function? an integer can hold a octal value and knows it is holding an octal value if there is a 0 in front of it. just not sure if atoi will interpret it correctly.
just to clarify what you said above...
the IDD name in your resource file matches the name that shows up in the dialog properties and it matches what you have in the enum. it this example all three places should have the name IDD_EBOXBDS_DLG_NAME.
//resource.h file
#define...
i have a book by John Mueller for Visual C++ .Net. I found his examples to be helpful when i started creating my own dialogs. and his writing was straight forward.
if he has something for Visual C++ 6, it is probably just as useful.
here is his website
http://www.mwt.net/~jmueller/
in your .h file for the class that belongs to your dialog, you will find a line that looks something like
enum { IDD = IDD_TESTPRB_DIALOG };
where IDD_TESTPRB_DIALOG is the original name of your dialog. i have had it happen where my dialog has been renamed by accident and my code wont...
omg,
i remember doing this very exercise but i cant for the life of me remember the details. all i remember is using a stack and pushing items on until i reached certain characters such as ')'. then popping off the stack until i encountered a matching '('. then continuing to push...
musta...
if the indexs correspond across all the arrays, do you really need to combine them? or can you just use the same index to access each item out of the the various arrays?
if you really have to have them all together, and since they are all integers, you can have a three dimensional array. use...
Have you done a look up on the code "C1900"? if not, here is what it says....
Fatal Error C1900Il mismatch between 'tool1' version 'number1' and 'tool2' version 'number2'
Tools run in various passes of the compiler do not match. number1 and number2 refer to the dates on the files...
hey qednick,
i cant use extension dlls because mine will be called from other languages such as cobol and powerbuilder.
of course your punkin pic didnt upset me. i thought it was funny. (a little dimented but funny) just didnt want you thinkin i was pestering you too much. ;)
txjump...
hey qednick,
good to see your post :) hope you are doing good. did you have a good thanksgiving?
not sure who your question was for but my dlls are regular dlls. and have to be, so i didnt even try to see what happens w/ extensions.
[ponytails2]
MFC code tracing is beyond me at this moment i think but i found an article talking about window maps and such:
http://www.microsoft.com/msj/defaultframe.asp?page=/msj/0997/c++0997.htm&nav=/msj/0997/newnav.htm
he has the source code to a viewer that you can use to check out the permanent and...
have the dlls already been used by someone successfully? if so, maybe they have some sample code that does work.
im still new to dlls (and actually windows programming) so perhaps they know how to do it as a class member.
good luck
[ponytails2]
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.