Unknown server tag ‘asp:ScriptManager’.

in the web.cofig insert this:

<controls>
<add tagPrefix=”asp” namespace=”System.Web.UI” assembly=”System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35″/>
<add namespace=”AjaxControlToolkit” assembly=”AjaxControlToolkit” tagPrefix=”ajaxToolkit”/>
</controls>

Enjoy ;)

Changing the default browser used in VS 2005 and Visual Web Developer

I’ve seen a few people ask if it is possible to change what browser is launched and used when running web apps in VS 2005 and Visual Web Developer (for example: to use FireFox instead of IE).  The good news is that there is an easy way to configure this. To-do this:

1) Right click on a .aspx page in your solution explorer

2) Select the “browse with” context menu option

3) In the dialog you can select or add a browser.  If you want Firefox in the list, click “add” and point to the firefox.exe filename

4) Click the “Set as Default” button to make this the default browser when you run any page on the site.

Note that there is also an optional drop-down at the bottom of the dialog that lets you select the default browser window size when loading.  You can choose 800×600 or 1024×768 if you want to visualize what the site will look like for people using those screen resolutions.  This works for both IE and FireFox (and probably other browsers too — those just happened to be the two I checked).

Relax

ale&ceci L

ebbene si.. una Very Important People ;)

ale&ceci4

due VIPS.. :)

ale&ceci5

ale&ceci7

ale&ceci8

A te..

A te che sei l’unica al mondo l’unica ragione
Per arrivare fino in fondo ad ogni mio respiro
Quando ti guardo dopo un giorno pieno di parole
Senza che tu mi dica niente tutto si fa chiaro
A te che mi hai trovato all’ angolo coi pugni chiusi
Con le mie spalle contro il muro pronto a difendermi
Con gli occhi bassi stavo in fila con i disillusi
Tu mi hai raccolto come un gatto e mi hai portato con te
A te io canto una canzone perché non ho altro
Niente di meglio da offrirti di tutto quello che ho
Prendi il mio tempo e la magia che con un solo salto
Ci fa volare dentro all’aria come bollicine

A te che sei
Semplicemente sei
Sostanza dei giorni miei
Sostanza dei giorni miei

A te che sei il mio grande amore ed il mio amore grande
A te che hai preso la mia vita e ne hai fatto molto di più
A te che hai dato senso al tempo senza misurarlo
A te che sei il mio amore grande ed il mio grande amore
A te che io ti ho visto piangere nella mia mano
Fragile che potevo ucciderti stringendoti un po’
E poi ti ho visto con la forza di un aeroplano
Prendere in mano la tua vita e trascinarla in salvo
A te che mi hai insegnato i sogni e l’arte dell’avventura
A te che credi nel coraggio e anche nella paura
A te che sei la miglior cosa che mi sia successa
A te che cambi tutti i giorni e resti sempre la stessa

A te che sei
Semplicemente sei
Sostanza dei giorni miei
Sostanza dei sogni miei
A te che sei
Essenzialmente sei
Sostanza dei sogni miei
Sostanza dei giorni miei

A te che non ti piaci mai e sei una meraviglia
Le forze della natura si concentrano in te
Che sei una roccia sei una pianta sei un uragano
Sei l’orizzonte che mi accoglie quando mi allontano
A te che sei l’unica amica che io posso avere
L’unico amore che vorrei se io non ti avessi con me
A te che hai reso la mia vita bella da morire,
Che riesci a render la fatica un’ immenso piacere,
A te che sei il mio grande amore ed il mio amore grande,
A te che hai preso la mia vita e ne hai fatto molto di più,
A te che hai dato senso al tempo senza misurarlo,
A te che sei il mio amore grande ed il mio grande amore,

A te che sei
Semplicemente sei
Sostanza dei giorni miei
Sostanza dei sogni miei
E a te che sei
Semplicemente sei
Compagna dei giorni miei
Sostanza dei sogni miei…

ultrawebtab trouble with tabclick event

Hi, at first i didn’t receive the tabclick-event. So i googled, found some answeres and tried the following settins:

Set the AsyncMode to ON

Set Autopostback to TRUE

Expand AsyncOptions, and set EnableLoadOnDemand to TRUE.

OK, this worked, i got my precious event..

Disabling Enabling Validation Control ASP.NET

When using validation controls in your ASP.NET pages you might want to disable validation in certain situations. The most common example is when you want to disable validation for a Cancel button. You can instruct the ASP.NET server control to disable just the client-side validation, or both the client-side and the server-side valid ation.

Disabling Client-Side Validation

If you want to perform only server-side validation and to avoid validation on the client, you can specify for certain ASP.NET Server controls not to not run client-side script validation. To disable client-side validation, set the validation control’s EnableClientScript property to false.

<asp:Button id=”CancelButton” runat=”server” Text=”Cancel” EnableClientScript=”False” />

Disabling both Client-Side and Server-Side Validation

You can specify that individual controls on a Web Forms page cause a postback without triggering a validation check.

If you want to bypass validation for a specific ASP.NET Server control, you’ll have to set the control’s CausesValidation property to false. Consider the ASP.NET code example below, showing how to disable validation for a Cancel button:

<asp:Button id=”CancelButton” runat=”server” Text=”Cancel” CausesValidation=”False” />

There is another way to disable a validation control, and you can accomplish it by setting the Enabled ASP.NET validation control property to false. Note that if you set Enabled to false, the ASP.NET validation control will not be rendered to the ASP.NET page at all:

<asp:RequiredFieldValidator id=”RequiredFieldValidator1″ runat=”server” ControlToValidate=”YourControlToValidate” ErrorMessage=”Your error message here” Enabled=”False” />

Request.QueryString: Leggere i valori

using System.Collections.Specialized;

// Request.QueryString è di tipo NameValueCollection
NameValueCollection nvcQS = Request.QueryString;

// ciclo su tutte le chiavi
for (int iKey = 0; iKey < nvcQS.AllKeys.Length; iKey++) {
Response.Write(”<BR>Chiave [" + iKey + "]: ” + nvcQS.AllKeys[iKey] + “<BR>”);
string[] asValue = nvcQS.GetValues(nvcQS.AllKeys[iKey]);
// ciclo su tutti i valori
  for (int iValue = 0; iValue < asValue.Length; iValue++) {
Response.Write(”Valore [" + iValue + "]: ” + asValue[iValue] + “<BR>”);
}
}

How to get the Content Type(MimeType) of a file C#

private string MimeType (string Filename)
{
string mime = “application/octetstream”;
string ext = System.IO.Path.GetExtension(Filename).ToLower();
Microsoft.Win32.RegistryKey rk = Microsoft.Win32.Registry.ClassesRoot.OpenSubKey(ext);
if (rk != null && rk.GetValue(”Content Type”) != null)
mime = rk.GetValue(”Content Type”).ToString();
return mime;
}

Visual Studio .NET 2005 Keyboard Shortcuts

Visual Studio .NET 2005 Keyboard Shortcuts

Class Diagram

Num +

ClassDiagram Expand

Shift+Alt+B

Edit ExpandCollapseBaseTypeList

Ctrl+Del

Edit Delete

Del

Edit RemovefromDiagram

Enter

View ViewCode

Shift+Alt+L

Edit NavigateToLollipop

Num -

ClassDiagram Collapse

DataSet Editor

Ins

Data InsertColumn

Ctrl+L

Data Column

Deployment Designer

Shift+Alt+D

Diagram RedrawConnection

Shift+Alt+T

Diagram RerouteConnection

Global

Ctrl+-

View NavigateBackward

Ctrl+Shift+-

View NavigateForward

Ctrl+.

View ShowSmartTag

Ctrl+/

Tools GoToCommandLine

Ctrl+\, D

View CodeDefinitionWindow

Ctrl+\, E

View ErrorList

Ctrl+\, T

View TaskList

Ctrl+Shift+1

View BrowseNext

Ctrl+Shift+2

View BrowsePrevious

Ctrl+Shift+7

View ForwardBrowseContext

Ctrl+Shift+8

View PopBrowseContext

Ctrl+A

Edit SelectAll

Ctrl+Alt+A

View CommandWindow

Ctrl+Shift+A

Project AddNewItem

Shift+Alt+A

Project AddExistingItem

Ctrl+Alt+B

Debug Breakpoints

Ctrl+B

Debug BreakatFunction

Ctrl+Shift+B

Build BuildSolution

Alt+Bkspce

Edit Undo

Ctrl+Alt+Break

Debug BreakAll

Ctrl+Break

Build Cancel

Ctrl+Alt+C

Debug CallStack

Ctrl+Shift+C

View ClassView

Ctrl+Alt+D

Debug Disassembly

Ctrl+D

Edit GoToFindCombo

Shift+Alt+D

Data ShowDataSources

Shift+Del

Edit Cut

Ctrl+Alt+Down Arrow

Window ShowEzMDIFileList

Down Arrow

Edit MoveControlDownGrid

Shift+Down Arrow

Edit SizeControlDownGrid

Ctrl+Alt+E

Debug Exceptions

Ctrl+Shift+E

View ResourceView

Alt+Enter

Diagram Properties

Enter

Edit ShowTileGrid

Shift+Alt+Enter

View FullScreen

Esc

Window ActivateDocumentWindow

Shift+Esc

Window CloseToolWindow

Ctrl+F

Edit Find

Ctrl+Shift+F

Edit FindinFiles

Ctrl+Alt+F1

Help Contents

Ctrl+F1

Help HowDoI

F1

Help F1Help

Shift+F1

Help WindowHelp

Alt+F10

Debug ApplyCodeChanges

Ctrl+Alt+F10

Debug StepOverCurrentProcess

Ctrl+F10

Debug RunToCursor

Ctrl+Shift+F10

Debug SetNextStatement

F10

Debug StepOver

Alt+F11

Tools MacrosIDE

Ctrl+Alt+F11

Debug StepIntoCurrentProcess

Ctrl+F11

Debug ToggleDisassembly

Ctrl+Shift+Alt+F11

Debug StepOutCurrentProcess

F11

Debug StepInto

Shift+F11

Debug StepOut

Alt+F12

Edit FindSymbol

Ctrl+Alt+F12

View FindSymbolResults

Ctrl+F12

Edit GoToDeclaration

Ctrl+Shift+F12

View NextError

F12

Edit GoToDefinition

Shift+Alt+F12

Edit QuickFindSymbol

Shift+F12

Edit FindAllReferences

Ctrl+Alt+F2

Help Index

Ctrl+F2

Window MovetoNavigationBar

F2

View EditLabel

Alt+F3, S

Edit StopSearch

Ctrl+Alt+F3

Help Search

Ctrl+F3

Edit FindNextSelected

Ctrl+Shift+F3

Edit FindPreviousSelected

F3

Edit FindNext

Shift+Alt+F3

Help SearchResults

Shift+F3

Edit FindPrevious

Ctrl+F4

Window CloseDocumentWindow

F4

View PropertiesWindow

Shift+F4

View PropertyPages

Alt+F5

Data StepInto

Ctrl+Alt+F5

Data Execute

Ctrl+F5

Debug StartWithoutDebugging

Ctrl+Shift+F5

Debug Restart

F5

Debug Start

Shift+Alt+F5

Debug StartWithApplicationVerifier

Shift+F5

Debug StopDebugging

Alt+F6

Window NextPane

Ctrl+F6

Window NextDocumentWindow

Ctrl+Shift+F6

Window PreviousDocumentWindow

F6

Window NextSplitPane

Shift+Alt+F6

Window PreviousPane

Shift+F6

Window PreviousSplitPane

Alt+F7

Window NextToolWindowNav

Ctrl+F7

Build Compile

F7

View ToggleDesigner

Shift+Alt+F7

Window PreviousToolWindowNav

Alt+F8

View MacroExplorer

F8

Edit GoToNextLocation

Shift+F8

Edit GoToPrevLocation

Alt+F9, A

DebuggerContextMenus BreakpointsWindow

Alt+F9, D

DebuggerContextMenus BreakpointsWindow

Alt+F9, S

DebuggerContextMenus BreakpointsWindow

Ctrl+F9

Debug EnableBreakpoint

Ctrl+Shift+F9

Debug DeleteAllBreakpoints

F9

Debug ToggleBreakpoint

Shift+F9

Debug QuickWatch

Ctrl+Alt+G

Debug Registers

Ctrl+G

Edit GoTo

Ctrl+Shift+G

Edit OpenFile

Ctrl+Alt+H

Debug Threads

Ctrl+H

Edit Replace

Ctrl+Shift+H

Edit ReplaceinFiles

Ctrl+Alt+I

Debug Immediate

Ctrl+Alt+Ins

Project Override

Ctrl+Ins

Edit Copy

Ctrl+Shift+Ins

Edit CycleClipboardRing

Shift+Ins

Edit Paste

Ctrl+Alt+J

View ObjectBrowser

Ctrl+K, Ctrl+B

Tools CodeSnippetsManager

Ctrl+K, Ctrl+F

NewFolder  

Ctrl+K, Ctrl+M

Edit GenerateMethodStub

Ctrl+K, Ctrl+N

Edit NextBookmark

Ctrl+K, Ctrl+P

Edit PreviousBookmark

Ctrl+K, Ctrl+R

View ObjectBrowserGoToSearchCombo

Ctrl+K, Ctrl+S

Edit SurroundWith

Ctrl+K, Ctrl+V

View ClassViewGoToSearchCombo

Ctrl+K, Ctrl+W

View BookmarkWindow

Ctrl+K, Ctrl+X

Edit InsertSnippet

Ctrl+Shift+K, Ctrl+Shift+N

Edit NextBookmarkInFolder

Ctrl+Shift+K, Ctrl+Shift+P

Edit PreviousBookmarkInFolder

Ctrl+Alt+L

View SolutionExplorer

Alt+Left Arrow

View Backward

Left Arrow

Edit MoveControlLeftGrid

Shift+Left Arrow

Edit SizeControlLeftGrid

Ctrl+Alt+M, 1

Debug Memory1

Ctrl+Alt+M, 2

Debug Memory2

Ctrl+Alt+M, 3

Debug Memory3

Ctrl+Alt+M, 4

Debug Memory4

Ctrl+Alt+N

Debug ScriptExplorer

Ctrl+N

File NewFile

Ctrl+Shift+N

File NewProject

Alt+Num *

Debug ShowNextStatement

Ctrl+Alt+O

View Output

Ctrl+O

File OpenFile

Ctrl+Shift+O

File OpenProject

Ctrl+Alt+P

Tools AttachtoProcess

Ctrl+P

File Print

Ctrl+Shift+P

Tools RunTemporaryMacro

Ctrl+PgDn

Window NextTab

Ctrl+Q

Data RunSelection

Ctrl+Alt+R

View WebBrowser

Ctrl+R, Ctrl+E

Refactor EncapsulateField

Ctrl+R, Ctrl+I

Refactor ExtractInterface

Ctrl+R, Ctrl+M

Refactor ExtractMethod

Ctrl+R, Ctrl+O

Refactor ReorderParameters

Ctrl+R, Ctrl+P

Refactor PromoteLocalVariable

Ctrl+R, Ctrl+R

Refactor Rename

Ctrl+R, Ctrl+V

Refactor RemoveParameters

Ctrl+Shift+R

Tools RecordTemporaryMacro

Alt+Right Arrow

View Forward

Right Arrow

Edit MoveControlRightGrid

Shift+Right Arrow

Edit SizeControlRightGrid

Ctrl+Alt+S

View ServerExplorer

Ctrl+S

File SaveSelectedItems

Ctrl+Shift+S

File SaveAll

Ctrl+Alt+T

View DocumentOutline

Ctrl+Shift+Tab

Window PreviousDocumentWindowNav

Ctrl+Tab

Window NextDocumentWindowNav

Shift+Tab

Edit SelectPreviousControl

Tab

Edit SelectNextControl

Ctrl+Alt+U

Debug Modules

Shift+Up Arrow

Edit SizeControlUpGrid

Up Arrow

Edit MoveControlUpGrid

Ctrl+Alt+V, A

Debug Autos

Ctrl+Alt+V, L

Debug Locals

Ctrl+Alt+W, 1

Debug Watch

Ctrl+Alt+W, 2

Debug Watch2

Ctrl+Alt+W, 3

Debug Watch3

Ctrl+Alt+W, 4

Debug Watch4

Ctrl+Shift+W

File ViewinBrowser

Ctrl+Alt+X

View Toolbox

Ctrl+Shift+X

Test StartSelectedTestProjectwithoutDebugger

Shift+Alt+X

Test StartSelectedTestProjectwithDebugger

Ctrl+Alt+Z

Debug Processes

Ctrl+Shift+Z

Edit Redo

HTML Editor Design View

Ctrl+B

Format Bold

Ctrl+Alt+Down Arrow

Layout InsertRowBelow

Shift+F7

View ViewMarkup

Ctrl+I

Format Italic

Ctrl+L

Format ConverttoHyperlink

Ctrl+Shift+L

Format InsertBookmark

Ctrl+Alt+Left Arrow

Layout InsertColumntotheLeft

Ctrl+M, Ctrl+C

Project AddContentPage

Ctrl+M, Ctrl+M

View EditMaster

Ctrl+Alt+Q

View NonVisualControls

Ctrl+Q

View VisibleBorders

Ctrl+Shift+Q

View Details

Ctrl+Alt+Right Arrow

Layout InsertColumntotheRight

Ctrl+U

Format Underline

Ctrl+Alt+Up Arrow

Layout InsertRowAbove

HTML Editor Source View

Ctrl+Shift+.

View AutoCloseTagOverride

Shift+F7

View ViewDesigner

Ctrl+PgDn

View NextView

Ctrl+PgUp

Window PreviousTab

Managed Resources Editor

Ctrl+1

Resources Strings

Ctrl+2

Resources Images

Ctrl+3

Resources Icons

Ctrl+4

Resources Audio

Ctrl+5

Resources Files

Ctrl+6

Resources Other

Del

Edit Remove

Report Designer

Ctrl+Alt+D

View Datasets

Ctrl+Down Arrow

Edit MoveControlDown

Ctrl+Shift+Down Arrow

Edit SizeControlDown

Down Arrow

Edit LineDown

Shift+Down Arrow

Edit LineDownExtend

Enter

Edit BreakLine

Ctrl+Left Arrow

Edit MoveControlLeft

Ctrl+Shift+Left Arrow

Edit SizeControlLeft

Left Arrow

Edit CharLeft

Shift+Left Arrow

Edit CharLeftExtend

Ctrl+Right Arrow

Edit MoveControlRight

Ctrl+Shift+Right Arrow

Edit SizeControlRight

Right Arrow

Edit CharRight

Shift+Right Arrow

Edit CharRightExtend

Shift+Tab

Edit TabLeft

Tab

Edit InsertTab

Ctrl+Shift+Up Arrow

Edit SizeControlUp

Ctrl+Up Arrow

Edit MoveControlUp

Shift+Up Arrow

Edit LineUpExtend

Up Arrow

Edit LineUp

Settings Designer

Ctrl+Del

Edit RemoveRow

Esc

Edit SelectionCancel

F2

Edit EditCell

Text Editor

Alt+,

Edit DecreaseFilterLevel

Alt+.

Edit IncreaseFilterLevel

Ctrl+]

Edit GotoBrace

Ctrl+Shift+]

Edit GotoBraceExtend

Ctrl+=

Edit SelectToLastGoBack

Bkspce

Edit DeleteBackwards

Ctrl+Bkspce

Edit WordDeleteToStart

Ctrl+Shift+Alt+C

Edit CopyParameterTip

Ctrl+Del

Edit WordDeleteToEnd

Ctrl+Down Arrow

Edit ScrollLineDown

Shift+Alt+Down Arrow

Edit LineDownExtendColumn

Ctrl+E, Ctrl+W

Edit ToggleWordWrap

End

Edit LineEnd

Shift+Alt+End

Edit LineEndExtendColumn

Shift+End

Edit LineEndExtend

Ctrl+Enter

Edit LineOpenAbove

Ctrl+Shift+Enter

Edit LineOpenBelow

Home

Edit LineStart

Shift+Alt+Home

Edit LineStartExtendColumn

Shift+Home

Edit LineStartExtend

Ctrl+I

Edit IncrementalSearch

Ctrl+Shift+I

Edit ReverseIncrementalSearch

Ins

Edit OvertypeMode

Ctrl+J

Edit ListMembers

Ctrl+K, Ctrl+\

Edit DeleteHorizontalWhiteSpace

Ctrl+K, Ctrl+A

Edit SwapAnchor

Ctrl+K, Ctrl+C

Edit CommentSelection

Ctrl+K, Ctrl+D

Edit FormatDocument

Ctrl+K, Ctrl+F

Edit FormatSelection

Ctrl+K, Ctrl+H

Edit ToggleTaskListShortcut

Ctrl+K, Ctrl+I

Edit QuickInfo

Ctrl+K, Ctrl+K

Edit ToggleBookmark

Ctrl+K, Ctrl+L

Edit ClearBookmarks

Ctrl+K, Ctrl+U

Edit UncommentSelection

Ctrl+L

Edit LineCut

Ctrl+Shift+L

Edit LineDelete

Ctrl+Left Arrow

Edit WordPrevious

Ctrl+Shift+Alt+Left Arrow

Edit WordPreviousExtendColumn

Ctrl+Shift+Left Arrow

Edit WordPreviousExtend

Shift+Alt+Left Arrow

Edit CharLeftExtendColumn

Ctrl+M, Ctrl+H

Edit HideSelection

Ctrl+M, Ctrl+L

Edit ToggleAllOutlining

Ctrl+M, Ctrl+M

Edit ToggleOutliningExpansion

Ctrl+M, Ctrl+O

Edit CollapsetoDefinitions

Ctrl+M, Ctrl+P

Edit StopOutlining

Ctrl+M, Ctrl+T

Edit CollapseTag

Ctrl+M, Ctrl+U

Edit StopHidingCurrent

Ctrl+Shift+Alt+P

Edit PasteParameterTip

Ctrl+PgDn

Edit ViewBottom

Ctrl+Shift+PgDn

Edit ViewBottomExtend

PgDn

Edit PageDown

Shift+PgDn

Edit PageDownExtend

Ctrl+PgUp

Edit ViewTop

Ctrl+Shift+PgUp

Edit ViewTopExtend

PgUp

Edit PageUp

Shift+PgUp

Edit PageUpExtend

Ctrl+R, Ctrl+W

Edit ViewWhiteSpace

Ctrl+Right Arrow

Edit WordNext

Ctrl+Shift+Alt+Right Arrow

Edit WordNextExtendColumn

Ctrl+Shift+Right Arrow

Edit WordNextExtend

Shift+Alt+Right Arrow

Edit CharRightExtendColumn

Ctrl+Shift+Space

Edit ParameterInfo

Ctrl+Space

Edit CompleteWord

Ctrl+Shift+T

Edit WordTranspose

Ctrl+T

Edit CharTranspose

Shift+Alt+T

Edit LineTranspose

Ctrl+Shift+U

Edit MakeUppercase

Ctrl+U

Edit MakeLowercase

Ctrl+Up Arrow

Edit ScrollLineUp

Shift+Alt+Up Arrow

Edit LineUpExtendColumn

Ctrl+W

Edit SelectCurrentWord

VC Accelerator Editor

Ins

Edit NewAccelerator

Ctrl+W

Edit NextKeyTyped

VC Dialog Editor

Ctrl+B

Format ButtonBottom

Ctrl+D

Format TabOrder

Ctrl+Shift+Down Arrow

Format AlignBottoms

Shift+F7

Format SizetoContent

Ctrl+F9

Format CenterVertical

Ctrl+Shift+F9

Format CenterHorizontal

F9

Format AlignMiddles

Shift+F9

Format AlignCenters

Ctrl+G

Format ToggleGuides

Ctrl+Left Arrow

Edit ScrollColumnLeft

Ctrl+Shift+Left Arrow

Format AlignLefts

Ctrl+M

Format CheckMnemonics

Ctrl+R

Format ButtonRight

Alt+Right Arrow

Format SpaceAcross

Ctrl+Right Arrow

Edit ScrollColumnRight

Ctrl+Shift+Right Arrow

Format AlignRights

Ctrl+T

Format TestDialog

Alt+Up Arrow

Format SpaceDown

Ctrl+Shift+Up Arrow

Format AlignTops

VC Image Editor

Ctrl+-

Image SmallerBrush

Ctrl+Shift+,

Image ZoomOut

Ctrl+.

Image SmallBrush

Ctrl+Shift+.

Image ZoomIn

Ctrl+[

Image PreviousColor

Ctrl+Shift+[

Image PreviousRightColor

Ctrl+]

Image NextColor

Ctrl+Shift+]

Image NextRightColor

Ctrl+=

Image LargerBrush

Ctrl+A

Image AirbrushTool

Ctrl+B

Image BrushTool

Ctrl+F

Image FillTool

Ctrl+H

Image FlipHorizontal

Ctrl+Shift+H

Image Rotate90Degrees

Shift+Alt+H

Image FlipVertical

Ctrl+I

Image PencilTool

Ctrl+Shift+I

Image EraseTool

Ins

Image NewImageType

Ctrl+J

Image DrawOpaque

Ctrl+L

Image LineTool

Ctrl+M

Image MagnificationTool

Ctrl+Shift+M

Image Magnify

Alt+P

Image EllipseTool

Ctrl+Shift+Alt+P

Image FilledEllipseTool

Shift+Alt+P

Image OutlinedEllipseTool

Alt+R

Image RectangleTool

Ctrl+Shift+Alt+R

Image FilledRectangleTool

Shift+Alt+R

Image OutlinedRectangleTool

Ctrl+Alt+S

Image ShowGrid

Ctrl+Shift+Alt+S

Image ShowTileGrid

Shift+Alt+S

Image RectangleSelectionTool

Ctrl+T

Image TextTool

Ctrl+Shift+U

Image CopyandOutlineSelection

Ctrl+U

Image UseSelectionasBrush

Alt+W

Image RoundedRectangleTool

Ctrl+Shift+Alt+W

Image FilledRoundedRectangleTool

Shift+Alt+W

Image OutlinedRoundedRectangleTool

VC String Editor

Ins

Edit NewString

View Designer

Ctrl+1

QueryDesigner Diagram

Ctrl+2

QueryDesigner Criteria

Ctrl+3

QueryDesigner SQL

Ctrl+4

QueryDesigner Results

Ctrl+G

QueryDesigner GotoRow

Ctrl+Shift+J

QueryDesigner JoinMode

Ctrl+R

QueryDesigner ExecuteSQL

Ctrl+T

QueryDesigner CancelRetrievingData

WebBrowser

Alt+Down Arrow

Help Nexttopic

Alt+Up Arrow

Help Previoustopic

Windows Forms Designer

End

Edit DocumentEnd

Shift+End

Edit DocumentEndExtend

Home

Edit DocumentStart

Shift+Home

Edit DocumentStartExtend

XML Editor Schema View

Ctrl+-

Schema Collapse

Ctrl+=

Schema Expand

L’oracolo risponde:

Rischio è anche opportunità..
intrattieni nuove relazioni sociali
e le possibilità di successo aumenteranno..
le congiunzioni astrali sono a te favorevoli
Venere è nel tuo segno
anche se Giove fa un pò di opposizione
il periodo è stupendo
e da domani potrai leggere solo previoni positive
lasciati suggestionare dalla positività
sappiamo bene che è stato un periodo difficile
ma viviti il momento bello che il destino ha messo sulla tus strada
però, attenzione: ragiona prima di una decisione importante
poi ripensaci
e infine attendi…
si attendi, prenditi un momento di pausa
ti devi ricaricare!
è indispensabile per fare ordine nella tua vita..
ma ricorda
una falsa partenza partenza contempla una seconda possibilità..