Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. txjump

    Best approach to a dialog at login

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

    Best approach to a dialog at login

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

    Best approach to a dialog at login

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

    Best approach to a dialog at login

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

    Best approach to a dialog at login

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

    Best approach to a dialog at login

    Something like that. I was told what its supposed to look like but I've not been given the text yet.
  7. txjump

    Best approach to a dialog at login

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

    ODBC Consumer error message

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

    Need function to convert char string to int -- Help Please -- Thanks

    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 =...
  10. txjump

    Need function to convert char string to int -- Help Please -- Thanks

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

    error C2065: 'IDD_PROJECT1' : undeclared identifier

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

    Books for learning VC++ 6.0?

    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/
  13. txjump

    error C2065: 'IDD_PROJECT1' : undeclared identifier

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

    visual c++ calculator - you like a challenge?

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

    Arrays

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

    Hi Guys, Im after some help when t

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

    Assertion failure in CWnd::DestroyWindow

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

    Assertion failure in CWnd::DestroyWindow

    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]
  19. txjump

    Assertion failure in CWnd::DestroyWindow

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

    Assertion failure in CWnd::DestroyWindow

    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]

Part and Inventory Search

Back
Top