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 bkrike 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
  • Content: Threads
  • 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

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

    VBScript Question

    How do I Declare a Win32 API function in VBScript? Is it exactly the same as in VB6.0? thanks.
  6. 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.
  7. 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...
  8. 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...
  9. 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
  10. 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
  11. 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...
  12. 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 =...
  13. 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.
  14. jbsys

    Retrieve Current Windows Session ID

    Hi; I am writing my first dll in C++ and using MS Visual C++6.0. I'm having trouble determining how I can retrieve a Windows Session ID for the current session. Can someone help to point me in the right direction or provide a code sample of how I can retreive this information? The session ID...
  15. jbsys

    Binding Controls to ListView items.

    Hi; I have a listview control called myLview on a Windows form of the type System.Windows.Forms.ListView. I also have a ListViewItem called li that is associated with myLview. I also have a combobox called cboBox. How do I bind cboBox to the myLview subitem that I selected? Thanks jbsys
  16. jbsys

    DataTable Sorting

    Hi; Does anyone know of a simple way to sort the rows of a datatable based on the value of one of the columns? Code Example would be greatly appreciated. Thanks jbsys.
  17. jbsys

    Retreive Row index from a listview

    Hi; Being relativly new to C# and .NET, I am hoping someone can point me in the right direction. I have a listview called mylistview such as: |--------------------------------------| |City | Los Angeles | 3,600,000 | |--------------------------------------| |City | New York |...
  18. jbsys

    Retrieve OLEDB Driver list

    HI; Does anyone know how a list of available OLEDB drivers that are loaded onto the local machine can be obtained? Thanks jbsys
  19. jbsys

    Retrieve text data from listview item's 3rd column cell

    Hi; I'm not sure about how I can retrieve the information from a listitem's 3rd column cell. EG: ____________________________ |Col 1 |Col 2 | Col 3 | ---------------------------- | Red | Blue | Green | ---------------------------- |Purple | Yellow| Magenta|...
  20. jbsys

    Problem with load data from datatable to listview control

    Hi; I am having an issue with loading a list view control with data from a datatable. What happens is that some rows will appear as normal, and other will not. For example, the first row will appear as expected having all of the cells filled with data. The second row or third row will not but...

Part and Inventory Search

Back
Top