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...
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.