toolkit

How do I base a style on a Silverlight toolkit theme style

I've being trying to add a theme from the Silverlight toolkit to a project. In the project there are a number of existing styles used in the layout. The problem is when any control has an explict style applied to it does not receive any attributes of the style from the theme. In WPF I would use something like BasedOn={StaticResource {x...

Java Folder Location for Image NetBeans 6.8

greetings, today i have started to learn java using netbeans ide. i would like my jframe to display an icon as stated in the following: setIconImage(Toolkit.getDefaultToolkit().getImage("SartreIcon.jpg")); the questin is under netbeans ide.. exactly in which folder do i place the graphic in question in order to load it? thanks. EDI...

asp.net ajax toolkit combobox doesn't work in hidden div

I have a combobox inside a hidden div which I use css display = none to make it invisible, but when I make the div visible by setting display = block, the combobox just show the input and its button and ul list all have css as display = 'none', visibility ='hidden'. I can tell it is done by combobox inbuild javascript because I tried t...

Is there a programming toolkit for converting "any file type" to a TIFF image?

Hello, I've written several variations of a program. The purpose of the program is to convert "any file type" to a TIFF image represenation of that file, as if it were being printed using a printer. I'm currently using a third party printer driver that I send files to, and it outputs a TIFF image. This is nice, but it requires me to us...

WPF DatePicker IsEnabled property not changing appearance

I think I have found an issue with the DatePicker in the toolkit, perhaps some of you gurus can check it out. The issue is when setting the IsEnabled property of the DatePicker. If set in XAML, it stays grey even if you set the IsEnabled to true at run time. The same goes for the other way around should it start off being enabled. Th...

FB Developer: How do you get emails now?

I'm sure it has already been asked. It's just that every couple of months, facebook changes their APIs and the question becomes new... What is the current way? (I got the user to accept the extended permission thingy). The FB help, claims I have to use getInfo().contact_email which doesn't exist in the .net toolkit. ...

ajax control toolkit watermark extender and update panel problem

I have a web page that initially loads a drop down list. When an item is selected from the list, a web form is dynamically created during an update panel async postback. I added watermark extenders to some of the textboxes, but the watermark does not display when the page is first updated. If I focus in and then out of one of the textbo...

Any good open source online RPG starter kit for development ?

Hi there, Does anyone know of a good open source toolkit that allows level designer and graphic designer or someone with basic programming experience to create multiplayer online Role Playing Game ? The game can be a simple 2D interface in a 2d virtual world. I know Microsoft have a starter kit something like the following : http://cr...

MVVM Light Toolkit samples

Does anyone know opensource WPF applications created using MVVM Light Toolkit? Or any samples? ...

Python Reporting Frameworks

Does anyone have/know of a Python Reporting Framework along the lines of what something like DynamicReports does? ...

how to make invite friends button in an iframe application made using facebook developer toolkit

I made an iframe application using the facebook developer toolkit. It has a flash game on it which uses AMF to comminucate with the server. I want to implement a invite friends button, which pops up a lightbox(and maybe publish - like buttons) inside flash, how can i do that? ...

Dojo and unregistering widgets

Hi, I am new to the Dojo Toolkit. I'm getting the error Tried to register widget with id=myButton but that id is already registered whenever I try to load dojo content twice (meaning I load HTML content through jQuery.Load into a container div). Is there a way of unregistering already registered widgets in dojo? I've seen some exampl...

Which C/C++ GUI toolkit does support Office 2003/2007 styles

I don't need ribbons but i would like to have the blue/orange style. Currently i planned to use WxWidgets but it seems to be not able to do anythink like this. Do i have an alternative other then MFC + Featurepack ? ...

Facebook Image Upload in ASP.net using Facebook Toolkit

Hi, can we upload images(photos) to facebook using the FacebookToolkit There seems to be a method in the Api Master.Api.Photos.ExecuteApiImageUpload, but when i use a FileUpload in my page, the Request.Files is empty. I understand this is because facebook strips out files tags. Any ideas or workarounds? Thanks ...

Javascript UI Toolkit

I'm looking for a light-weight UI toolkit written in Javascript (something like Swing) but I'd rather not use ExtJS because I fear that will slow things down tremendously. Are there any small UI toolkits out there that mainly focus on layouts? The problems I face in particular are working with layouts. A lot of toolkits come with differ...

cross domain gwt ?

is there a way to run gwt on a proxy loaded web page ? ex) using proxy script on myexamplesite.com that loads finance.google.com, and running GWT on the newly loaded page. I've been doing the above before I found about GWT, using LAMP stack + Jquery (UI), which quickly turned out to be crap and inefficient. All this trouble to bypass ...

Using AJAX Control From AJAX ToolKit

I tried using AJAX Control for my first time after I installed the AJAX Toolkit for ASP.NET. I created a new ASP.NET website and added the ConfirmbuttonExtender. After I run it without changing nothing I get this error: Compilation Error Description: An error occurred during the compilation of a resource required to service this reque...

Getting Started with AJAX ToolKit Controls

I am trying to make my first AJAX Control and I get error. I probbly missed some steps but I cann't find them eventhough I read many tutorials, probbly since I am new in AJAX, so I need to be guided step-by-step. These are the steps I've already done: Downloading AJAX ToolKit. Adding These Controls to the ToolBox. creating new ASP.NET...

How to make a swing app aware of screen size change?

Hi, while my swing app is running I change the size of the screen (e.g. from 1024x768 to 800x600). Is there any event I can listen to to be notified about this? Alternatively I could check the screen size in every couple of second, but the Toolkit.getScreenSize() keeps telling me the old value. How could I get the real screen size aft...

MVVM: Difference using EventToCommand vs. Attached Behaviour for Events

Hello, doing a doubleclick on a wpf selector like datagrid I can use a DoubleClickSelectedBehaviour like Sacha Barber has done in his cinch framework or I can use the EventToCommand class from the mvvm light toolkit framework. Both seem to pass the EventArgs and violate mvvm by putting View related stuff into the ViewModel what is...