Hi everyone, I've been researching about building desktop application with JavaFX framework.
Does anyone have any good or bad experience that can tell us?
Is Oracle committed to JavaFX?
Thanks.
I have basic idea to the html and studying the basic things of java script and applied on it. And also i want to create the download link in my sample website. But i dont have idea of how to create it? Please tell me the procedure..
Thanks in Advance.
I have an asp.net mvc app that is built to run as standard web app in iis or in the cloud.
I need to be able to determine if the app is being hosted in azure(dev fabric or cloud) or if it is being run as standard web app under iis.
How can I tell if it is running in cloud?
I am using radius protocol to for sending some values from client to server.
Within that, I am using vendor-specific value pairs, and defining our own types.
However, the value length for vendor-specific data is 255, and our data length is crossing it. Please can any one tell me how to incorporate data longer than 255 bytes?
Hi from time to time , i want to shutdown my site for maintenance ...
How could i do this? I've seen a option in phpbb to block the site by admin and then unblock them..
Is there any apis for this or tell me a method of how to do this?
I'm using php for my website..
Really simple question. I'm on Ubuntu 9.04 (I'm new to Ubuntu) and I can't find the dev server logs for GAE. Could somebody tell me where they are? Googling hasn't returned a result.
My manager has asked me to assess what changes would be required to add multicast support to a socket-based TCP/IP networking program that is part of a trading system.
As far as I can tell, from the perspective of a Java program, it doesn't seem to matter too much whether the program is unicast or multicast.
Doesn't the Java networking API make all of this transparent? By this I mean, wouldn't the change be a simple one of simply adding additional destinations for the outgoing connections?
I have this method for downloading a script:
var script = document.createElement('script');
script.setAttribute("src", url);
document.getElementsByTagName("head")[0].appendChild(script);
This gives me a GET like this:
GET http://127.0.0.1:17315/Scripts/abc.js HTTP/1.1
However I need to add a header:
Authorization: Bearer Ipnsfm9h1MWYIM0n1ng
Can anyone tell me how I can add a header when I am using Javascript to perform the GET?
Reading the syntax from autohotkey, I am trying to achieve this. But the first step of selecting the entire line is not working:-
F5::
send {Shift Home}
return
I have tried few others too, but its not working. This is not sending Shift+Home combination on pressing F5 key.
Please tell me what's wrong with this?
Also if possible, what to do next?, as if I will write
send {F5}
I believe, it will recursively fire this script again and again..
I've been trying to determine what this function does, however I cannot seem to find it anywhere under the MSDN documentation of the CComModule class.
Could anyone tell me what it is used for?
Hi,
I have a programming running on linux ubuntu which tries to connect to a server port using TCP.
Can you please tell me how can I find out that is timeout value for a client socket connecting to a server socket for ubuntu?
Thank you.
I have a shared site in sharepoint and have some RSS feed webpart in it so now everytime my site opens up it shows this popup.
I know I can remove the popup by going to IE options and stuff but my question is if there is any way that i can remove it permanently because I can't tell my users to follow this process but I have lot of complaints because of this popup.
Any suggestions?
I'd like for my app to be able to tell if an image hasn't been viewed in the last 30 days and remove it (along with data in the DB associated with it). I know you can have PHP read and output the image dynamically but I've heard its quite taxing on the system. Is there a way to for me to track these hits even when the image is viewed directly? (would htaccess be able to do this?) Thanks in advance.
Hi i'm new to blackberry application development
Please can you tell me how i'm i to customize my components.
for eg i need a verticalfieldManager, which will have a label field, a image, placed one after the other.
Also this verticalFieldManager should be in the center of the screen, it should not start from the immediate left or right of the screen
Also i want a border for this verticalFieldManager.
Hey,
I want to use a method of an object.
Like $myObject->helloWorld().
However there are a couple of methods so I loop through an array of method names and call the method like this:
my $methodName ="helloWorld";
$myObject->$methodNames;
This works quite nice but some objects don't have all methods.
How can I tell whether $myObject has a method called helloWorld or not?
Hey guys, in order to remove contact's photo, which way is correct?
1) to update and set Photo.PHOTO to ""/"NULL" , or
2) to update and set Photo.MIMETYPE to ""/"NULL" or
3) to update and set Data.MIMETYPE to ""/"NULL" ?
I wanted to mention also that I insert photos from my app by the following way:
cr.insert(ContactsContract.Data.CONTENT_URI, photoValues);
Please also tell me "" is better or null? (in updating case)
Thanks a lot.
As far as Google searches tell me, the maximum allowed number of cookies depends very much on the browser, however I cannot find any recent data as to how much cookies are allowed on modern browsers.
I need to store a somewhat large number of user preferences in cookies (for not-yet-registered users), so what would be the best way of doing that? (Also, those cookies would be accessed both via javascript client-side and php server-side)
For example,I click button and then on the form appears GroupBox with some controls inside.One more click-one more GroupBox.This may lasts to infinity.Please,tell me how to do that???
I have a jar on the classpath which contains a hibernate.properties. This causes problems when my app starts because hibernate tries to use the settings from this file. Is there a way to explicitly specify the file that hibernate should look for, or tell it to ignore the properties file in the dependency jar?
Hi,
Just playing around with some of the APIs in .NET and I can't seem to find a way to cause Array.ConstrainedCopy() fail.
According to MSDN, it's treated as an atomic operation. If it fails during the copy, the entire call fails resulting in no elements being copied as opposed to its Array.Copy() counterpart.
Can someone demonstrate this or tell me how to do this?
i want to create a table where first column have timing in below style
timing | user1 | user2 | user3
-------------------------------
9 AM | | |
10 AM | | |
. | | |
. | | |
. | | |
6 PM | | |
7 PM | | |
is it possible to use range() for creating timing list, if yes then please tell me , or if not then suggest me better method.
Thanks always
it seems like i have begin rescue end statements everywhere in my code. this doesn't seem like the correct thing to do. i am learning process, can anyone suggest how can i catch any exceptions without having to place everything inside begin,rescue, end.
anyway to just tell ruby to shut up and just keep going even if exception is raised ?