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 Wanet Telecoms Ltd 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: *

  • Users: txjump
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. txjump

    including resources in static libraries

    here is a great link explaining how to create and use a static library that uses a resource, such as a dialog box. http://www.differentpla.net/~roger/devel/tips/vc/resources_in_libs/ i used .net to create my library..the main differences are that the "Resource Includes" can be found...
  4. txjump

    Assertion failure in CWnd::DestroyWindow

    Hi, Ive created a library w/ a dialog, linked it to a dll, and am testing the dll w/ an exe. the problem occurs when i create an instance of the library class in the dll class or as a global in the dll. the exe calls the dll which in turns calls the lib. the lib class does its thing...
  5. txjump

    dialogs and libraries...can't get DoModal to work

    Hello all, ive created a class that has a dialog box. i first tested it as an exe, then i moved it to a dll, tested the dll and it works fine from there. then i decided that i didnt want it in a dll but want to make it a library for static linking. so i started shifting it to a library...
  6. txjump

    Printing a .doc in the background

    Hi everyone, we are trying to print a .doc file using ShellExecute. is there anyway to have this file print in the background without having the whole word application pop up then open, print and close the document, then close the app? is there some other function or setting that will allow...
  7. txjump

    linking dynamically to string tables from inside a dll

    hello all, i created an error handling dialog class inside an application. now i want to move that error handler to a library. the problem is that ive allowed string table IDs to be used in calling the handler. that was fine when it was all contained in the same app but now it has its own...
  8. txjump

    executable name from inside executable

    Hello everyone, Say im running an exe file called abc.exe. how do i find out the name of the exe from inside the abc.exe? thanks! txjump :)
  9. txjump

    Question about the MFC and iostream

    Hi, Im new to using the MFC but have been using plain ole c++ for a while. so im used to using <iostream> for cout but now im trying to build some apps that use the MFC and everytime i try to include the <iostream> file and #include <afxwin.h> // MFC core and standard components...
  10. txjump

    arrays of structures and dlls

    Hi, I am a C++ programmer trying to create a dll for a powerbuilder application. im trying to test a dll function that returns an array of c++ structures. (the functions that return standard datatypes work fine.) the structure is duplicated in powerbuilder but i dont know how to declare the...
  11. txjump

    passing by reference in a variable length parameter list

    Hello all, i have two functions. one trims the right and left sides of a char* array - strTrim(char* str). the other takes a variable length parameter list and calls strTrim w/ each char* array in the list. bool nullChecker(int numOfStrs, ...){ int i = 0; va_list marker; va_start(...
  12. txjump

    Object/library Modules and .Net Environment

    Hi, a couple of places have suggested a fix for my error/warning but im not familiar enough w/ the .Net IDE to correlate the solution. could someone please tell me which setting in .Net is equivelant to the &quot;Object/library Modules&quot; setting in previous versions? here is are the...
  13. txjump

    High CPU Usage during compile in .Net

    Hello everyone, I was just wondering if anyone else noticed how much cpu usage the .Net compiler uses. and if there is anything that can be done (besides upgrading) to decrease the workload hardware. these are pretty small apps (console, dll) that im creating. i notice that if im switching...
  14. txjump

    Compiling w/ library header files

    Hello all, I'm trying to create a tool library so i can use several functions in different dll files that im creating. my problem is that i can compile the library fine. but when i do a #include and set the vc++ &quot;additional include directories&quot; w/ the correct path to the header...
  15. txjump

    ActiveX and .dll or .olb

    I have an ActiveX .tlb file and I want to create a .dll or .olb file for a PowerBuilder Application to use. Does anyone know how to do this or can they point me in the right direction? Thanks, Stacey

Part and Inventory Search

Back
Top