The MP3car.com Store The MP3car.com Blog    

Sponsored links

Go Back   MP3Car.com > Mp3Car Technical > General MP3Car Discussion

Reply
 
LinkBack Thread Tools Display Modes
Old 02-01-2005, 11:27 AM   #1
Maximum Bitrate
 
EBFoxbat's Avatar
 
Join Date: Jun 2004
Location: Massachusetts
Posts: 837
Startup is too fast!!!

I have a few programs that run in my tray on startup. Nothing to intensive just so programs I like to have run. One of them requires a live internet connection which I have with cable. However, the program tries to connect to the internet apparently before my computer has gotten its IP from my router. Thus I get DNS errors and stuff.

Is there a way to delay programs that run on startup? I only need it to delay 2 or 3 seconds. Any ideas? Would moving it into the startup folder do any good (right now it's just enable in msconfig)?
__________________
,./(0)3

'04 Canyon 4x4 pickup

[---PC on hold----working on external fiberglass "tool" box---]
EBFoxbat is offline   Reply With Quote
Advertisement
 
Advertisement
Sponsored links

Old 02-01-2005, 11:30 AM   #2
Maximum Bitrate
 
EBFoxbat's Avatar
 
Join Date: Jun 2004
Location: Massachusetts
Posts: 837
BTW google only offers programs that do this... I was hoping to do it with a registry hack or something.
__________________
,./(0)3

'04 Canyon 4x4 pickup

[---PC on hold----working on external fiberglass "tool" box---]
EBFoxbat is offline   Reply With Quote
Old 02-01-2005, 12:39 PM   #3
Newbie
 
Join Date: Dec 2004
Posts: 37
delete its registry startup entry and put it in the start menu starup folder... that may work
thecommiser is offline   Reply With Quote
Old 02-01-2005, 01:20 PM   #4
Maximum Bitrate
 
EBFoxbat's Avatar
 
Join Date: Jun 2004
Location: Massachusetts
Posts: 837
Quote: Originally Posted by thecommiser
delete its registry startup entry and put it in the start menu starup folder... that may work


Didn't work.
__________________
,./(0)3

'04 Canyon 4x4 pickup

[---PC on hold----working on external fiberglass "tool" box---]
EBFoxbat is offline   Reply With Quote
Old 02-01-2005, 01:29 PM   #5
Variable Bitrate
 
Join Date: Jan 2004
Location: Jersey/NY
Posts: 436
There's a way to run a batch file (*.bat), and in that batch file, delay for a little bit, and then run a program.

Sorry I don't remember the commands off of the top of my head, but it's not very hard.
wizawuza is offline   Reply With Quote
Old 02-01-2005, 01:29 PM   #6
Constant Bitrate
 
Ill1's Avatar
 
Join Date: Jun 2004
Location: Woodbridge, VA
Posts: 118
Use AutoHotkey, www.autohotkey.com , to create an exe that waits for a said amount of time and then runs whatever program you want. Off the top of my head the script would be something of this nature:

Sleep, 3000 ;wait 3 second
Run, FULL_PATH_TO_PROGRAM_YOU_WANT_TO_RUN

Compile the script and place it in your startup folder. This probably isn't what you were looking for, but it is a solution.
__________________
________________
______ILL.1______
Ill1 is offline   Reply With Quote
Old 02-01-2005, 02:32 PM   #7
Maximum Bitrate
 
EBFoxbat's Avatar
 
Join Date: Jun 2004
Location: Massachusetts
Posts: 837
I made a batch file and tossed that in the startup folder

Code:
@ECHO OFF ECHO Delaying gNotify start up. Please wait. SLEEP 1 CLS ECHO Delaying gNotify start up. Please wait.. SLEEP 1 CLS ECHO Delaying gNotify start up. Please wait... SLEEP 1 CLS ECHO Delaying gNotify start up. Please wait. SLEEP 1 CLS ECHO Delaying gNotify start up. Please wait... START "gNotify" c:\gmail\gnotify.exe

I wish there was a way to trick the file into thinking that I pressed the enter key.
__________________
,./(0)3

'04 Canyon 4x4 pickup

[---PC on hold----working on external fiberglass "tool" box---]
EBFoxbat is offline   Reply With Quote
Old 02-01-2005, 03:50 PM   #8
Maximum Bitrate
 
EBFoxbat's Avatar
 
Join Date: Jun 2004
Location: Massachusetts
Posts: 837
The SLEEP command won't work unless you download sleep.exe from microsoft.
__________________
,./(0)3

'04 Canyon 4x4 pickup

[---PC on hold----working on external fiberglass "tool" box---]
EBFoxbat is offline   Reply With Quote
Old 02-01-2005, 03:55 PM   #9
MySQL Error
 
jcdillin's Avatar
 
Join Date: May 2003
Location: Miami, FL
Posts: 4,353
why do you need to press the enter key?
__________________
肚子笑痛了
S60 Install
jcdillin is offline   Reply With Quote
Old 02-01-2005, 04:06 PM   #10
MySQL Error
 
jcdillin's Avatar
 
Join Date: May 2003
Location: Miami, FL
Posts: 4,353
Nevermind, I see your problem, if you make a shortcut to the gmail.exe file and keep in the same folder as the exe and change your batch file to the below it should make the dos window dissapear

Code:
@ECHO OFF ECHO Delaying gNotify start up. Please wait. SLEEP 1 CLS ECHO Delaying gNotify start up. Please wait.. SLEEP 1 CLS ECHO Delaying gNotify start up. Please wait... SLEEP 1 CLS ECHO Delaying gNotify start up. Please wait. SLEEP 1 CLS ECHO Delaying gNotify start up. Please wait... c:\gmail\gnotify.lnk

__________________
肚子笑痛了
S60 Install
jcdillin is offline   Reply With Quote
Old 02-01-2005, 04:06 PM   #11
MySQL Error
 
MatrixPC's Avatar
 
Join Date: Sep 2003
Location: Beach City, Socal
Posts: 4,035
Ask the 9 finger monkeys to help you out with a little VB proggy. Shouldn't be that hard (I can do it but will take me a while) for a pro like him.

BTW, but the program in the start up folder will run, but may have problem when returnning from hibernate.
__________________
2004 Matrix XR A7N8X-VM/400 AMD XP-M 2500+, DS-ATX
89 Supra Turbo P3 600E@750/Abit BE6 II, Alpine M-BUS Car2PC.
Y2K Accord Dell GX150
RoadRunner is the best FE PERIOD
EmoRebellion is a SCAMMER
MatrixPC is offline   Reply With Quote
Old 02-01-2005, 04:27 PM   #12
Newbie
 
Join Date: Jan 2004
Posts: 33
Try using this instead of your regular dos box...

http://www.commandline.co.uk/cmdow/


this option is the one i was talking about:
/HID Hides the specified window. Although a hidden window will not be shown on the taskbar, it will still run and may be unhidden later.

Last edited by Herb_Davis_Y2K; 02-01-2005 at 04:30 PM.
Herb_Davis_Y2K is offline   Reply With Quote
Old 02-02-2005, 04:57 PM   #13
Maximum Bitrate
 
EBFoxbat's Avatar
 
Join Date: Jun 2004
Location: Massachusetts
Posts: 837
The DOS window does dissappear. When gNotify does establish a connection it promps me for a username and password, which are stored by windows. I just have to click OK or hit ENTER if its the active window. I was wishing I could make the batch file hit enter
__________________
,./(0)3

'04 Canyon 4x4 pickup

[---PC on hold----working on external fiberglass "tool" box---]
EBFoxbat is offline   Reply With Quote
Old 02-03-2005, 10:09 AM   #14
It's not really that small...No, seriously.
 
judoGTI's Avatar
 
Join Date: Feb 2004
Location: Florida
Posts: 1,037
Could you hardcode your IP on your computer to what the router will provide for you to make it more instant?
__________________
'02 GTI
[Routis '04] [Opus 90W] [160GB Maxtor HD]
[Lilliput 7" TS] [VIA M10000] [XMPCR]
[512MB RAM] [Custom housing]
[Deluo GPS Mouse] [E-MU 0404 Soundcard]
Progress Meter: [==============|] 99.9%
judoGTI is offline   Reply With Quote
Old 02-03-2005, 10:32 AM   #15
Constant Bitrate
 
Nobias's Avatar
 
Join Date: Apr 2003
Location: Ohio, USA
Posts: 120
Dont know if this will help but i was bored. It's an app to launch a program after a specified amount of time. Info in the INI.
Attached Files
File Type: zip Wait2Launch.zip (4.1 KB, 130 views)
__________________
Status: 40%
Car: 2006 Scion tC (Buying)
CPU: AOpen Pandora/1.5 Cel M/1GB DDR2/Ipod Vid
Screen: Lilliput 7"
Power: Carnetix 1900
GPS: Deluo GPS
Software: nLiteXP, RR, IG, PhoCo
XM: XM Direct
http://www.chrispuckett.com/mp3car/
Nobias is offline   Reply With Quote
Sponsored links
Advertisement
 
Advertisement
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
Music track fast forward bug Bootbox CF Bug Reports 4 12-06-2004 11:22 AM
Laptop Startup Solution - Opinion Fox_Mulder General Hardware Discussion 0 11-20-2004 05:33 AM
Co-Pilot 7 On-Screen Keyboard -- bad response if too fast? Sensor GPS 3 09-28-2004 02:13 AM
usb fast enough? ShinkunoNamida General Hardware Discussion 5 06-02-2002 02:52 AM
Fast and the Furious (Arby please read) hornet Off Topic 15 03-17-2002 04:26 PM


All times are GMT -5. The time now is 12:45 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.2.0
Copyright © 1999 - 2008 Mp3Car.com Inc.Ad Management by RedTyger
Message Board Statistics