Documentation on making widgets

Web links

 

How to create DesktopX Objects: https://www.stardock.com/products/desktopx/Docs/22/DevelopersGuide.htm (38 pages)

Writing Scripts for DesktopX Objects: https://www.stardock.com/products/desktopx/Docs/22/ScriptingGuide.htm (38 pages)

And if you get stuck, just write here and we'll try to help you.

 

8,420 views 5 replies
Reply #1 Top
Has anyone the code to have an object that opens and let's you interact with an Excel spreadsheet?
Reply #2 Top
Can anyone tell me how I can create a clock and calendar using words like the example that comes with Desktop X and also how to make a script that displays updated info from one of more websites?

Any help would be MUCH appreciated as I am making my own desktop and am stuck on these things

Thanks
Reply #3 Top
What are you trying to do with it? I've a bit if experiance with vbscript and vba. I might be able to help.
Reply #4 Top

Hy!


My name is Vlad and I am from Romania. I just started using desktopx and i love it. I downloaded a theme and start modifying it little by little. The thing is that now i want to create a simple digital clock without date display and i do not know the script for it. I know tha probably for you guys this is a stupid request but please help me costumize my desktop and teach me how to make that script.


Thank you

Reply #5 Top
Simple digital clock here: http://martin.wincustomize.com/ViewSkin.aspx?SkinID=3565&LibID=3&comments=1

Re learning form examples, just import them and look at the script. There are plenty of my objects that interact with web pages so you can see how they work.

Re Excel - starter here, but beyond that you need to look at the object model to interact (http://msdn.microsoft.com/library/en-us/dv_wrcore/html/wrconExcelObjectModelOverview.asp)
Dim objExcel
Dim objWorkBook
Set objExcel = CreateObject("EXCEL.APPLICATION")
Set objWorkBook = objExcel.Workbooks.Open("C:\test\test.xls")
objWorkBook.SaveAs ("C:\test\test2.xls")
objWorkBook.Close True
Set objWorkBook = Nothing
Set objExcel = Nothing