- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Director
Re: You meant to say you have a borderless form and on top you have a frame whose size = size of form... so ultimately the user interacts only with the frame... check the drag operation/ Function etc of the Frame instead of Form. Or have i misunderstood?! | |
Re: The sms gateway will provide you API in various platforms... You just need to make a post/get of your message, to_number etc to their api... Check out clickatell.com | |
Re: This is a security feature by MS Internet Explorer after SP2. Other browsers work fine without it. So there's hardly one can do about it. If there is a way anyone knows of, I'd surely like to know for knowledge purpose. | |
Re: say u have two forms form1 form2 in form1's any sub refer to form2's element public sub loadinfo() .. .. form2.lblUsername.Caption = rec1.Username end sub | |
Re: first register all ur client with the server. for a very basic application maintain a list in arraylist. then when a new user logs in, send this arraylist to him and he'll get the list of users online for an old user, send this list to the connected user at … | |
Re: [quote=Bhagwanshay;428272]i want an example of scriptting[/quote] THere are softwares: 1.Instant Demo Saves as .SWF files 2.SnagIT Saves as AVI files | |
Package and Deployment wizard gives me this error Path without file it works fine with other projects but one particular project it doesn't work. If anyone knows WHICH path without file it might be ? | |
Does anyone know how to take a screen shot of a JFrame or any Java Swing application which is NOT visible? jframeobj.setVisible(false); Something to extract the information from the memory itself? | |
Re: This border comes from MS Internet Explorer only. This is security feature from MSIE. It mostly comes when the .swf file is on ur localhard disk. WIth URL associated with it, it wont come. You might try out by putting the HTML and Flash swf on some server. | |
Re: First off all, Do you have any knowledge of HTML. U will need to create a form which would contain some textboxes and a submit button. Try making this first and get back to us. | |
I am using XP SP2, My internet from LAN via a router stops after 30 mins. All downloads, pings etc stop. Only option is to restart... output of netstat -an is below Active Connections Proto Local Address Foreign Address State TCP 0.0.0.0:135 0.0.0.0:0 LISTENING TCP 0.0.0.0:445 0.0.0.0:0 LISTENING TCP 0.0.0.0:23445 … | |
Re: You also might want to insert actual data instead of just the words: title, fname, mname etc. If they are variables use $ sign before them. | |
Re: Did you try passing [code] me.Name [/code] | |
Re: Make a layer and insert the image there. Lock the layer while you're working on other layes on top.. Also make sure this layer lies at the bottom of all layer. | |
Re: You can try something like: [code] on(rollover){ image.width = image.widht + 10; image.height = image.height + 10; } on (rollout){ image.width = image.widht - 10; image.height = image.height - 10; } [/code] | |
Re: The function to email the information is mail() google it for more.. also: When you press the confirm button, are you posting the variables again? Confirm button is on the intermediate page so if you press this the page which actually sends the email do not receive your variables from … | |
Re: I don't think flash allows you to import .AVI files. Convert your avi to mov, then You'd need to have quicktime player installed. There after you can import it. Simpler solution: Convert the movie to .FLV (Flash Video ) format and u can import it anyway... | |
Re: Okay so have you written any code? Show us whatever you've done so far. | |
Re: You could also try XALAN from apache. Its an open source parser. Available in Java and C++ | |
Re: You didn't tell us where is the email account? Which software is used for the email client? | |
Re: Your flash var will provide the name/link to the image right: SO create a movie clip and give it an instance name. Say : mypic mypic.loadMovie("url from flashvars"); | |
Re: As far as I know, This is not a forum to get your things done. If you need help we would love to provide. But your question is more like giving out a specification! Buddy, if you're learning Flash and need help, let me know. I'd love to! | |
Re: Hi there, In today's world, Physical distance doesn't matter much. So you could go for any server you like. Try to get a Linux server. -- We also offer hosting solution, Drop me a line at my email address for a quote. | |
Re: Yes its possible but you'll need the help of PHP too. Here's the idea: Get your flash to send bytes of screen which you want as an image. Php will get that image byes and with its GDI library suport it can convert the bytes into JPEG image again. | |
I have some questions related to printer object: 1. I am painting a Picture Box image on the printer object and then printing it. How can I shrink the Image so that It fits to page of the printer? 2. I am generating reports which are in HTML files displayed … | |
Re: I would put them as instance variables rather than local because the method is being called 50 times a second... Imaging your JVM creating and destroying the variables so many times...!! its a huge pressure on it... So why not just let it breathe and keep it as instance variable … | |
Re: Here's a trick: Open that same text file in Create Mode. This will erase the text file and create a new one with that name.... Hope this works.. | |
Re: As far as I know, there is no need of : mysql_query($query_dosearch, $dbconnect) You can simply do mysql_query($query_dosearch); Also I do not see a function mysql_connect() or mysql_pconnect() which connects to the database? Have you forgotten that ? | |
Re: Hi there, Have you tested that this code perfectly sends data to the server? i doubt... I would have tested it but I don't have the data... Try checking it by accepting it with some simple server side script like php etc. if it works then move to servlet.. | |
Re: Try calling the main function of GUI from the external class's method... This is what actually JVM does... Is there any package involved? Also post more code, we'd like to test it on our machines too. |