loading

visual loading feedback to mimic the server request?

we are linking a site over to a slow web service. is it possible to create a jquery animation to show the user that a page is loading? the page isn't on our server. ...

Loading issue thumbnails

I'm having issue while loading thumbnail, I set an interval of time for each thumb to load on stage. Some of them can't load sequential in order, they are missing, are lagging... Actually, I set a preloader to the file size but since I load dynamically from XML, file size is smaller. Does anyone know a solution to solve that issue? It'...

android: how to access ressources in the res/raw directory via BufferedReader

hello, i save some ressources in the res/raw directory which i then would like to read with my custom loader. how can i do this? ideally i would get a BufferedReader on them. thanks! ...

Dynamically loading Javascript files and load completion events

Hi, today I've been working on loading dynamic javascript code (files). The solution I use is : function loadScript(scriptUrl) { var head = document.getElementsByTagName("head")[0]; var script = document.createElement('script'); script.id = 'uploadScript'; script.type = 'text/javascript'; script....

Loading a picture file Image.FromFile VS FileStream

I must admit that I never understood what are the streams are all about- I always thought it's an internet thing. But now I run into a code that used a stream to load a file localy and I wonder if there is advantage for using a stream over... well the way I always loaded files: private void loadingfromStream() { DirectoryInfo dirInfo...

LazyLoad: 'Source Not Found' when I try to DisplayImage

Hi - I'm trying to use Fedor's LazyAdapter, but keep getting a "Source Not Found" error when I return the view for a row in my array adapter. Here's the main activity code, along with the array adapter: package com.briancsinger.testlist; import java.net.URL; import java.util.ArrayList; import javax.xml.parsers.SAXParser; import javax...

Ipad Application without nib starts and then immediately closes

Im writing an ipad application. So far what I have is a Delegate and Root view controller which initializes the menu screen that starts the game. I am not using a nib, so in my main class, i start the application with UIApplicationMain(argc, argv, nil, @"PictionaryAppDelegate"); In my delegate, I have a applicationDidFinishLaunching...

Help with endianness?

Hey guys I learned about endianness and am still having difficulty understanding where things could go wrong. I was wondering what sort of things I should look for and how I should go about fixing it. I know I dont need to change anything for loading from text files and things like that but for example here is a snippet of my code for lo...

Where to add a loading view in an iphone/ipad app?

I have a view made in Interface Builder and I want to show it every time I need time to get some data from a server. I need to add it on top of everything, I mean, modals can be presenting when this view is visible, and this view has to be always on top. Any help? Thanks in Advance ...

getting null value for particular column, while loading the object.

I have an entity bean which is made using Hibernate annotation. @Entity @org.hibernate.annotations.Entity(dynamicInsert=true,dynamicUpdate=true) @Table(name="[tbDDE]") public class DElement implements Serializable{ @Column(name = "[ID]", nullable = false, unique=true, updatable=false, insertable=false) @GeneratedValue(strateg...

iPhone : how to bring up the UI faster?

I'm currently developing a client similar to twitter. The app has 5 tabs, and are all table views controllers. It seems simple enough, but the start up time (from hitting the app on the menu..to the black screen+status bar ...to the user interface) is 18 seconds! I want to slice this down to at least 5-6 seconds and don't want to have ...

Help With iframe. Page loading too slow

Hello friends..:) Can anyone please help with the iframe in the following page: http://searchbankproperties.com/bank-owned-properties-orlando/ 2 questions: I don't understand why the page is loading slow.. Is it possible to only display the main content of the page I'm trying to iframe without the header and navigation? See the lin...

How do I determine whether an intermittent failure is due to a bug in Firefox or Flash Plug-in?

We have an old Flash application that has worked fine for years, but intermittently fails on latest versions of Firefox. Using the same version of the Flash Player, the application runs fine in Internet Explorer. Recompiling the product is risky, and I'm trying to fully understand the problem before resorting to that. I'd like to be abl...

Images fail to load on my website on IE only

I just created a website ( http://www.kalif.ca ) for my business. When I load the site in IE (in my specific case IE 8 on Win 7), on the main page, the only image that's loaded is the logo. Any insights as to what might be happening would be greatly appreciated. ...

iPhone SDK loading screen

I have a view in my app where I use a very large photo that is Hi-Res and takes a bit of time to load. How do I put a loading screen while this is happening? The kind of loading screen with the spinning loading wheel so that the app does not look like it has frozen? Thanks in advance for any help! Edit: Note that I am simply loading the...

C# app can't find Dll when compiled with /MDd flag

Hi, I have a C# application which links to a few c# DLLs which in turn use bindings to call c++ functions in other Dlls. This all works fine if I compile the c++ Dlls with /MTd but when I use /MDd I get an XMLParseException in my C# app complaining that it can't find any Dlls(it fails to find the first of my Dlls that I use). My best g...

Is it safe to merge several JavaScript files into one?

I'm developing a dynamic website using jQuery and I have found several jQuery plugins to be very helpful when doing that. Of course, for each plugin I add, there is another script to load when the page loads. I know that for pages to be quick to load, smaller and/or fewer resources is better. Is it safe to just merge all those jQuery p...

NSURLConnection - how much LEFT to download

Hi there I am downloading video files over wifi through my application to the iphone. I want to make a % downloaded display (eg: loading bar style). I thought about using - (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data; but I would need to know how much data there was overall to download. Is there any w...

Fancybox: Show loading animation while loading iframe content

When using jQuery and fancybox for showing another page inside an iframe I want to show the loading animation while the page inside the iframe is loading. This is possible when using ajax to load content but I want the same thing when using iframe. Is it possible from the api to also get the loading animation while the content in the ifr...

Loading Windows form with over 200 controls

My form has over 200 control(s)! It takes about 7 seconds to load the form and bind the controls. I've traced the application with some performance profilers , but I didn't find anything with HOT flag except the constructor's of form. I would like to know that is it possible to call InitializeComponent method with sth like backgroundWo...