|
|
![]() |
|
|
Top | #1 |
|
Bow Down to the King
Joined: April 2002
Location: New York
Posts: 13,312
Reputation: 4090
Power: 294 |
madmatt_dtop - click to see This is the run down: System Launch, My Folders, Program Launch: Simple HTML, JavaScript, ActiveX control Quick Notes: Simple HTML, VBSCRIPT to save System Statistics: Provided via CoolMon, displayed using Simple HTML, JavaScript Weather: Provided via CoolMon and weather.com, displayed using Simple HTML, JavaScript madmatt .NET login: Simple HTML, PHP, mySQL (stored server side) Calendar: Simple HTML, JavaScript I started off with a tutorial for the system launch, program launch, and my folders. Follow the URL below: program launch tutorial - click here Make sure you read the disclaimer at the top! I am sure that's all everyone is interested in, however, I plan on writting a tutorial for the calendar and quick notes soon. Questions? Comments? Suggestions? Post them to this thread and this thread only. I will not respond to emails or private messages. This is v3 of madmatt_dtop, v4 is in the works. screen shot as of May 18th |
|
|
|
|
|
Top | #2 |
|
Prodigal Son
Joined: February 2002
Location: Texas, USA
Posts: 8,542
Reputation: 1410
Power: 221 |
Props to matt. Nicely done.
|
|
|
|
|
|
Top | #3 |
|
OSNN Addict
Joined: March 2002
Location: Perth, Australia
Posts: 117
Reputation: 0
Power: 122 |
thanks Matt, much appreciated.
I'll post results when I've had a play and come up with something good
|
|
|
|
|
|
Top | #4 |
|
OSNN Veteran Addict
Joined: May 2002
Posts: 2,695
Reputation: 30
Power: 145 |
nice script matt
|
|
|
|
|
|
Top | #5 |
|
OSNN Addict
Joined: April 2002
Posts: 116
Reputation: 0
Power: 121 |
man... i've been waiting for this for sometime....
|
|
|
|
|
|
Top | #6 |
|
Queen of Farts
Joined: March 2002
Location: Texas
Posts: 10,944
Blog Entries: 7
Reputation: 1843
Power: 249 |
Well done matt. I've heard a few members asking for such a tutorial.
|
|
|
|
|
|
Top | #7 |
|
Bow Down to the King
Joined: April 2002
Location: New York
Posts: 13,312
Reputation: 4090
Power: 294 |
Thank you.
Per request the quick notes tutorial is coming later today. Stay tuned. |
|
|
|
|
|
Top | #8 |
|
Bow Down to the King
Joined: April 2002
Location: New York
Posts: 13,312
Reputation: 4090
Power: 294 |
madmatt_dtop v4.beta is done. inspired by MdSalih's idea, I had to give it a go, and here are the results.
madmatt_dtop v4.beta - click to see One small glitch remaining, hope to have it solved soon. As for the qnotes script, that will be released soon. Enjoy. |
|
|
|
|
|
Top | #9 |
|
Unregistered
Posts: n/a
|
Great bit of vbscripting for the links section but just a small question.
When you have created the script and placed in c:/windows - it won't run the shortcut. It will run the exe file for the associated program (such as explorer) is this the way that it works - or should it be reading the shortcut? matt |
|
|
|
Top | #10 |
|
Unregistered
Posts: n/a
|
Matt, none of the links you've posted appear to work???:confused: :confused:
|
|
|
|
Top | #11 |
|
The Boss
Joined: December 2001
Location: Birmingham, UK
Posts: 1,730
Reputation: 90
Power: 142 |
I've been quite inspired by matt's work there.... damn nice ![]() currently playing with it atm... will give you some print screens of my own soon ![]() Thanx again to matt for the first sparks ![]() MdSalih |
|
|
|
|
|
Top | #12 |
|
The Boss
Joined: December 2001
Location: Birmingham, UK
Posts: 1,730
Reputation: 90
Power: 142 |
here we go
...got the basic layout for it... Click here for full size if you want to see it in action: http://www.mdsalih.d2g.com/md-ad/index.htm you need to click the headers (System Launch, My Folders, Program Files etc...) for the menu to drop down... As noted in my last post... the links won't work for you as you dont have the required .vbs files... to make the .vbs click here to see madmatts tutorial here. Once again... thanx to madmatt for the motivation + helpful tutorials ![]() MdSalih |
|
|
|
|
|
Top | #13 |
|
OSNN Veteran Addict
Joined: May 2002
Posts: 2,695
Reputation: 30
Power: 145 |
sweet, looks good.
|
|
|
|
|
|
Top | #14 |
|
Bow Down to the King
Joined: April 2002
Location: New York
Posts: 13,312
Reputation: 4090
Power: 294 |
MdSalih, I am lovin' it. Great job!
I made a few minor changes this morning, while my INET access was down. I added table borders around the menus. I'll post the screen in a bit. |
|
|
|
|
|
Top | #15 |
|
Bow Down to the King
Joined: April 2002
Location: New York
Posts: 13,312
Reputation: 4090
Power: 294 |
1.) The VBS script (ie: explorer.vbs) 2.) A shortcut (ie: explorer or explorer.lnk) In the VBS script, you want to change the "PROGRAM" to the name of the shortcut (ie: EXPLORER). Hope this helps. |
|
|
|
|
|
Top | #16 |
|
Bow Down to the King
Joined: April 2002
Location: New York
Posts: 13,312
Reputation: 4090
Power: 294 |
|
|
|
|
|
|
Top | #17 |
|
Unregistered
Posts: n/a
|
i can see i'm going to have to get my hands dirty to get this thing looking the way i want it to.
|
|
|
|
Top | #18 |
|
Unregistered
Posts: n/a
|
This is exactly what I have. For eg. I have a shortcut named "programfiles" which links to a folder - it works fine when I double click it. I then have a programfiles.vbs file with the "programfiles" name in it. (all being in c:/windows) When I run it - it runs but doesn't load the shortcut. (ie no errors) Weird. Oh well, I'll have to fiddle one day when I have some extra time - good post though. matt |
|
|
|
Top | #19 |
|
The Boss
Joined: December 2001
Location: Birmingham, UK
Posts: 1,730
Reputation: 90
Power: 142 |
copy paste the .vbs here...
should looks something like this: ------------------------- Dim oShell Set oShell = WScript.CreateObject ("WScript.shell") oShell.run "programfiles" Set oShell = Nothing ------------------------- save it as a .vbs -> should run ok now... unless you have somekind off f00lish anti virus programme running... norton will pop up a screen asking you what to do if yer running that... MdSalih |
|
|
|
|
|
Top | #20 |
|
Unregistered
Posts: n/a
|
Found out that its my computer.
All my scripts run fine on the two other computers at home - therefore there is something screwed up on mine. I'm also having probelems with VB6 after I installed Visio so that probably messed something up. Oh well, not much i can do unless I want to re-install all - and I couldn't be bothered. Thanks for the help, matt |
|
![]() |
| Bookmarks |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| The Official “New To This Community” Thread | madmatt | Green Room | 1228 | May 18th, 2011 4:59pm |
| The official don’t buy T-mobile thread. | VenomXt | Portable Devices & Gadgets | 13 | December 5th, 2006 11:25pm |
| The Official PDC '05 Thread | NetRyder | Windows Desktop Systems | 0 | December 2nd, 2005 3:16am |
| The Official Henyman Thread | Henyman | Green Room | 59 | May 29th, 2004 8:30am |
| Official NV40 thread | Sazar | Graphics Cards | 41 | April 26th, 2004 11:21am |