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 strongm 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. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. SoftwareRT

    Can I move My Apple Mail Emails to Outlook?

    Found this in MS Answers. For Outlook on macOS: Built-in Import Feature: Open Outlook for Mac. Navigate to the "Tools" tab and select "Import." In the Import dialog box, choose "Outlook for Mac archive file (.olm)" and proceed. Follow the on-screen instructions to complete the import process...
  7. SoftwareRT

    Split Function not working

    My guess is you're trying to use OpenArgs (the information you passed to the form) too early in the form's setup process. The Form_Load event happens very soon after the form starts, and while OpenArgs is available, it sometimes doesn't behave correctly at that point. To fix this, move the code...
  8. SoftwareRT

    Send sms via twillo provider

    Start with something like this: Ensure the MSXML2 library is registered on your system. Microsoft XML 3.0 or later installed and registered on your system. Private Sub SendSMS() Dim xmlHttp As Object Dim URL As String Dim AccountSID As String Dim AuthToken As String Dim...
  9. SoftwareRT

    Meridian 1 Basic programming

    What is the TN? If I recall, the 2616 should power up (LED Backlight) from just being connected to the TN (regardless of programming). I think the TN port put out 24 or 48 VDC (again, long time ago, so I'm not sure).
  10. SoftwareRT

    Option 11 Universal Trunk Card Pinout

    The NT8D14 typically uses an Amphenol 50-pin connector. Each port corresponds to a pair of pins (one for Tip, one for Ring). Pinout for 8 Ports onNT8D14 The odd-numbered pairs are used for the analog CO lines. Port Number Tip Pin (Amphenol) Ring Pin (Amphenol) Tip Color (Wire 1) Ring Color...
  11. SoftwareRT

    Option 11 RJ-21 Pinout

    The NT8D02AB typically uses an Amphenol 50-pin connector. Each port corresponds to a pair of pins (one for Tip, one for Ring). Pinout for 16 Ports on NT8D02AB Port Number Tip Pin (Amphenol) Ring Pin (Amphenol) Tip Color (Wire 1) Ring Color (Wire 2) Port 0 Pin 1 Pin 26 White/Blue (W/Bl)...
  12. SoftwareRT

    Avaya CMS Report based on isplit table (total calls for today with summary)

    Not sure if this is relevant: https://www.tek-tips.com/threads/cms-custom-integrated-report-skill-summary.1228959/ About your question, do you have ODBC access to CMS? ODBC will get you historical data and allow you to summarize as needed. (see the attached .jpg) to check your system. If, the...
  13. SoftwareRT

    PDF to text converter for batch folder processing

    I can do this in python. It would be a .exe. Essentially, it would work like this: A supplier saves their version of invoice as a .pdf. They launch the .exe, it reads the pdf file and parses out the sections. The sections will likely be wrong the first scan, so the pdf owner interacts with the...
  14. SoftwareRT

    TTY phones (teletypewriter) compatible with Microsoft Teams

    Not that I know of, but it would be an interesting project. What's the concept -- I mean, there's already chat in teams, couldn't the hearing-impaired person just use that or am I missing something? Or are you saying you want speech to text (where people are speaking, and it's converted to text...
  15. SoftwareRT

    Access VBA Syntax Error

    I think jedraw is correct. "Division = '" & rs.Fields("Division") & "'" Adding single quotes around rs.Fields("Division") ensures the value is treated as a text string in the SQL filter.
  16. SoftwareRT

    Music on Hold for Idle handsets

    I'm not in front of the switch at the moment, but couldn't you create a VDN that goes to a wait time xxx seconds/mins/hours hearing music?
  17. SoftwareRT

    scraping table in web page

    Oh, sorry. I was testing in Access (VBA) bot.start not VB 6.0 com. For VB6, try: Option Explicit Private Sub WebAutomationSelenium() Dim bot As Object Dim Table As Object, Rows As Object, Row As Object, Cells As Object, Cell As Object Dim i As Integer, j As Integer '...
  18. SoftwareRT

    scraping table in web page

    Since you have installed selenium and chromedriver, you can try the code below. This code is a classic scraper in that it attempts to automate human interaction with the page. If you Step through the code (F8), you should see each interaction and be able to troubleshoot any issues that arise...
  19. SoftwareRT

    scraping table in web page

    Below is a good start but I could not finish. I tested to clicking the Cerca button, but the table disappeared? Note: I ran this in an Access Module so I could F8 Step through code. If you load this into excel, I think you'll have to reference Internet Controls in VBA In the VBA editor, go to...
  20. SoftwareRT

    SetFocus not working

    If this.Value = CTOD(" / / ") this.BackColor = RGB(255, 128, 128) this.SetFocus RETURN .F. && This stops the cursor from moving to the next field ELSE this.BackColor = RGB(255, 255, 255) && Reset to default color if valid RETURN .T. ENDIF In FoxPro, RETURN .F. and...

Part and Inventory Search

Back
Top