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: newjim
  • Content: Threads
  • Order by date
  1. newjim

    JSON keys with spades

    Can you put spaces in a JSON key? My JSON object comes from a database so I can't change it. For example, "first Name" below has a space in it. var JSON_text = { "first Name": "John", "lastName": "Smith } Using eval("JSON_text." + "first Name") or eval("JSON_text[" + "first Name" +...
  2. newjim

    Close window

    Is it possible to close a window or program in Python? I use Python to programmatically open a CHM in its own window by giving it the path and filename. Later I want to close that CHM. I would like to do that by somehow accessing it from Python and closing it. Is that possible? Thanks.
  3. newjim

    PEGetNParameterCurrentValues

    Has anyone seen this error message? Unable to process the crystal report...Error:656 Error in File... <Retrieve> ParamFields[8].Ranges <PEGetNParameterCurrentValues> I'm using 8.5 and running Crystal inside of a second program. The report works fine when I run it outside of this second...
  4. newjim

    Sorting subreport by parameter in main report

    I would like to have a parameter in my main report where the user can specify the sort order for a subreport, for example, "category" or "startdate". I've made a formula to create a shared variable from this main report parameter: Shared StringVar subReportOrder; subReportOrder := {?History...
  5. newjim

    Connect to multiple servers using Query Analyzer T-SQL

    I need to compare userids in tables in databases in two SQL Servers running on two machines. I would like to do this using the Query Analyzer, for speed. Something like: --connect through Query Analyzer gui to 1stSQLServer select userid from 1stSQLServer.users --connect to 2nd SQL Server...
  6. newjim

    Calling SQL Server functions from Crystal

    Can you call a SQL Server function from Crystal 8.5? I can't use stored procedures in my environment, so have created a SQL Server function that accepts a parameter and returns a single value. However, I can't see that function in the Database window of Crystal, so can't use it. I've also...
  7. newjim

    NetBeans Wizards Disabled

    Anyone know why NetBeans wizards are partially disabled in 3.5.6 and greater? I have 3.5.1., and when I invoke the new class wizard, it gives me several pages where I can add new members, methods, superclasses etc. All of that is gone in 3.5.6; you just get the basic shell of the class.
  8. newjim

    DETERMINING VERSION OF CRYSTAL REPORTS

    Is there a way of determining which version of Crystal Reports a particular report was written in?
  9. newjim

    OMIT TOP OF PAGE FORMAT FOR FIRST PAGE

    Hello All I have the top of page format working, but want to omit that format for the first page. Dang, no matter what I do, it keeps showing up. Any ideas?
  10. newjim

    ErrorDocument 401

    I have an ErrorDocument 401 /401.php line in my .htaccess file in https-enabled document root. When a user enters a bad login or password, Apache gives me the default 401 message, then Additionally, a 401 Authorization Required error was encountered while trying to use an ErrorDocument to...
  11. newjim

    IMPORTING MULTIPLE VCARDS IN OUTLOOK

    Is it possible to import multiple vcards into the Outlook Contacts folder? I click File>Import and Export, then vcard and browse to my vcard folder and select them all, but Outlook only puts the first or the last into my Contacts.
  12. newjim

    Showing Results When Parameter is Blank

    I have a parameter field for &quot;Title&quot; in my report which is used as a record selection field. Sometimes I want to select only those records where the Title field is blank. How do I do this? If I make the parameter '', or 'NULL', it shows nothing.

Part and Inventory Search

Back
Top