Posts

My new Jquery Plugin name is krDailog

Image
This is my new jquery plugin i hope this is use full to you if you require this plugin than contact me  /*     krDailog Version 1.0     Author: krButani     email: butanikartik1108@gmail.com */ Require to use this function     - bootstrap.css new version     - bootstrap.js new version     - jquery.js new version     - jquery-ui.js new version     - glyphicons font by bootstrap # you can use new version of all and also use min file also # include file first this way     <link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">     <link rel="stylesheet" type="text/css" href="css/krDailog.css">     <script type="text/javascript" src="js/jquery.min.js"></script>     <script type="text/javascript" src="js/jquery-ui.min.js"></script> ...

Intent demo pass with text demo in Android

 First Create Two acitvity  layout file name  firstscreen.xml  second_screen.xml    java filename  FirstScreen.java  SecondScreen.java firstscreen.xml <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/firstscreen" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context="com.example.krbutani.intentpasswithdatademo.Firstscreen"> <Button android:text="Goto Second" android:layout_width="match_parent" android:layout_height=...

Never Give Up

Hi everyone today I am ill even though I have build a code because today I saw one event which inspires a lot. Today I show one Indian television show which is a singing show(Indian Idol). In this show, one guy came for audition who lost his arm in his childhood due to touching high voltage cable. That guy told very inspiring line "Everyone can use a sword but when you use that sword on the battlefield to kill your opponent it makes worthy".

Peronal Development

Hello Friends today i am start again writing a blog. for may daily created code and writing for the facing a problem to develop project. so view my blog and if you face any problem like i am face than told me i am always help you.

Find String length without using any built in function

#include #include void main() {     clrscr();     char s[] = "kartik butani";     int cout = 0;     char st;     do {         st = s[cout++];     }while(st != '\0');     printf("%d",--cout);     getch(); }

Swapping program in one line

Swapping program in one line #include #include void main() {     clrscr();     int a=36,b=20;     a = (a+b) - (b = (a+b)-b);     printf("%3d %3d",a,b);     getch(); }

How to Create a Star Rotation Program in VB.net

Design View :                     Take two control button and timer control and not change any property. Code View : Public Class Form1     Dim g As Graphics     ' variable declaration     Dim theta As Double = 3.1415 / 180     Dim t(5) As Double     Dim i As Integer = 1     Dim xc, yc, r, cx, cy As Integer       Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click         Timer1.Start() ' timer is star to draw the star     End Sub     Public Sub drawstar()         g = Me.CreateGraphics         g.Clear(Color.White)              r = 80 ' siz...