Skip to main content

Posts

Showing posts with the label Technology

There is no “SHARE” button in the Organizer while creating iPa file.

Hi If you don’t know what is happening when you create an iPa file and the organizer pops up when Archive succeeds without Share button. Here is the solution. First thing, check whether you are using the latest XCode. If you are using latest Xcode 4.3 above. You will not find share button instead, you will be provided with Validate and distribute. Click Distribute and select “Save for Ad-Hoc Deployment” and create iPa. It will work like a charm. Good Luck.

App could not be installed in the itunes library because it is not a valid Application

Hi all For those who stuck up with the error stated above “ App could not be installed in the iTunes library because it is not a valid application”. Here is the simple and correct solution. Finding out the solution, you will be astonished thinking that how would a auto run if someone turns the rear view mirror. But, it works. Go to project target and in summary, you will find two parameters to be filled. Version Build If any one of these parameters is left empty and if you try creating an iPa, you can successfully create an iPa but while syncing to iTunes you will get an error message stating “App could not be installed in the iTunes library because it is not a valid application.” Most probably your version will be filled and Build will be empty. Give some value to it. Build an iPa. Bingo.

How to remove or uninstall GRUB Loader in Windows 7.

Hi all                  I tried installing Linux and got hooked up with this innocent yet annoying GRUB loader. For those who doesn't have any idea of what the hell is GRUB Loader, here is a piece of info about it. GNU GRUB is a bootloader capable of loading a variety of free and proprietary operating systems. GRUB will work well with Linux, DOS, Windows, or BSD. GRUB stands for GR and U nified B ootloader. GRUB is dynamically configurable. This means that the user can make changes during the boot time, which include altering existing boot entries, adding new, custom entries, selecting different kernels, or modifying intrid.  This means that if your computer has a fairly modern BIOS that can access more than 8GB of hard disk space, GRUB will automatically be able to access all of it. GRUB can be run from or be installed to any device (floppy disk, hard disk, CD-ROM, USB drive, network drive) and...

Pop-up Using div tag

Hi Bloggies,                     Here I come up with one more interesting technical  post. You have come across javascript many times and there you could find script for opening a new window by clicking some text or button. But, this has various constraints like if you use open.window() method it will open a new window replacing the existing one. This may sometimes cause problems in opening because browsers expects this to be a pop up window and wont allow you to open it. Here comes the simple solution. Use div tag and produce a onclick event. Try it out guys. This is such a simple code that the one tries it, doesn’t need to be a pro in technology. Here is the scenario which I came across. Visiting a website, I found a option called “Send to a Friend” . I clicked it and I found a small window popped up infront of me with existing website contents as it is. How does it wor...

Change the Opacity of the image "onClick" - Javascript

Hi Folks,                I come up with another technical blog which will be quite interesting. I did this in my training period. You might have heard of the Opacity which means transperancy. Now, I have added an image to my HTML code and on clicking the image its opacity will be reduced. Usually the rating will be between 1 to 100 for IE and 0.1 to 1 for Firefox. We have to write differently for different browsers. Lets see a example for it. Here is my HTML code with an image tag which has a image.  Here goes the coding…. <html> <head> <title>Change the Opacity of the image</title> <script type=”text/javascript”> function lightup(imageobject, opacity){  if (this.img){   Opacity(this.img, 100);  }  Opacity(imageobject, opacity);  this.img=imageobject; } function Opacity(obj,opc){  if (opc<0||opc>100) return;  obj.style...

Draw shapes in iPhone.

Hi Folks,               You would have seen shapes, graphs in iPod, iPhone and iPad. Have you ever thought about the code behind it. Here it is. I am going to show simple code to draw shapes. In iPhone, its just like joining the co-ordinates. Here it goes. Step 1: Create a ViewController in my case, its SampleViewController. And create a UIView in my case its just SampleView. Step 2: In your AppDelegate implementation file create an instance for ViewController like this. Create the instance in didFinishLaunchingWithOptions delegate. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {          // Override point for customization after application launch. // Add the view controller’s view to the window and display. SampleViewController *ControllerInstance = [[SampleViewController alloc]   ...