Given that GDI+ is a wrapper around GDI, how does it handle floating point values? I don't see any support for floating point co-ordinates in the GDI documentation.
i mainly focus on the web, i think i will never create desktop applications.
so i think it's better for me to focus on typical web languages like php.
i know an advantage java has over php is multi threading though.
will php ever support this feature in the future?
thanks
Hi,
I would like to bypass firefox anti-phishing support programatically. Not by disabling its safebrowsing option either manually or programmatically.
Actually, when firefox loads a document, it makes a call to google to determine whether the requested site is phish or not.
If I get when this happens, I can bypass it. Meaning that I would not allow firefox to show its error page.
Can anyone show me the way?
-Abhay
Can any body have idea how to consume php soap web service that have no support wsdl.
I want to add reference in .Net to generate client but failed.
When i saw in browser with ?wsdl it shows message wsdl is not supported.
Does iPad or iPhone support OpenGL ES 2.0? How about iPhone os 4.0. Is this supported by the OS or the hardware?
And can anyone recommend some books on OpenGL ES development on iPad or iPhone?
Thanks!
I need a java graph library for visualization that I can incorporate in my own application. I found that jgraph is excellent for visualization but require explicit positioning of the nodes. Is there any open source java graph library that support automatic layout. Any suggestion will be really helpful for me.
It appears that cygwin doesn't support user context switching (supported by ucontext.h).
Given I need to developed a user-context switching application under cygwin, is there any solution for this?
I'm working on some Javascript that makes use of Firefox 3.5's ability to perform cross-domain XMLHttpRequests… But I'd like to fail gracefully if they aren't supported.
Apart from actually making a cross-domain request, is there any way to detect a browser's support for them?
Wikipedia Comparison of revision control software User interfaces table shows Bazaar as not having Netbeans support. Is there development underway to provide this feature for Bazaar?
I'm an intermediate C developer, trying to get better. I want to make a very basic and lightweight HTTP server with its own scripting language.
Could I use something like Lua for scripting? If not, what?
I don't want to use CGI/FastCGI like Apache does for PHP in most cases, I want my server to natively support my scripting language.
Found Mylyn as a very good task manager that supports Trac and Gmail Task.
I've seen Tasktop, but looking for something with smaller memory footprint that I could always run in background.
Is there any lighter client (not on Eclipse platform) to manager at least Trac tasks (via XML-RPC) and in best case scenario with GMail Tasks support?
Recently I use stringtemplate,I noticed StringTemplate can't support complex conditional,similar value1 or value="menu" etc.
who can give me a advise how to work?thanks.
Hi All,
I like to know on which version of SDK does support 'AudioTrack' class? Does 'AudioTrack' can be used from 1.5 SDK, 1.6 SDK and 2.0 SDK?
Thanks.
Currently Buildbot does not support multiple repositories. If one desires to have this then separate instances of Buildbot need to be run.
Still I'm curious if anyone has come up with a creative workaround to get this feature working anyway.
I've added I18n support for error messages:
Now you can define translations for the errors messages in e.g. your YAML locale file:
en:
paperclip:
errors:
attachment:
size: "Invalid file size"
content_type: "Unsupported content type"
presence: "Cant' be blank"
when I use
validates_attachemnt_zie :avatar
how to get error message?
Is there any truth to the rumor that Visual Studio 2010 will natively support PHP coding?
(http://www.codeplex.com/php4vs)
If not,what are the options?(except VS.php)
According to this schema VS2010 Premium and Ultimate has a tool for checking Code Coverage - together with a few other testing tools. Does this support nUnit too, or just MS test?
Hi , i created persian custom keyboard , my letters type on UITextView , but the UITextView dosn't support paste function ! why ? i don't check the editable option .
Does anybody know what happened to Microsofts promise to support Openid? I browsed the web and I am not able to find anything but: Service will be available 2009. But it is 2010 now.
Thanks for useful links.
Essentially, I wanted to run a piece of demo code from W3c Offline Webapps page. It looks like that:
var db = window.openDatabase("notes", "", "The Example Notes App!", 1048576);
Firefox 3.5, IE8 and Chrome do not seem to get it. Is there anybody out there that actually wrote support for that? Or is this wishful thinking about 'the standard of the future'?
PHPIniDir "D:/Dev/PHP/"
The above instruction can make my apache die on windows.
But I'm just not sure if that's true.
BTW,I found xmpp/wampserver copies the php.ini to the directory of httpd.exe,maybe for the lack of support?
What good IDE would you recommend for C++ (GNU) programming, with support for the wxWidget library and a GUI builder/designer all in one? Can be either for windows or linux.
It is well known that SELECT * is not acceptable in production code, with the exception of this pattern: IF EXISTS( SELECT * We all know that whenever we see code code like this: Listing 1. "Bad" SQL SELECT Column1 , Column2 FROM ( SELECT c. * , ROW_NUMBER () OVER ( PARTITION BY Column1 ORDER BY Column2 ) AS rn FROM data.SomeTable AS c ) AS c WHERE rn < 5 we are supposed to automatically replace * with an explicit list of columns, as follows: Listing 2. "Good" SQL SELECT Column1 , Column2 FROM...(read more)