Thursday, July 25, 2013

little lock icon rounded with circle on iphone 4s

Hi,

Does any one wonder to see why they are seeing a small lock and around arrow symbol on your iPhone.
Wanna avoid it. Don't worry here you go...

It means that.

Portrait orientation Locked. 
To unlock it, Double tap the home , In multitask bar scroll to left, you can see music player options preceeding you can see the Portrait locked symbol. Here just tap to make it unlock. Now the symbol is gone away...Happy...!!!!


Regards,
Ravi

How to type all capital letters in iPhone 4S

Hi,

I just thought to write all capital letters while texting in my iphone 4S. Surprisingly i could not do so.
I verified my Settings -> General -> Keyboard -> Enable Caps Lock : on only. 
But still i could not type all capital letters. Then i found it. Below is the way to do so.

When typing, there is a small upward arrow on left side to the keyboard. Just 'double tap' it. Let it make back ground blue color. Now see the magic of all capital letters.



Regards,
Ravi

Compilation Error CS1061: 'ASP.default_aspx' does not contain a definition for 'abc_CheckChanged'...

Hi Readers,
Greetings.

After long time....
Actually i am on my way to revise some basic concepts, during one program compilation i got the below error. After spending some time found the cause which turned me to think about one small mistake. Thought to share others, so that their time can be save.

Compilation Error

Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: CS1061: 'ASP.default_aspx' does not contain a definition for 'chkTest_CheckChanged' and no extension method 'chkTest_CheckChanged' accepting a first argument of type 'ASP.default_aspx' could be found (are you missing a using directive or an assembly reference?)


Cause: There could be other causes too. But for my instance the cause is,
i made the event function to private. Which caused the issue.

Solution: Took of the private and made the event function to public. And my problem solved.
 

    private void chkTest_CheckChanged(object sender, EventArgs e)
        {
            GetRows();
            -------

        }

   public void chkTest_CheckChanged(object sender, EventArgs e)
        {
            GetRows();
            -----
        }


Regards,
Ravi