Pages

هانت يا دنيا    

how to save blogger page with pdf



1.First Sign up with Web2PDF.
2.Now Configure your "Save Page as PDF" button and click "Generate the JavaScript" button.
3.Then a Javascript code will be generated. Copy This code.
Now follow these simple steps :
(a)Log in to your dashboard--> layout- -> Edit HTML
(b)Click on "Expand Widget Templates"
(c)Scroll down to where you see this:
<data:post.body/>
(d)Immediately after above line, paste the code which you have generated at the Web2Pdf Online website. It's look like below code:
<!-- START: PDF Online Script --><script type="text/javascript">var authorId = "XXXXXXXX-XXXX-XXXX-XXX-XXXXXXX";var pageOrientation = "0";var topMargin = "0.5";var bottomMargin = "0.5";var leftMargin = "0.5";var rightMargin = "0.5";</script><script type="text/javascript" src="http://web2.pdfonline.com/pdfonline/pdfonline.js"></script><!-- END: PDF Online Script -->
(e)Click on "Save Templates" and Refresh your site.

j s : finder fox



                           you can add this wedget to your site and blogger
Simply insert the above code before the </body> tag of your page.


<script type="text/javascript">
var finderfoxConfig = {
    version: "1.0.0",
    key: "5eaa44a909a0b4070000012f5dee8ef1"
};
document.write(unescape('%3Cscript type="text/javascript" src="'+
('https:'==document.location.protocol?'https://ssl.':'http://')+
'finderfox.smarterfox.com/finderfox.js"%3E%3C/script%3E'));
</script>

c sharp : DATA STRUCTURES


DATA STRUCTURES

There are various ways of grouping sets of data together in C#.
Enumerations
An enumeration is a data type that enumerates a set of items by assigning to each of them an identifier (a name), while exposing an underlying base type for ordering the elements of the enumeration. The underlying type is int by default, but can be any one of the integral types except for char.
Enumerations are declared as follows:
enum Weekday { Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday };
The elements in the above enumeration are then available as constants:
Weekday day = Weekday.Monday;
if (day == Weekday.Tuesday)
{
Console.WriteLine("Time sure flies by when you program in C#!");
}
If no explicit values are assigned to the enumerated items as the example above, the first element has the value 0, and the successive values are assigned to each subsequent element. However, specific values from the underlying integral type can be assigned to any of the enumerated elements:
enum Age { Infant = 0, Teenager = 13, Adult = 18 };
Age age = Age.Teenager;
Console.WriteLine("You become a teenager at an age of {0}.", (int)age);
The underlying values of enumerated elements may go unused when the purpose of an enumeration is simply to group a set of items together, e.g., to represent a nation, state, or geographical territory in a more meaningful way than an integer could. Rather than define a group of logically related constants, it is often more readable to use an enumeration.
It may be desirable to create an enumeration with a base type other than int. To do so, specify any integral type besides char as with base class extension syntax after the name of the enumeration, as follows:
enum CardSuit : byte { Hearts, Diamonds, Spades, Clubs };
Structs
Structures (keyword struct) are light-weight objects. They are mostly used when only a data container is required for a collection of value type variables.
24 | C# Programming Data Structures
Structs are similar to classes in that they can have constructors, methods, and even implement interfaces, but there are important differences. Structs are value types while classes are reference types, which means they behave differently when passed into methods as parameters. Another very important difference is that structs cannot support inheritance. While structs may appear to be limited with their use, they require less memory and can be less expensive if used in the proper way.
A struct can, for example, be declared like this:
struct Person
{
public string name;
public System.DateTime birthDate;
public int heightInCm;
public int weightInKg;
}
The Person struct can then be used like this:
Person dana = new Person();
dana.name = "Dana Developer";
dana.birthDate = new DateTime(1974, 7, 18);
dana.heightInCm = 178;
dana.weightInKg = 50;
if (dana.birthDate < DateTime.Now)
{
Console.WriteLine("Thank goodness! Dana Developer isn't from the future!");
}
It is also possible to provide constructors to structs to make it easier to initialize them:
using System;
struct Person
{
string name;
DateTime birthDate;
int heightInCm;
int weightInKg;
public Person(string name, DateTime birthDate, int heightInCm, int weightInKg)
{
this.name = name;
this.birthDate = birthDate;
this.heightInCm = heightInCm;
this.weightInKg = weightInKg;
}
}
public class StructWikiBookSample
{
public static void Main()
{
Person dana = new Person("Dana Developer", new DateTime(1974, 7, 18), 178, 50);
}
}

c# Sharp How can I disable the ALT+F4 method of closing the application

frist way

private void Form1_FormClosing(object sender, FormClosingEventArgs e) 
{ 
    e.
Cancel = true; 
} 

second way
You can handle "Alt+F4" KeyDown to disable it.

1. set "KeyPreview" of your form to "true"

2. add "KeyDown" handler for your form (or override "OnKeyDown" method)

private void Form1_KeyDown(object sender
, System.Windows.Forms.KeyEventArgs e) {
if( e.Alt && e.KeyCode==Keys.F4 ) {
e.Handled=true;
}
}

Link With in

Related Posts Plugin for WordPress, Blogger...