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

    2 network cards in windows xp pro

    Did you try turning off routing? It seems to me that your IP address to the "web app" is sometimes being sourced from your "Internet Nic" and sometimes from your "Private NIC" If from your "intenet NIC" the Private Network App wouldn't know how to get back to you unless it new of a route to...
  2. LtLeary

    Run a program without user intervention

    You may also want to try looking for some command line switches for your application. To see if your application does, you can try some of the following techniques... 1. Check the help file for startup or "command line switches" 2. From a command prompt, try the good old standby /? (e.g...
  3. LtLeary

    Run-time Error '3024': when making a selection on a combo box

    You may want to take at your sql statement. SQL = "SELECT City, St, PrjTyp " & _ "FROM lnk.stores " & _ "WHERE ([StoSeqNum] = '" & Me![Combo11] & "');" You are specifically stating that you are wanting to use the Stores table in the "lnk" database. Assuming your current...
  4. LtLeary

    WIndows Shutdown time

    It looks like you have addressed all the "usual suspects" so try this... Boot into "Safe Mode" Shutdown Boot Normally Shutdown. I have found that this oftimes helps clear up rogue processes that write to the registry before shutting down. Hope this helps. Lt
  5. LtLeary

    Access Point

    Well, strictly speaking, think of an access point as a "wireless layer 2 switch." It doesn't do things that we take for granted in a wireless router such as NAT, DHCP serving, VPN, firewalling, etc. But if you change from an AP to a wireless router, (with the possible exception of APs embedded...
  6. LtLeary

    That Stupid Little Access 2002/2003 Report Icon

    I see it in the program files\Microsoft Office\office11\msaccess.exe. I used iconfilter 1.7 and it found it showed it as icon #8 in msaccess.exe. Good Luck Lt
  7. LtLeary

    End of Month Balance Expression within a Text Box

    If you want to send me a sample of your code at ltleary2000@yahoo.com I'd be glad to take a look at it. LT
  8. LtLeary

    End of Month Balance Expression within a Text Box

    Actually, I re-read what you were trying to do so I put the following in a text box in the Month FOOTER not header. That way it shows more appropriately what carry forward balance is. =Sum([deposit])-Sum([contribution]) And then select Running Sum OverAll. You should end up with something...
  9. LtLeary

    End of Month Balance Expression within a Text Box

    It seems to me that you just about have it on your own! As you state, you can allready get the current period "delta" of deposits to contributions so getting the TOTAL value should be a simple change to your formula that calculates from the "absolute" beginning (i.e. if you started...
  10. LtLeary

    Report Margins

    I'm not quite sure if this is what you are looking for but... ' Open the report in design View DoCmd.OpenReport "test", acViewDesign ' Set your margins (default is pixels where 1" = 1440 ' Pixels Access.Reports("test").Printer.LeftMargin = 770 Access.Reports("test").Printer.TopMargin = 1440...
  11. LtLeary

    How to Print Programatically to Microsoft Docuement Imager

    I can't seem to print to the Microsoft Document Image Writer programatically. Or rather, I can input everything right up to the "file name" prompt and haven't been able to determine how to pass it the file name. I can't export the report as it uses a chart so printing to file is about the only...
  12. LtLeary

    Dell bluetooth/keyboard combo not working well

    Try this... With your wired keyboard attached, go into the CMOS settings and see if you see something like "enable Legacy USB support" or something to that effect. If that is not enabled (and from your description it is not) go ahead and enable, reboot, pair up your keyboard/mouse if not...
  13. LtLeary

    belkin f5d7231-4 bridge mode

    On the "Router" you are going to use as an AP.... 1. Turn Off DHCP 2. Connect a Lan Port on the AP to a LAN port on the "ROUTER". (Do not connect using the WAN port) 3. Assign an IP Address to the AP That should be it. Good Luck Lt.
  14. LtLeary

    Bluetooth Devices, Dongles & Built-In Bluetooth on Laptops

    I have a Dell XPS (Gen 1) laptop with the BT355 module installed. To date, I have successfully used my Microsoft Bluetooth Elite Desktop (keyboard and mouse), a Microsoft Notebook 8000 mouse, a Logitech Bluetooth Notebook mouse as well as a Logitech Bluetooth MX900 Mouse and Keyboard. Lets...
  15. LtLeary

    Registry strings vs CRLF vs Regedit

    Are you thinking of perhaps a REG_MULTI_SZ? REG_SZ is normally used when you want a single value in a string and REG_MULTI_SZ when you want multiple values in the the same key (like an array) Here is a small excerpt on how to do it with WMI. This assumes you already have a key called...
  16. LtLeary

    How to recover 'damaged' Sandisk Cruzer Mini 256MB?

    I just expereienced this same issue and this is what I did to resolve. Step 1. Back up your registry. Step 2. Look and see if you now have a key called HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\USB\Vid_0781&Pid_1234 and a key called...

Part and Inventory Search

Back
Top