Posts

Featured post

jquery - JavaScript animate resizing div -

I'm trying to put a small animation on one page. On my side there is 2 divisas, the second of which has its content called through Ajax, so the height of the divis is different without refreshing the page. & lt; Div id = "number1" style = "float: left; padding-down: 140px" & gt; Static content, 200 px or so & lt; / Div & gt; & Lt; Div id = "number2" style = "float: left" & gt; AJAX Content Here & lt; / Div & gt; & Lt; Div style = "clear: left" & gt; & Lt; / Div & gt; It basically gives me a 2 column layout, and the image nest under the left hand column does not matter if I & lt; Img src = "image" margin-top: -140px "/> What I'm trying to do is to transmit image transition Animate the page when the page height comes thanks to the Ajax content. At present and above the image shock, I want to calm the page easily. Is it possible? I'm not in my J

web services - Can I call PHP webservices from .Net code? -

I have a webservice in SOAP (php), and I have a net program that will call that web service and The results will recover. Is this possible? Any tutorials on this? Hope this will help you

flash - as3 I'm lost, how can I move different text objects? -

I recently started posting with A3, which looks very good, the problem comes from 2 and I'm completely lost I'm trying to import text from 4 text files, then moving them to another location: text1x = 100 , Text2x = 150 text3x = 200 etc. Here's where I got stuck: Import flash.display.MovieClip; Import Flash.Display.Loader; Import flash.events *; Import flash.net.URLRequest; Import caurina.transitions.Tweener; Var myTextLoader: URLLoader = new URLLoader (); Var myTextField_txt: textfield = new textfield (); MyTextField_txt.wordWrap = true myTextField_txt.autoSize = TextFieldAutoSize.CENTER; Var i: int = 0; Var Sips: Intrate = 200; For (i; i <5; i ++) {myTextLoader.addEventListener (event.complete, overloaded); MyTextLoader.load (new URLRequest ("text" + i + ".txt")); } Function On Loaded (E: Event): Zero {var testo = e.target.data; StyleMe (testo); } Function Style I (Testo) {// Association IL Testo Aly variabile myTextField_txt.text = test

winforms - How to build multilingual Crystal reports -

We are developing a multi-lingual conform application using Studio 2008. I am trying to figure out how to make multilingual reports using crystals. Report. Is there something like a real resource file in the world of crystal reports? "post-text" itemprop = "text"> I am sorry that I am robbing you with your tubble badge, but I do not think crystals have many language support . I think your only option is to keep a separate report for each language and engage the report in that language in the data you want to display. There is a link to the same answer.

flex - clear the text field or destroy the object -

I have a text field, which holds the session value. Now that I do the logout operation .. Text field clearing does not work ... sessionHold.text = ""; The above code does not work, it does not clear the session value in the field. appSes = event.result as array var vinoth: string = string (appSes [0]); Alert.show (vinoth); SessionHold.text = appSes [1]; Now I am a bit confused .... Why do not you have to hold session ID inside a text field and not inside the string variable ?!

mxml - What does {variable} do in flex -

I'm using {} around the variable in MXML, in fact to understand what they are. I need to know now that I should use it around a variable .. What happens like this? Example: & lt; Mx: label text = "{variable}" /> It's binding !, In this case, this means that The label will display the contents of "variable", if you change the value of "variable" then it will also change the text displayed by the label.

jQuery javascript scoping problem -

I have the hidden input element that I use to give the names of the more input elements generated by javascript counter I am using as To get the counter value I use parseInt ($ ('# counter'). Val ()); However, I use this code snippet several times in my code, so I thought it would be better to put it in the function function getCounter () {ParseInt ($ ('# counter'). Val ()); } It always undefines, while only the code snippet returns the correct value when running. It happens in many ways, which tried to throw the function as function inside $ 400 (function () {}), such as global function etc. How can I fix scoping? Add "return" to your return statement :) function GetCounter () {return parseInt ($ ('counter') ()).}