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 Mike Lewis 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. jimktrains

    RHEL 7 limit user logins

    We have an application running on a RHEL 7 server that requires user licenses to run. We would like to limit certain groups to a set number of logins so they don't use more licenses than they have been allocated. I tried using the /etc/security/limits.conf file to do this but it isn't working...
  2. jimktrains

    textbox ontextchanged event doesn't fire with specific dates

    I was trying to create a small program to duplicate this. I couldn't get it to reproduce the problem until I added the Ajax Calendar Extender. Even if you load the field in Code Behind, it takes it and redisplays it, eliminating leading zeros from the month and day, thus changing the field...
  3. jimktrains

    textbox ontextchanged event doesn't fire with specific dates

    I may not have explained well enough. The user selects a record from a grid on another page. This passes the selected data from that page to the next one (via querystring parameters). The next page retrieves the record based on the data passed from the previous page. It then populates the...
  4. jimktrains

    textbox ontextchanged event doesn't fire with specific dates

    I have a textbox that is for a date field. There are two DropDownLists that get loaded after the date is entered because what is available in them depends on the date entered. There is a OnTextChanged event attached to the textbox. When the user enters a date, the DropDownLists are always...
  5. jimktrains

    Outlook 2003 Options Window too big

    It is 96. It puzzles me that other windows look fine. If I select Tools, then Customize, that window looks normal. If I select Edit, then Categories, it looks larger but I am able to view everything. Another thing I checked that I didn't list in my original post was the Tahoma font...
  6. jimktrains

    Outlook 2003 Options Window too big

    I have Outlook 2003 SP3 running on Windows Server 2003 Enterprise Edition SP2. Recently I've noticed when I read an email, the From, To, CC, and Subject lines are bold. The text of the email is fine. The same thing if I compose an email. Then I went to Tools, Options and the display is...
  7. jimktrains

    notify user that changes were made

    I have come up with a solution. I've added a textBox field called txt_recLoaded that is initially set to "false" with the following line, if (!IsPostBack) txt_recLoaded.Text = "false"; Notice it is literal "false" and not bool false. Here's my javascript. <script type="text/javascript">...
  8. jimktrains

    notify user that changes were made

    I tried having a textbox with an ID of changed and set it to "false" initially. The problem is, when the data is loaded from the database, the onchange event fires and sets it to "true". I've even tried setting the textbox.text to "false" in the codebehind after the data was loaded (by loaded...
  9. jimktrains

    notify user that changes were made

    I have a page where a user selects an item and then the page is populated from a database. I set a javascript variable "changed" to false and each field has an onchange event that sets "changed" to true so when the user leaves the page without saving, they will be notified. But I noticed...
  10. jimktrains

    lpstat -t reports printers that no longer exist.

    /etc/printcap only shows PR2 and PR3. The /var/spool/lpd directory shows drwxrwxr-x 2 root daemon 512 Apr 17 10:44 FRTPRT drwxrwxr-x 2 root daemon 512 Apr 17 10:44 LIABILITY drwxrwxr-x 2 root daemon 512 Apr 19 16:49 P11 drwxrwxr-x 2 root daemon 2560...
  11. jimktrains

    lpstat -t reports printers that no longer exist.

    All permissions and owners are the same. I ran integrity and nothing came back. The only printers that should exist are PR1, PR2, PR3, and P12. Here's the output of lpstat -t # lpstat -t P11: queuing is enabled Windows 2000 LPD Server Error: specified...
  12. jimktrains

    lpstat -t reports printers that no longer exist.

    When I run lpstat -v, it only shows two printers (there are four). When I run lpstat -t, it shows 9 printers, including the four that should be there. I added one in lpadmin, then removed it and it doesn't show now, but where is lpstat -t getting it's info and why isn't lpstat -v showing all...
  13. jimktrains

    Accordion Menu of Ajax Toolkit

    I have a Master Page that has an Accordion Menu that works fine. In a page that uses the master page, I want to use another accordion menu. But when I do, the accordion header and content are separated by a large space. The Accordion headers are also sepearated by the same space when not...
  14. jimktrains

    Tabcontainer TAB position

    I have an ajax toolkit TabContainer with 7 TabPanels. The Tabs are at the top left. On one TabPanel, I have another TabContainer with 2 TabPanels. The Tabs on this one are at the top right. Is there a way I can get them to the top left like the first one?
  15. jimktrains

    Different login prompt

    getty was running on that port. I just wanted to know if there was some possibility of something unix was doing other that the normal login. I too believe it was connected to something else. All I had to rely on was the customer's interpretation of what they were seeing.
  16. jimktrains

    Different login prompt

    I thought so too, until I had them unplug it from the server and it stopped answering. The modem won't answer if it is not attached to something. And while attached to the modem, I had them disconnect the cable from the modem and the prompts stopped, so it wasn't the modem. They also tried a...
  17. jimktrains

    Different login prompt

    We have a customer running Openserver 5.0.7 on an HP ML350 G6. We use a modem to connect to their system for support. Today, when connected, the login prompt didn't have the normal SCO OpenServer(TM) Release 5 message and the login prompt was Login: not login: and when I entered the Password...
  18. jimktrains

    ConfirmButtonExtender not working

    I found the problem. I had a function in the <script> section that I named confirm(). When I take it out, the confirmButtonExtender works. Put it back in and it didn't work. So I renamed it doconfirm() and it works. Is there some conflict with a reserved keyword of confirm? Maybe in the...
  19. jimktrains

    ConfirmButtonExtender not working

    I have several pages where I use a ConfirmButtonExtender for my Delete button and they all work except for on one page. When I click the Delete button, nothing happens. No Cofirm message box, and the onClick event never fires. If I remove the ConfirmButtonExtender, the onClick event will...
  20. jimktrains

    Tab delimited has \240 codes

    I found a way to strip it out of the text file on unix. The \240 is an octal character for something unprintable. So I used this unix command tr -cd '\11\12\40-\176' < infile > outfile and my outfile is free of the codes. I guess it is the creator of the Excel file that put that in there...

Part and Inventory Search

Back
Top