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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by jbsys

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

Part and Inventory Search

Back
Top