The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
7 views

Microsoft.XMLHTTP - how to prevent caching?

So I want to retrieve some JSON data which changes frequently from Windows gadget, by using Microsoft.XMLHTTP ActiveXObject. The problem is that it returns cached version of the page instead of ...
0
votes
0answers
68 views

How to call a dll function in html

I am trying to call a function of my dll , by the ActiveXObject my code works when i open the html file in IE (browser) but when i use that html file (for gadget development ) it return object error. ...
0
votes
0answers
29 views

Windows Gadgets: How to use navigator.onLine?

I'm using the following JavaScript code to check for internet connection. This works on IE8, but won't work on my gadget. This is the gadget's html: <body marginheight="0" topmargin="0" ...
2
votes
0answers
49 views

Is there a way to upload files from Windows Gadget?

From System.Shell.itemFromFileDrop I get System.Shell.Item object item. I've tried this: var oStream = new ActiveXObject("ADODB.Stream"); oStream.Type = 1; oStream.Open(); ...
3
votes
1answer
252 views

Windows 7 Sidebar Gadget, not getting result for an Ajax call

In my windows gadget code in made an ajax (POST) call using jQuery in SettingsClosing(event). I watch the ajax call execution through Fiddler. Ajax call is returning the desired results.But it is not ...
1
vote
0answers
233 views

Windows Gadget reading specific information from Excel with Javascript

Hi I am trying to write a Windows Gadget that reads out information from an Excelsheet. The Excelsheet entails a the dates, formated, of the whole year in column A2:A366 and the following columns are ...
0
votes
2answers
55 views

Confused about windows gadget

I have developed a Windows desktop gadget using Silverlight (MVVM pattern) and WCF. I want to know whether it will work on Windows 8, since there is no option as sidebar in Windows 8. If possible ...
0
votes
0answers
70 views

Reading data from XML document in Windows Gadget

I'm busy playing around trying to make a windows gadget (written in html, jscript, css and the works...). I've been looking all over the web and I just can't seem to find information on how to read ...
0
votes
1answer
300 views

Windows gadget - rounded corners

Is there any way how to create border-radius for an element in windows gadget? I tried to use ie-css3.htc but doesn't work. Any ideas ? //edit: I'd like to reconstruct my question. I am looking for ...
0
votes
1answer
286 views

Calling lists.asmx Webservices using Script out of sharepoint environment

I want to use List.asmx getallitems webservice to get all the list items in a windows 7 gadget, I have been doing research for last 10 days,but couldn't really find what i want. Keeping in mind, ...
0
votes
1answer
189 views

Windows 7 gadget not loading

I'm developing a simple gadget for Windows 7 as a learning exercise. I read in this article (under the subtopic Gadgets and Script) that to initialize the gadget, you should use ...
0
votes
1answer
283 views

Reading file contents from Windows gadget

I would like to create Windows Sidebar gadget which reads text file content, parses it content and presents it in nice form. Unfortunately I stuck in "reads text file content" part. I have no idea how ...
0
votes
1answer
520 views

Windows 7 gadget won't reload image

I'm new with Windows gadgets and I need some help. I want to make gadget which show some information from network (game server status). I already achieved this with PHP, but we know gadgets does not ...
1
vote
1answer
415 views

How to prevent ajax caching

I'm created this class to fetch a file from web to check for new version using ajax, this code run on a windows gadget, on IE8. But I'm having trouble because of the cache. Theres a way to fix this ...
-1
votes
2answers
540 views

Windows 7 gadgets, can you show them on top of other applications (like always on top)?

First I must say that I don't know windows gadgets or what are they capable of. But I need something to do the following: showing some info on the desktop of the user if there is really important ...
2
votes
1answer
565 views

Scripting.FileSystemObject location (from JavaScript)

I have a file for my Windows sidebar gadget that stores some settings for the user, but the FSO object seems to pick its native residence as the desktop, meaning that if I don't specify a directory, ...
1
vote
2answers
96 views

Windows Gadgets: Why are settings deleted when my gadget is closed?

I'm currently in the development and testing phase of my gadget. I've noticed that for some reason, whenever my gadget is closed the settings I've saved are deleted. I'm sure because I've monitored ...