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 gkittelson 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. TZRick

    How to access two different records within the same table in one detai

    Okay. Here is an update. I was able to create the report (with the help of a colleague) using a sub-report. Here's how it works: Firstly, I pulled all of the Job Orders (Contact1.Key1='Job Order') and had them displayed. Secondly, I created a sub-report that linked on the...
  2. TZRick

    How to access two different records within the same table in one detai

    FYI: Two individals on different forums responded to this post. Here are the responses: "You'll need to add one of the table to the report twice, when you do a dialog box will come up and ask you if you want to give it an alias. You can figure it out from there." ". Click on report menu tab ...
  3. TZRick

    How to access two different records within the same table in one detai

    FYI: The Link Field used is Contact1.Accountno (for Key1=Job Order)=ContSupp.Title
  4. TZRick

    How to access two different records within the same table in one detai

    Hello experts! I am having a bit of an issue with one report (Crystal Reports 9). The tables I am working with are as follows: Contact1 AccountNo, Company, Contact (aka Candidate Name or Job Order Number), Key1 (aka Record Type: Candidate, Job Order)... ContSupp AccountNo, Title, Contsupref...
  5. TZRick

    Easy question: Error with Dictionary Obj

    Thank you for your help. I improvised and ran the query twice to get the correct output.
  6. TZRick

    Easy question: Error with Dictionary Obj

    Error Type: Microsoft VBScript runtime (0x800A01A8) Object required: '' C:\INETPUB\WWWROOT\IMSS\ADMIN\../radiologist.asp, line 60 Code for line 60: <font size=5 color=yellow>TELERAD & FLUORO: Dr.&nbsp;<%=arrOnCall(count).item ("fname")%>&nbsp;<%=arrOnCall(count).item ("lname")%>
  7. TZRick

    Easy question: Error with Dictionary Obj

    True. I caught that just now. My current code is: dim arrOnCall () dim fname, lname, beeper, home count = 0 while not oRs.EOF redim arrOnCall (count + 1) Set arrOnCall(count) = server.CreateObject("Scripting.Dictionary") fname = oRs("first_name") lname = oRs("last_name") beeper =...
  8. TZRick

    Easy question: Error with Dictionary Obj

    Hello experts! I am getting an "Object Required" error when trying to access an element of a dictionary. I have a database connection which performs two queries. The first query is saved in a dictionary object as follows: dim arrOnCall () count = 0 while not oRs.EOF count = count + 1...
  9. TZRick

    Simple Java 3D - Unable to apply Transform3D to rotate object

    Hello experts! I have a project that has been quite frustrating to me. Please help me get the rotation work... Below is a function that is called by clicking on a JButton. This code works: private void zoom(boolean in) { Transform3D zoom = world3d.zoom...
  10. TZRick

    Problems synchronizing events in web forms using web user controls

    Paul, THANK YOU SO MUCH for the help! I have been struggling with this problem since last week and it has been killing me! You have really helped me out big time! Thank you again so much!
  11. TZRick

    Problems synchronizing events in web forms using web user controls

    Hello everyone. I have just begun using Web User Controls in my Web Forms. The problem I am having is that the contents of the controls take two page load events before ViewState contents are successfully shown in modules as well as WebForm1. I need a way to be able to update all controls with...

Part and Inventory Search

Back
Top