Google Earth is free for personal use. No registration is required.
Elso probalkozasok:









Click event.Click event. Hence, if you have a Web Form with just one single-line text input (even if there are additional input fields, like CheckBoxLists, RadioButtonLists, DropDownLists, and so on), hitting enter in the text input will not cause the Button Web control's Click event to fire when using Internet Explorer - other browsers, such as FireFox, always send back the button's name/value pair, even if there is only one text input.PageSetup.PaperSize megvaltoztatasa automatikusan atallitja a PageSetup.Orientation-t wdOrientPortrait-ra (0), tehat ha valaki azt irja, hogy:
doc.Sections(1).PageSetup.Orientation = wdOrientLandscape
doc.Sections(1).PageSetup.PaperSize = wdPaperA4
doc.Sections(1).PageSetup.PaperSize = wdPaperA4
doc.Sections(1).PageSetup.Orientation = wdOrientLandscape
Sub ChangeOrientation()
Dim doc
Set doc = Documents.Add()
Call MsgBox(doc.Sections(1).PageSetup.Orientation)
doc.Sections(1).PageSetup.Orientation = wdOrientLandscape
Call MsgBox(doc.Sections(1).PageSetup.Orientation)
doc.Sections(1).PageSetup.PaperSize = wdPaperA4
Call MsgBox(doc.Sections(1).PageSetup.Orientation)
End Sub