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 Rhinorhino 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 SoftwareRT

  1. SoftwareRT

    Need some help with "nicegui"

    Glad you got it working.
  2. SoftwareRT

    Need some help with "nicegui"

    Hi, you should just be able to run a timer that a) reads from your csv, b) passes new value to GUI. See code below. from nicegui import ui import pandas as pd # Initial chart setup with placeholder values echart = ui.echart({ 'xAxis': {'type': 'value'}, 'yAxis': {'type': 'category'...
  3. SoftwareRT

    BUG0392 error

    Could be either. Did you make any CDN or Phantom changes before the bugs prints? These types of bugs can be notoriously hard to isolate. Here's how to start narrowing it down: Check how many BUG0392 reports you're seeing. If it’s just a few, it might be an edge case. If you're getting a lot...
  4. SoftwareRT

    BUG0392 error

    Bug392 is a software registrar error. Zero value in CDR_XFER_TIME means that the system is encountering a situation where the Call Detail Record (CDR) transfer time value is zero, which is not expected or valid for the SETMISCELLANY procedure. Procedure SETMISCELLANY is likely handles system...
  5. SoftwareRT

    Click to dial

    The solution would depend on which Avaya you have (Aura or IP Office)...Both solutions I can think of are CTI. For AURA: CTI -- Avaya support via the AES platform and the DMCC (Device, Media, and Call Control) API.... How It Works: A. User's J189 phone is registered to Avaya Aura /...
  6. SoftwareRT

    Filters in access forms

    So, you want to show 'only active users' in the dropdown for 'new selections', but still display inactive users if they were previously selected (for historical data)? If so, try this Primary Investigator Combo Box Rowsource: SELECT L.USERID, L.INVNM FROM tblLOGIN AS L INNER JOIN...
  7. SoftwareRT

    Please help with my access report

    So, you're looking for something like this: Group 1: Pages 1–8 | Labeled: 1–8 Group 2: Pages 9–16 | Labeled: 1–8 Group 3: Pages 17–24 | Labeled: 1–8 If so, let's call each collection of pages a SET and create these variables in your report's VBA (view code) Private m_PageInSet As Integer...
  8. SoftwareRT

    Help with Nortel CICS : Do I have CLID?

    Here's a breakdown: NT7B69AAAA: This is a Standard Analog Trunk Cartridge for the Nortel/Norstar systems. It does not support Caller ID (CLID). NT7B75AAAE: This is a Caller ID-capable Analog Trunk Cartridge (also called a CLID trunk cartridge). This is the one you would need to enable Caller ID...
  9. SoftwareRT

    Question about analog extension modules

    Just placing this here, not a real solution but it is a possibility ... https://www.amazon.com/Wekuant-Telephone-Ethernet-Fiber-Converter/dp/B0DC9XYHSR...
  10. SoftwareRT

    ODBC Driver Struggles on new computers

    1) Your old Access database is using an ODBC connection with SQL Server Native Client 11.0 (which is actually quite old — it's from around SQL Server 2012). 2) On Windows 11, Microsoft no longer installs SQL Server Native Client 11.0 by default. Instead, they push ODBC Driver 17 or ODBC Driver...
  11. SoftwareRT

    List of abandoned call numbers.

    Hi, In CMS Supervisor, Reports --> Historical Tab --> Other --> Call Records. Input date in in mm/dd/yyyy (2/7/2025) Format. Time hh:mm format and press run. You'll see first image below. NOTE: You can also pull this data from ODBC and Putty. NOTE 2: You can also save report in designer and...
  12. SoftwareRT

    Unrestrict Guest room phones

    I was thinking about this, and I have a concern... If you only change the switch side, for example you find that a checked-in room is COR 5 with FRL 5 and a checked-out room is COR 1 with FRL 1, so you then change COR 1 to FRL 5...Make sure that on check-out, the voicemail box is shutdown and...
  13. SoftwareRT

    Unrestrict Guest room phones

    I think you have to find out which component the PMS is sending check-in/checked-out commands to (usually a hotel voicemail system). When PMS sends check-in(s), the VM system buffers the request(s) and does the following: 1) Opens the extension for outbound dialing (a COR) setting. 2) Opens the...
  14. SoftwareRT

    dubt on API response

    Based on the API response, the email gss.italy@iol.it is not fully valid for delivery. A quick breakdown --- syntax_valid: true -- The email format is syntactically correct. is_disposable: false -- The email is not from a disposable email service. is_deliverable: false -- The email is not...
  15. SoftwareRT

    Cleaning fields with zeroes

    Your code is fine. How about this: FOR NF = 1 TO 12 * Format NF as a two-digit number strNF = TRANSFORM(NF, "@L 99") * Build the object name dynamically txtFieldName = "thisform.txtNFAVRPg" + strNF * Set the ForeColor property directly IF YNFAVRPG(NF) <> 0.00...

Part and Inventory Search

Back
Top