The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
1answer
28 views

Find Positional Coordinates of Display Relative to Desktop Area

In an example from several years ago on stackoverflow, EnumDisplaySettings is used to load data structure DEVMODE that has this definition: Private Type DEVMODE dmDeviceName As String * ...
0
votes
0answers
51 views

C# Printing with advanced Printer settings (in this case: Scaling)

I have been searching for a solution for this some time now. What I want to have is very simple (as for example provided in MS Notepad): A button print shows the standard .Net print dialog. Users ...
0
votes
1answer
44 views

Error loading R dev_mode from .Rprofile

I'm doing a lot of development in R at the moment, so I would like to enable dev_mode when R starts up. I've tried adding dev_mode() to my .Rprofile, given here: library("devtools") ...
0
votes
0answers
35 views

gwt mvp4g dev mode weird exception

I'm using mvp4g in GWT. I have created some MVPs, faced some problems, corrected them and compiled my code successfully. but when I run the DevMode I got this weird message saying "No instance of ...
0
votes
1answer
182 views

Running MGWT in Super Dev Mode does not pick up code changes

I was evaluating MGWT for the new mobile version of our website. So I downloaded the MGWT's showcase project and set it up in my Eclipse. I was able to compile the project and run it. I was then ...
0
votes
0answers
245 views

Setting Printer Paper Size 'PostScript Custom Page Size' in C#

I am trying to do a project for printing large CAD drawings using SolidWorks. My plotter drivers (Oce TDS860, HP Z5200ps PS3) support a paper size called PostScript Custom Page Size. The dimensions ...
0
votes
2answers
239 views

IncompatibleRemoteServiceException when refreshing dev mode on firefox 16.0 (after GWT 2.5 upgrade)

We recently upgraded from GWT 2.4 to 2.5. Everything seemed to be working until I started working in dev mode again. When I initially load my application everything runs fine, however when I try to ...
1
vote
0answers
212 views

UnsatisfiedLinkError when running Grails/GWT app in DevMode

Using Grails 2.1.0 in GGTS 3.1.0 with gwt plugin (gwt:0.7.1) and dto plugin (dto:0.2.4). I have a simple DTO object: public class TestDTO implements grails.plugins.dto.DTO { private static final ...
0
votes
1answer
30 views

BaseDevModeType: What is difference between the two enumerations?

The BaseDevModeType defines two enumerations: PrinterDefault. UserDefault. I understand that the devmode base structure is populated based on the enumerations. But, How are these two devmodes ...
0
votes
1answer
133 views

Get printer trays from DevMode

In my application I pop a print dialog box that (among other things) enables a user to select the print tray for the front page and a print tray for other pages. I then get the DevMode from the ...
2
votes
1answer
874 views

[ERROR] [mv_main] - Out of memory; to increase the amount of memory, use the -Xmx flag at startup (java -Xmx128M …)

I keep getting the following error when I reload my app in GWT DevMode after making code changes using Eclipse IDE. [ERROR] [mymodule] - Failed to create an instance of ...
1
vote
1answer
156 views

Getting errors with GWT tutorial on developers.google.com

I was trying to run the verbatim example given here https://developers.google.com/web-toolkit/doc/latest/tutorial/appengine This part deals with converting a gwt project into app engine project and ...
1
vote
1answer
286 views

When debugging using GWT devmode, how do I redirect to URLs on my own server?

I'm writing an app using GWT and Java Google App Engine. When I launch a page of the app using devmode, I see a URL that has the suffix "?gwt.codesvr=127.0.0.1:9997". Without that suffix, devmode ...
2
votes
1answer
124 views

GWT dev mode refreshes quickly the first 3-5 times then takes 5 minutes or more beyond

Has anybody else noticed that GWT dev mode is able to refresh/reload relatively quickly (10-20sec) for the first 3-5 times then takes 5 plus minutes to reload beyond that?
0
votes
2answers
171 views

Location of config file for devmode in Eclipse?

I have a multi module GWT project (say a.gwt.xml, b.gwt.xml, c.gwt.xml) that I am building in eclipse and testing in devmode. All was working well until I deleted one of the gwt module file and ...
0
votes
2answers
168 views

Detecting what &gwt.codesvr should be set to in non-gwt pages in a GWT/servlet app?

We have an application that is built exclusively in dev mode using the embedded jetty server that comes with GWT. We also host on jetty. There are a number of pages we use for development only to do ...
4
votes
1answer
154 views

How to set __IE_PrinterCmd_DevMode Property to a DEVMODE structure in print template in IE with Visual C++

The print template in IE uses this property to determine information about the selected printer after a user closes the Print dialog box. How can I set this property to a DEVMODE structure with code ...
3
votes
2answers
819 views

Can't change DEVMODE of a printer

I need to change DEVMODE of printer for current printing task to pass standard and device-specific settings. I do the following: PrintDocument d = new PrintDocument(); d.PrinterSettings.PrinterName = ...
1
vote
2answers
157 views

dmDeviceName is just 'c'

I'm trying to get the names of each of my monitors using DEVMODE.dmDeviceName: dmDeviceName A zero-terminated character array that specifies the "friendly" name of the printer or display; for ...
1
vote
3answers
263 views

Can I get eclipse gwt devmode to always recompile all my modules

I have two modules, the Main module and the Included module. If I start the Main module it will show an interface with an iFrame which contains the Included module with some additional controls ...
1
vote
1answer
313 views

Saving / Restoring Printer DevModes - wxPython / win32print

So far I've found two different ways to access what I believe are equivalent versions of the Printer DevMode from a wxPython User Interface: window = wx.GetTopLevelWindows()[0].GetHandle() name = ...