Deploying QT Jambi applications Programming Software Development by bd338 … MacBook, and I can't run any of the QT Jambi applications I create. Here's the code of the test… Re: diff b/w favicons downloaded using java code and those normally downloaded ? Programming Software Development by ~s.o.s~ … Daniweb favicon and setting it up in Qt Jambi, it should work (assuming Jambi supports BMP). The same shouldn't work with… validating php forms Programming Web Development by yonghan …;option>Kepulauan Riau</option> <option>Jambi</option> <option>Sumatera Selatan</option… diff b/w favicons downloaded using java code and those normally downloaded ? Programming Software Development by daudiam … try to set it as an icon in [B]Qt Jambi[/B], it fails to show up, whereas if I download… Re: QtJambi-failed to unpack native libraries Programming Software Development by Katana24 ….tutorial; import com.trolltech.qt.gui.*; [/CODE] To use Qt Jambi classes, you need to import at least the gui package… application-wide resources and is needed to run a Qt Jambi application. The gui package contain GUI related classes, such as… Re: QtJambi-failed to unpack native libraries Programming Software Development by daudiam ….tutorial; import com.trolltech.qt.gui.*; [/CODE] To use Qt Jambi classes, you need to import at least the gui package… application-wide resources and is needed to run a Qt Jambi application. The gui package contain GUI related classes, such as… Re: What are you listening to? Community Center Geeks' Lounge by Stuugie Right now I am listening to Jambi from the band Tool. Re: validating php forms Programming Web Development by yonghan By the way,what i want to do is to validate the email etc,such like if the email field is empty,then it will show errors beside the email textfield.. Re: validating php forms Programming Web Development by diafol This looks like a case for both client-side and server-side validation. To save time and frustration for your prospective members, you should have js validation to check for errors before the form is sent. Any errors should be noted at the top of the form or on top of /beside the form widget. Server-side validation (pHp) MUST take place if data … Re: validating php forms Programming Web Development by yonghan Thanks a lot...By the way i want to ask your opinion.Which one is better?Put the validation code on a within with the output_fns.php or seperate it??Thanks... Re: validating php forms Programming Web Development by diafol If I were you I'd create a new include file for your form validation functions. This way you keep it available for all your form validations. For example: In "form_validate.inc.php": [CODE]function validate($data_type){ ...(this is your validation script)... ...it should return true or false... ...(this is the simplest … Re: diff b/w favicons downloaded using java code and those normally downloaded ? Programming Software Development by daudiam Thanks. I found a favicon at the url : [URL="http://www.daniweb.com/favicon.ico"]http://www.daniweb.com/favicon.ico[/URL] The extension suggests that it also is an ico image. I tried ..../favicon.jpeg and ..../favicon.png but tha pages don't exist. In the plugins directory of QtJambi, inside the iamgeformats folder, I found th … Re: diff b/w favicons downloaded using java code and those normally downloaded ? Programming Software Development by ~s.o.s~ [quote]The extension suggests that it also is an ico image[/quote] Codecs don't work based on extensions, I can very well have a PNG with extension WTH and it would open up just fine in applications which support PNG. Anyways, I personally don't know of any converters but you can try picking up ideas from [URL="http://stackoverflow.com/… Re: diff b/w favicons downloaded using java code and those normally downloaded ? Programming Software Development by daudiam Thanks. But favicons are dynamically loaded. I will need to convert them at the time the website is loading. Since the application is platform-independent, it will be difficult to utilize these tools to convert the images. Perhaps, I can upload these images to a site like convertico.com and download the converted image from there. Is it possible… Re: diff b/w favicons downloaded using java code and those normally downloaded ? Programming Software Development by ~s.o.s~ Would you be using favicons from existing domains or favicons stored locally? If you would be using existing favicons, use the google ICO to PNG converter. [url]http://www.google.com/s2/favicons?domain=daniweb.com[/url] If you want to convert local files, you would have to find some online service like the one you mentioned. Unless the site … Re: diff b/w favicons downloaded using java code and those normally downloaded ? Programming Software Development by daudiam Thanks a ton ! Really, it solved a great headache. I just wanted favicons for existing domains, the sites that I open in my browser. But this google ICO to PNG convertor, I didn't find any documentation,etc on the net. Any link where the entire gamut of google's image conversion facilities is documented. Re: diff b/w favicons downloaded using java code and those normally downloaded ? Programming Software Development by ~s.o.s~ I don't think there is any need for a documentation nor one exists I guess. You simply need to dynamically create a URL based on your requirement with a URL template like [icode]"http://www.google.com/s2/favicons?domain=" + yourDomain[/icode] and read by the connection opened. Anyways, since I've a bit of free time, I've written a throw-… Re: diff b/w favicons downloaded using java code and those normally downloaded ? Programming Software Development by daudiam Thanks a lot for the code. I actually meant if there were any more such services that google offers (like ICO to other formats apart from PNG). I mean this is some kind of service that's not well publicized (doesn't show up on google). Where should one look for such services of google ? The link is also unintuitive (s2 ?) Re: diff b/w favicons downloaded using java code and those normally downloaded ? Programming Software Development by ~s.o.s~ [quote]I actually meant if there were any more such services that google offers (like ICO to other formats apart from PNG). I mean this is some kind of service that's not well publicized (doesn't show up on google). Where should one look for such services of google ?[/quote] Unfortunately I don't have an answer for that; I guess it's one of those &… Re: diff b/w favicons downloaded using java code and those normally downloaded ? Programming Software Development by daudiam thanks