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: *

  • Users: jbsys
  • Order by date
  1. jbsys

    Check if form is loaded

    Is there an easy way to do this?
  2. jbsys

    Dynamically load multiple comboboxes

    Hi - is there a way I can load multiple comboBoxes from a database table where the list for the second box depends on the value selected in the first one and the list for the 3rd box depends on the value select in the second box? any help would be appreciated. thanks.
  3. jbsys

    Enumerating LDAP user object attributes.

    Hi; I am trying to figure out how to enumerate all of the attributes for each in user contained in the user object of the ADSI. Does anyone have any ideas about how to go about accessing the looping through each user's attributes in the ADSI user object? Any help would be greatly appreciated...
  4. jbsys

    .vbs books or websites sites

    Here's a couple of links: http://www.dangerous-minds.net/index.php?name=PNphpBB2&file=viewforum&f=76 http://www.computerperformance.co.uk/ezine/ezine15.htm#Summary http://www.w3schools.com/vbscript/vbscript_ref_functions.asp...
  5. jbsys

    Referring to a function in a class in an external DLL file

    Can anyone please help with some example code of how to utilize a class that is part of an external dll? The dll is registered, and I can create an object using the CreateObject("myfile","user") where "myfile" is then name of the registered dll file and "user" is the name of the class contained...
  6. jbsys

    VBScript Question

    I didn't think so given the fact that I couldn't find information regarding this topic on Microsoft.com. But I thought I'd pose the question, just to be sure. Thanks very much for the reply.
  7. jbsys

    VBScript Question

    How do I Declare a Win32 API function in VBScript? Is it exactly the same as in VB6.0? thanks.
  8. jbsys

    Crystal Report 8.5/Windows 2003 Server & Exporting

    Hi; Since we updated our servers to Windows 2003 Server, we are not able to export any results of our Crystal Report 8.5 reports to Excel, Word, Rtf, pdf or rpt formats. Does anyone have any thoughts on this issue? Any assistance would be appreciated. Thanks jbsys.
  9. jbsys

    ASP page data update, refresh issue.

    Hi; I am presently working on a project where I have a web page that queries a name from the Exchange server. The page contains 3 drop-down selection boxes. The content of the second list box depends on the content listed in the first box. The content listed in the 3rd box depends on the content...
  10. jbsys

    Crystal 8.x crviewer.dll & Oracle 10g

    Hi; I have a Cold Fusion(4.5) website that executes Crystal reports(8.0...). The site uses an Oracle 10g database as its database system. An older version of the site runs on a 9i database. The older version uses the 9i version of the Oracle ODBC driver and ColdFusion executes the Crystal...
  11. jbsys

    Query Users, their roles & the objects they have access to.

    How can I get a list of users, thier roles, and objects that they have access to along with the priviledges granted? Thanks
  12. jbsys

    Migration Issues

    Hi; I'm searching for a definitive document or publication that outlines the differences between older versions such as CF Server 4.5 and CFMX7. Does anyone know where I might be able to find something like that? Thanks jbsys
  13. jbsys

    DLL internal functions.

    ArkM - Thanks for you help on this. However, one should be aware that I am very new to C++ and may not be aware of the best practices approach to creating this type of, or any, dll file. At any rate, I have isolated the problem. When I transfer this code to a regular C program, all functions...
  14. jbsys

    DLL internal functions.

    Hi; I am having trouble with a DLL function that is available to my calling program. The function receives char * parameter and calls another function that lives inside of the the dll. For some reason, the internal function does not get called by the exported function inside the dll, or more...
  15. jbsys

    Change the value of a string.

    Hi; I'm having trouble understanding how to change the value of a string parameter being passed into a DLL function. Here's what i have in the function. void TestGetEnvVar(char *parm1) { char enval[]="The dll has changed the value."; *parm1 = char(&enval); return; } my call is: parm1 =...
  16. jbsys

    Passing parameters to/from a DLL

    Volker; When I tested your solution, the getenv (strEnvVar) function returns a null pointer. If I change it to: return getenv( "HOMEPATH" ); it returns "\Documents and Settings\myhomedir" as I expected. Is there something I need to do to strEnvVar or the result fo the function to actually get...
  17. jbsys

    Passing parameters to/from a DLL

    Actually; Here's what I have so far: #include "stdafx.h" #include "jalib.h" #define DllImport __declspec( dllimport ) #define DllExport __declspec( dllexport ) BOOL APIENTRY DllMain( HANDLE hModule, DWORD ul_reason_for_call, LPVOID...
  18. jbsys

    Passing parameters to/from a DLL

    I will be calling the functions from a Cognos Powerhouse application. So what I really need is an example of a function inside a dll that would accepted and pass back parameter values to/from the calling program. IE: Inside the dll there is a function called "getEnvVar()" Assume that varName...
  19. jbsys

    Retrieve Current Windows Session ID

    Thanks - I'll certainly test and utilize this. jbsys.
  20. jbsys

    Passing parameters to/from a DLL

    Hi; I am very new to MSC++ and need to create a dll using C++ Vs6.0 so that it will NOT be dependant on the .NET framework. My issue is I don't know how to set up my functions to pass parameters into and out of my dll functions. Can someone please help with an example? thanks jbsys.

Part and Inventory Search

Back
Top