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

  1. ClarkJeff

    Get User File Permission

    Is there a way find out if a specific user id has access to a specific file? Do I have to iterate through the DACL to see if the user is a member of a READ group? Is there another/better way to do this? Thanks.
  2. ClarkJeff

    HEX Values

    Mohamed, You'll probably need to loop through each character, using the VB Hex() function, and then another internal loop to check if each bit is on or off. Haven't tested it, but something like: for i=1 to len(strInput) strHexOutput=strHexOutput & Hex(mid(strInput,i,1)) for j=7 to 0 step -1...
  3. ClarkJeff

    HTTP POST to Upload Binary, PDF, etc

    Anyone have any ideas on how to post PDF and binary files on a server to another server via a HTTP POST? I've been searching the web and have found some examples, but I can't seem to get them to work properly. I'm using Dundas' free upload component on the receiving server. I suspect it's...
  4. ClarkJeff

    Error 2147190908 Failed to export the report (PDF)

    I have a batch VB task that wakes up every minute (via Windows task scheduler) to see if there is work to do. If there is, it loops numerous times through. For each iteration, it opens a report, changes the parameters slightly, and exports it to PDF, all using the CRAXDRT.Application...
  5. ClarkJeff

    8x24 DR5 / StarTalk Flash / Hunt Group?

    Excellent ideas, thanks! I just tried it and it appears to work ok. I'll have the "Support" option in the AA transfer to the previously unused extension. Is there any way to show the "Message For You" status of that extension on the support phones? That way, they'll know...
  6. ClarkJeff

    8x24 DR5 / StarTalk Flash / Hunt Group?

    I have an 8x24 DR5 with expansions and StarTalk Flash. I'd like to be able to ring the Customer Support Department (6 people) whenever the incoming caller doesn't dial anything. This release doesn't appear to have Hunt Groups. Is there any way to accomplish this? One thought is to somehow...
  7. ClarkJeff

    8x24 DR5 and analog devices

    I have an older 8x24 DR5 with expansion modules and would like to add some analog devices (fax, modem, alarm, etc.) for dialing out through the Line Pool. Is the Analog Terminal Adapter my only option, one per device? Or is there Analog Module that will give me multiple connections? Thanks...
  8. ClarkJeff

    Getting Started - Programming M8x24 with StarTalk Flash 2

    Jerry, Thanks for the link! I'm trying it now... Jeff Clark
  9. ClarkJeff

    Getting Started - Programming M8x24 with StarTalk Flash 2

    New2Norstar, How's it going with your phone system? I'm now in a very simliar situation, but with no installation manuals... The equipment was purchased from eBay. I have the System Coordinator Guide only and have found wiring diagrams on the web. Do you have any tips on the installation...
  10. ClarkJeff

    VB EXE calling DLL with CR repeatedly-Invalid Procedure Call

    IdoMillet, Thanks for the response. I'm using CR9 Developer. The DLL is called directly from Active Server Pages AND from an EXE. The AS pages are on-demand, when the customer chooses to print, the EXE is scheduled to wake up every minute to see if there is work to do, then calls the DLL if...
  11. ClarkJeff

    Crystal 9: Unicode and Special Characters

    NBudd, I'm having similar problems. The reports look fine on the screen, but print garbled only on Windows 98/ME systems. So far only CR 9 reports, other PDF's print fine. It sounds like a CR Unicode problem, but I haven't found THE solution yet. Adobe suggests selecting to "Print As...
  12. ClarkJeff

    Export Problem

    Jode, For what it's worth, I'm also having the same problem. I just installed the CR 9 service pack 2, hoping that would fix it, but it didn't. Any exports from the view just sits there with the dialog box. I read somewhere about not having a crxf_pdf.dll (for PDF export) installed, but it...
  13. ClarkJeff

    VB EXE calling DLL with CR repeatedly-Invalid Procedure Call

    Help! On Winows 2000 Advanced server, I have a VB6 EXE that can repeatedly call a DLL (which calls CR RDC). The DLL is in COM+ and I can see the object working. If the EXE is repeatedly calling the DLL AND I have another process call that same DLL, I can see the Objects counter...
  14. ClarkJeff

    VB EXE calling DLL repeatedly-Invalid Procedure Call

    Sorry, I didn't mention that the DLL makes calls to Crystal Reports RDC. It appears to be a problem in Crystal Reports. I'll check on their website and post a message in the appropriate forum. Thanks. Jeff Clark
  15. ClarkJeff

    VB EXE calling DLL repeatedly-Invalid Procedure Call

    Update... It appears to only happen when I use the .Export method (which is always :) ... crxExportOptions.FormatType = crEFTPortableDocFormat crxExportOptions.PDFExportAllPages = True ... crxReport.Export False 'comment out and no errors ... Anyone? Any clues? Thanks. Jeff Clark
  16. ClarkJeff

    VB EXE calling DLL repeatedly-Invalid Procedure Call

    Help! On Winows 2000 Advanced server, I have a VB6 EXE that can repeatedly call a DLL. The DLL is in COM+ and I can see the object working. If the EXE is repeatedly calling the DLL AND I have another process call that same DLL, I can see the Objects counter increment/decrement, but the EXE...
  17. ClarkJeff

    CR 9 Modify/Save .RPT with VB6

    Update... I don't necessarily need to use the ActiveX viewer, just a viewer to be able to view, export, save, etc. Thanks. Jeff Clark
  18. ClarkJeff

    CR 9 Modify/Save .RPT with VB6

    I'm currently exporting PDF, DOC, etc. files from .RPT files with VB6. I'd like to be able to use the ActiveX viewer, which I understand looks at the .RPT file directly. I want to be able to programmatically change parameters on a .RPT, save the report WITH DATA to a new file, then view the...
  19. ClarkJeff

    Check out a free OLAP DHTML browser

    gaperry, Just out of curiosity, what are you using for a web front end to view OLAP data? I need to generate very simple reports from an OLAP cube, with grouping, but don't need the full pivot capability. Such as grouping by Product Name within Product Family within Customer. Ideally, I'd...
  20. ClarkJeff

    Copy multiple .DOC's into a single .DOC

    I'm trying to copy multiple .DOC files into a single new .DOC file, while retaining all formatting. In other words, if I have 5 1-page .DOC files, I want to create a new 5-page .DOC file. I can copy the characters, but am not able to retain the formatting. Any clues? Thanks! Jeff Clark

Part and Inventory Search

Back
Top