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. Luzbel

    Connecting HVAC controller to network

    I have a network with multiple Cisco 9300 Switches and 9606 Core switches. We had a PC connected directly to a Carrier i-Vu XT Router. The PC needs to be moved to another building. I connected the router to the switch for that building on VLAN 202. The switch connects directly to the core and to...
  2. Luzbel

    Is ARP Connection oriented or connectionless?

    Is ARP Connection oriented or connectionless? It uses TCP, but does that consider it connection oriented? In the same sense would the following be connectionless too: HTTP, SMTP, SNMP, POP3, Frame Relay?
  3. Luzbel

    Validate textboxes using event handler registration

    Sorry, I meant DOM Level 1.
  4. Luzbel

    Validate textboxes using event handler registration

    I am trying to keep it on DOM Level 0. I tried that code but got Uncaught TypeError: Cannot read property 'addEventListener' of null
  5. Luzbel

    Validate textboxes using event handler registration

    I have a piece of JavaScript code that should validate that a username field is not empty or null and that a telephone field is in the correct format using event handler registration. It seems to be validating fine but if there is an error it still manages to submit. HTML <html> <head>...
  6. Luzbel

    Programming keys on Meridian M2616

    We just got "new" Meridian M2616 phones (an "update" from analog lines). Years ago, I could program Norstar M7208 phones but am in a new job and don't have administrator access. Is it possible to add a function to one of the 10 keys currently available on the phone, without the phone administrator?
  7. Luzbel

    Access Report: Lebans' Rtf2 Height Issue

    I'm using Lebans' RTF2 Control to display a varchar field from a SQL table in an Access Report. The RTF text in a field can span up to 5+ pages. I am having problems displaying the text when it exceeds one page. Using the following code I get the error: "The control or subform control is too...
  8. Luzbel

    RTF2 Leban's Control not displaying

    I have even tried with Microsoft Rich Textbox Control 6.0 (SP6) and get the same outcome.
  9. Luzbel

    RTF2 Leban's Control not displaying

    I have a database where some fields are text with RTF (Rich Text Format). I need to display this text in a Report. I had originally used the Leban's now defunt RTF2 Control to display the RTF. I noticed that some RTF is not being displayed. This is an example: {\rtf1\ansi\ansicpg1252\uc1...
  10. Luzbel

    Display textbox control in subreport when it has No Data

    In a subreport I created a sub on detail_format event that will display a text when there is no data returned. ‘Code in sub-report Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer) If Me.Report.HasData Then Me.Label43.Visible = True Me.txtNotEntered.Visible = False...
  11. Luzbel

    Multi tiered top navigation

    I have a site within a site and would like to see this site appear as a drop down menu in the top menu bar (ID="TopNavigationMenu"). In the default.master page I have edited the following: StaticDisplayLevels="2" MaximumDynamicDisplayLevels="3" In the Menu Navigation I added the top site to...
  12. Luzbel

    Replacement motherboard

    The PC came with a card reader already. The other two USB cables are for four USB Ports on the top of the case. That's why I need a motherboard with at least three USB header ports. I can live without the firewire port (IEEE 1394). The example you provided only has two USB header ports. I...
  13. Luzbel

    Replacement motherboard

    My motherboard died and I need to find a replacement motherboard that will fit my case. It was originally an Acer M5640 AM5640-B54045A. The motherboard is microATX (9.6 x 8). The case uses 3 internal USB 2.0 ports, 1 1394 internal port, 1 front panel connector block (13 pins), 1 audio connector...
  14. Luzbel

    Autoload frontend

    I have an Access 2000 file with the backend in SQL Server 2005. The Access file is currently in a shared folder. The 40 users have already have the shortcut on their Desktops. I need to make an Access file VBA code routine to create a file in each users “My Documents” folder and have them run...
  15. Luzbel

    There is no object in this control fix with VBA on load.

    I have been reading a lot about having the front end locally. I will analyze this later or on another post. Thanks for that. Either way back to my post… I would like to know if there is a way to check if a specific OCX is registered via VBA on a machine without administrative privileges.
  16. Luzbel

    There is no object in this control fix with VBA on load.

    I created an access application using the datetime picker activex control (mscomct2.ocx). I've noticed that if I run a form with the object and the ocx file hasn't been registered (even after I register it on the pc) it will not load unless I replace the access application. Usually I get the...
  17. Luzbel

    Regional date settings on Access PC different than on SQL server

    Thanks for the reply. I had used the following format statement and worked. Format(Me.DTPickerFechaMenu.Value, "yyyy\/mm\/dd\") Aperently this way no matter in what order the date, month or year is and instead of using the regular date seperator "/" like a "." or "-". So I ended up using...
  18. Luzbel

    Regional date settings on Access PC different than on SQL server

    I have an Access database with the backend in SQL Server 2005. I am using a couple of DateTimePicker ActiveX Controls on my forms. I have noticed that some users have their regional settings option for the date in format dd/MM/yy. My SQL database saves the information as MM/dd/yyyy. When running...
  19. Luzbel

    Find out changed data

    I have Table A and Table B which are similar. Table A is the main table and makes a copy to Table B. Some records in Table A are either added or deleted. Table B is later refreshed with the records in Table A to match it. How can I pragmatically know which were the records that were deleted and...
  20. Luzbel

    Temporary table or not

    I have a hospital food menu ordering database. I made one table which houses the menu and another which is the order table. The way I made the form is that when a particular menu date is viewed the Order table is filled with the Menu Table, so the user can see the menu AND enter the quantity...

Part and Inventory Search

Back
Top