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: *

  • Users: Luzbel
  • Content: Threads
  • Order by date
  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

    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>...
  4. 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?
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. 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...
  12. 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...
  13. 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...
  14. 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...
  15. Luzbel

    Restrict comboboxes info change after record saved

    I have a subform with a record that contains 3 comboboxes and a couple of text boxes (hidden and visible) and an “Available” checkbox. I am trying to restrict the user to modify the records after they have been entered them; using only the “Available” checkbox if they do not want to use that...
  16. Luzbel

    RTF (Rich Text Format) field to ASCII Text

    I have uploaded a 700,000+ table in SQL Server 2005 and one of the fields is in RTF Format I need to convert it into ASCII Text. If possible, I can add another field for the conversion. I might access it in Access 2007 if need to use VBA code.
  17. Luzbel

    Multiple lines in tab caption

    I have a tab control in my form which I created in Access 2003 on Windows XP. Since the name (Caption) is a bit long I use CRTL+Enter so that it continues below. When I view the same form on Access 2003 on another PC the name is displayed on one whole line with blocks where there used to be a...
  18. Luzbel

    Subdatasheet to Form

    I have a Food Menu ordering database. There is a daily menu and in that menu one can order any amount of food in that particular menu. I have these two tables where I want to create a form to enter the quantity. MenuItems (Table) MenuItemsID (PK) FoodID (FK from Food Table) MenuDayID (FK)...
  19. Luzbel

    Relationship problem when inserting records

    I am making a menu ordering system. These are the main tables: MenuByCycle MenuByCycleID (PK) Year CycleID MenuByDay MenuByDayID Day MenuByCycleID (FK to MenuByCycle) MenuByDiet MenuByDietID TypeOfDietID (PK) MenuByDayID (PK, also a FK to MenuByDay Table) FoodPerMenu FoodByMenuID (PK)...
  20. Luzbel

    Link unbound form to bound form

    I have a database that in Table form it shows the subdatasheets that make refrence to the main table. It is basically a Menu ordering system. Goes something like this: MenuByCycle (Contains: Cycle and year), MenuByDay (Contains: Day), MenuByDiet (Contains: TypeOfDiets), FoodItemsByMenu (The...

Part and Inventory Search

Back
Top