User contributions

From OpenEUO
For 46.127.27.108 (talk | block log | uploads | logs)
Jump to: navigation, search
Search for contributions
 
 
     
  

(newest | oldest) View (newer 100 | ) (20 | 50 | 100 | 250 | 500)

  • 00:37, 24 October 2010 (diff | hist) . . (+417). . N TWinControl.TabStop(Created page with " '''RW TabStop : b''' Determines if the user can tab to a control. Use the TabStop to allow or disallow access to the control using the Tab key. If TabStop is true, the contr...") (current)
  • 00:35, 24 October 2010 (diff | hist) . . (+589). . N TWinControl.TabOrder(Created page with " '''RW TabOrder : n''' Indicates the position of the control in its parent's tab order. TabOrder is the order in which child windows are visited when the user presses the Tab...") (current)
  • 00:34, 24 October 2010 (diff | hist) . . (+168). . N TWinControl.SetFocus(Created page with " '''ME SetFocus()''' Gives the input focus to the control. Use SetFocus to change input focus to the control. When a control has focus, it receives keyboard events.") (current)
  • 00:33, 24 October 2010 (diff | hist) . . (+512). . N TWinControl.OnExit(Created page with " '''EV OnExit''' Occurs when the input focus shifts away from one control to another. Use the OnExit event handler to provide special processing when the control ceases to be...") (current)
  • 00:32, 24 October 2010 (diff | hist) . . (+514). . N TWinControl.OnEnter(Created page with " '''EV OnEnter''' Occurs when a control receives the input focus. Use the OnEnter event handler to cause any special processing to occur when a control becomes active. The On...") (current)
  • 00:31, 24 October 2010 (diff | hist) . . (+103). . N TWinControl.Handle(Created page with " '''RO Handle : n''' Provides direct access to the underlying Windows screen object for the control.") (current)
  • 00:30, 24 October 2010 (diff | hist) . . (+259). . N TWinControl.Focused(Created page with " '''RO Focused : b''' Determines whether the control has input focus. Use Focused to see if the control is the active control. When Focused returns true, the control has the ...") (current)
  • 00:29, 24 October 2010 (diff | hist) . . (+404). . N TWinControl.CanFocus(Created page with " '''RO CanFocus : b''' Indicates whether a control can receive focus. Use CanFocus to find out if the control can receive input from the user. CanFocus returns true if both t...") (current)
  • 00:27, 24 October 2010 (diff | hist) . . (+575). . N TControl.ClientToScreen(Created page with " '''ME ClientToScreen(nX,nY)''' Translates a given point from client area coordinates to global screen coordinates. Use ClientToScreen to convert a point whose coordinates ar...") (current)
  • 00:26, 24 October 2010 (diff | hist) . . (+537). . N TControl.ScreenToClient(Created page with " '''ME ScreenToClient(nX,nY)''' Converts the screen coordinates of a specified point on the screen to client coordinates. Use ScreenToClient to convert a point in screen coor...") (current)
  • 00:18, 24 October 2010 (diff | hist) . . (+154). . N TControl.Width(Created page with " '''RW Width : n''' Specifies the horizontal size of the control or form in pixels. Use the Width property to read or change the width of the control.") (current)
  • 00:17, 24 October 2010 (diff | hist) . . (+344). . N TControl.Visible(Created page with " '''RW Visible : b''' Determines whether the component appears onscreen. Use the Visible property to control the visibility of the control. If Visible is true, the control ap...") (current)
  • 00:16, 24 October 2010 (diff | hist) . . (+593). . N TControl.Top(Created page with " '''RW Top : n''' Specifies the Y coordinate of the top left corner of a control, relative to its parent or containing control in pixels. Use Top to locate the top of the con...") (current)
  • 00:16, 24 October 2010 (diff | hist) . . (+309). . N TControl.ShowHint(Created page with " '''RW ShowHint : b''' Determines whether the control displays a Help Hint when the mouse pointer rests momentarily on the control. The Help Hint is the value of the Hint pro...") (current)
  • 00:15, 24 October 2010 (diff | hist) . . (+234). . N TControl.Show(Created page with " '''ME Show()''' Makes a control visible. Use the Show method to make visible a control that was previously hidden. The Show method sets the control’s Visible property to t...") (current)
  • 00:12, 24 October 2010 (diff | hist) . . (+911). . N TControl.SendToBack(Created page with " '''ME SendToBack()''' Puts a windowed control behind all other windowed controls, or puts a non-windowed control behind all other non-windowed controls. Use SendToBack to ch...") (current)
  • 00:11, 24 October 2010 (diff | hist) . . (+218). . N TControl.PopupMenu(Created page with " '''RW PopupMenu : TPopupMenu''' Identifies the pop-up menu associated with the control. Assign a value to PopupMenu to make a pop-up menu appear when the user selects the co...") (current)
  • 00:11, 24 October 2010 (diff | hist) . . (+653). . N TControl.Parent(Created page with " '''RW Parent : TWinControl''' Indicates the parent of the control. Use the Parent property to get or set the parent of this control. The parent of a control is the control t...") (current)
  • 00:09, 24 October 2010 (diff | hist) . . (+124). . N TControl.OnDblClick(Created page with " '''EV OnDblClick''' Occurs when the user double-clicks the left mouse button when the mouse pointer is over the control.") (current)
  • 00:09, 24 October 2010 (diff | hist) . . (+495). . N TControl.OnClick(Created page with " '''EV OnClick''' Occurs when the user clicks the control. Use the OnClick event handler to respond when the user clicks the control. Usually OnClick occurs when the user pre...") (current)
  • 00:08, 24 October 2010 (diff | hist) . . (+553). . N TControl.Left(Created page with " '''RW Left : n''' Specifies the X coordinate of the top left corner of a control, relative to its parent or containing control in pixels. Use the Left property to determine ...") (current)
  • 00:06, 24 October 2010 (diff | hist) . . (+133). . N TControl.Hint(Created page with " '''RW Hint : s''' Contains the text string that can appear when the user moves the mouse over the control and pauses momentarily.") (current)
  • 00:05, 24 October 2010 (diff | hist) . . (+232). . N TControl.Hide(Created page with " '''ME Hide()''' Makes the control invisible. Call Hide to hide a control. Hide sets the Visible property of the control to false. Although a control that is hidden is not vi...") (current)
  • 00:04, 24 October 2010 (diff | hist) . . (+147). . N TControl.Height(Created page with " '''RW Height : n''' Specifies the vertical size of the control in pixels. Use the Height property to read or change the height of the control.") (current)
  • 00:02, 24 October 2010 (diff | hist) . . (+187). . N TControl.Font(Created page with " '''RO Font : TFont''' Controls the attributes of text written on or in the control. To modify a font, change the value of the Color, Height, Name, Size, or Style of the TFon...") (current)
  • 00:00, 24 October 2010 (diff | hist) . . (+433). . N TControl.Enabled(Created page with " '''RW Enabled : b''' Controls whether the control responds to mouse, keyboard, and timer events. Use Enabled to change the availability of the control to the user. To disabl...") (current)
  • 23:58, 23 October 2010 (diff | hist) . . (+237). . N TControl.Cursor(Created page with " '''RW Cursor : n''' Specifies the image used to represent the mouse pointer when it passes into the region covered by the control. Change the value of Cursor to provide feed...") (current)
  • 23:55, 23 October 2010 (diff | hist) . . (+487). . N TControl.Constraints(Created page with " '''RO Constraints : TSizeConstraints''' Specifies the size constraints for the control. Use Constraints to specify the minimum and maximum width and height of the control. W...") (current)
  • 23:52, 23 October 2010 (diff | hist) . . (+135). . N TControl.Color(Created page with " '''RW Color : n''' Specifies the background color of the control. Use Color to read or change the background color of the control.")
  • 23:51, 23 October 2010 (diff | hist) . . (+6). . TControl.ClientWidth(current)
  • 23:51, 23 October 2010 (diff | hist) . . (+423). . N TControl.ClientWidth(Created page with " RW ClientWidth : n Specifies the horizontal size of the control's client area in pixels. Use ClientWidth to read or change the width of the control’s client area. For TCon...")
  • 23:50, 23 October 2010 (diff | hist) . . (+6). . TControl.ClientHeight(current)
  • 23:50, 23 October 2010 (diff | hist) . . (+431). . N TControl.ClientHeight(Created page with " RW ClientHeight : n Specifies the vertical size of the control's client area in pixels. Use ClientHeight to read or change the height of the control’s client area. For TCo...")
  • 23:49, 23 October 2010 (diff | hist) . . (+286). . N TControl.BringToFront(Created page with " '''ME BringToFront()''' Puts the control in front of all other controls in its parent control. Call BringToFront to ensure that a form is visible or to reorder overlapping c...") (current)
  • 23:43, 23 October 2010 (diff | hist) . . (+9). . TComponent.Name(current)
  • 23:42, 23 October 2010 (diff | hist) . . (+8). . TComponent.Tag(current)
  • 23:40, 23 October 2010 (diff | hist) . . (+10). . TControl.Align(current)
  • 23:38, 23 October 2010 (diff | hist) . . (+57). . TControl.Anchors(current)
  • 23:36, 23 October 2010 (diff | hist) . . (-45). . TControl.Anchors
  • 23:34, 23 October 2010 (diff | hist) . . (+6). . TObject.ClassName(current)
  • 23:12, 23 October 2010 (diff | hist) . . (+2). . TObject.ClassName
  • 22:59, 23 October 2010 (diff | hist) . . (+6). . TObject.ClassName
  • 22:54, 23 October 2010 (diff | hist) . . (+555). . N TControl.Anchors(Created page with "R/W Number - Specifies how the control is anchored to its parent. Use Anchors to ensure that a control maintains its current position relative to an edge of its parent, even if ...")
  • 22:52, 23 October 2010 (diff | hist) . . (-1). . TComponent.Tag
  • 22:51, 23 October 2010 (diff | hist) . . (+420). . N TControl.Align(Created page with "R/W Number - Determines how the control aligns within its container (parent control). Use Align to align a control to the top, bottom, left, or right of a form or panel and have...")
  • 22:37, 23 October 2010 (diff | hist) . . (+213). . N TComponent.Tag(Created page with "R/W Integer - Stores an integer value as part of a component. Tag has no predefined meaning. The Tag property is provided for the convenience of developers and can be used for s...")
  • 22:35, 23 October 2010 (diff | hist) . . (+49). . N TComponent.Name(Created page with "R/W String - Specifies the name of the component.")
  • 22:34, 23 October 2010 (diff | hist) . . (+73). . N TObject.ClassName(Created page with "R/O String - Returns a string indicating the type of the object instance.")
  • 22:12, 23 October 2010 (diff | hist) . . (0). . Main Page(current)
  • 14:20, 19 October 2010 (diff | hist) . . (+21). . UO.GetCont(current)
  • 11:45, 19 October 2010 (diff | hist) . . (+2). . UO.GetCont
  • 17:59, 12 October 2010 (diff | hist) . . (+1,504). . N TStatusBar(Created page with "The TStatusBar component is a row of panels, usually aligned at the bottom of a form, that display information about an application as it runs. Each panel is represented by a TSt...") (current)
  • 17:53, 12 October 2010 (diff | hist) . . (+209). . N TStatusPanel(Created page with "TStatusPanel represents a single panel of a status bar. * TStatusPanel.Alignment * TStatusPanel.Bevel * TStatusPanel.Text * TStatusPanel.Width Inherited from TO...") (current)
  • 17:47, 12 October 2010 (diff | hist) . . (+366). . N TMessageBox(Created page with "TMessageBox is a wrapper for WinAPI's MessageBox() function. It allows you to set title, icon and buttons once and then use these settings to display different messages. * [[TMe...") (current)
  • 17:38, 12 October 2010 (diff | hist) . . (+1,287). . N TToolButton(Created page with "Use TToolButton to implement buttons on a toolbar. While other controls (including TButton) can be placed on toolbars, TToolButton utilizes special toolbar features to simplify t...") (current)
  • 17:34, 12 October 2010 (diff | hist) . . (+2,073). . N TToolBar(Created page with "TToolBar is a container that manages tool buttons and other visual controls, arranging them in rows and automatically adjusting their sizes and positions. * All tool buttons on ...") (current)
  • 17:24, 12 October 2010 (diff | hist) . . (+385). . N TImageList(Created page with "Image lists are usually used (by other components such as TToolBar, TPopupMenu or TMainMenu) to efficiently manage large sets of same sized icons or bitmaps. * [[TImageList.Coun...") (current)
  • 04:46, 9 October 2010 (diff | hist) . . (-37). . Main Page(Welcome to the OpenEUO Wiki!)
  • 07:56, 7 October 2010 (diff | hist) . . (+9,449). . N Lua Introduction(Created page with "This tutorial will focus on the new language Lua and assumes that you already know how script writing and programming works in general. However, if you have never written anythi...")
  • 07:11, 7 October 2010 (diff | hist) . . (+23). . Tutorials
  • 17:42, 6 October 2010 (diff | hist) . . (0). . First Steps(Interfacing with Objects)
  • 17:25, 6 October 2010 (diff | hist) . . (-11). . First Steps
  • 17:24, 6 October 2010 (diff | hist) . . (+8). . First Steps
  • 17:20, 6 October 2010 (diff | hist) . . (-4). . File:OpenEUO Directory Structure.jpg(Blanked the page) (current)
  • 17:15, 6 October 2010 (diff | hist) . . (+4). . N File:OpenEUO Directory Structure.jpg(Created page with "test")
  • 17:14, 6 October 2010 (diff | hist) . . (+4). . First Steps(Installation)
  • 03:50, 6 October 2010 (diff | hist) . . (+1,945). . N TSynMemo(Created page with "TSynMemo is an advanced memo component that supports syntax highlighting, line coloring, column selection mode and much more. * TSynMemo.ActiveLineColor * [[TSynMemo.BorderS...") (current)
  • 03:42, 6 October 2010 (diff | hist) . . (+1,522). . N TTabControl(Created page with "Use TTabControl to add a control with multiple tab settings to a form. When the current tab changes, the tab control must directly update its contents to reflect the change in an...") (current)
  • 03:37, 6 October 2010 (diff | hist) . . (+654). . N TSaveDialog(Created page with "TSaveDialog displays a modal Windows dialog box for selecting file names and saving files. The dialog does not appear at runtime until it is activated by a call to the Execute me...") (current)
  • 03:35, 6 October 2010 (diff | hist) . . (+646). . N TOpenDialog(Created page with "TOpenDialog displays a modal Windows dialog box for selecting and opening files. The dialog does not appear at runtime until it is activated by a call to the Execute method. When...") (current)
  • 03:31, 6 October 2010 (diff | hist) . . (+459). . N TCanvas(Created page with "Use TCanvas as a drawing surface for objects that draw an image of themselves. Standard window controls such as edit controls or list boxes do not require a canvas, as they are d...") (current)
  • 03:24, 6 October 2010 (diff | hist) . . (+159). . N TPen(Created page with "TPen is used to draw lines or outline shapes on a canvas. * TPen.Color * TPen.Style * TPen.Width Inherited from TObject: * TObject.ClassName") (current)
  • 03:22, 6 October 2010 (diff | hist) . . (+155). . N TBrush(Created page with "TBrush represents the color and pattern used to fill solid shapes. * TBrush.Color * TBrush.Style Inherited from TObject: * TObject.ClassName") (current)
  • 03:20, 6 October 2010 (diff | hist) . . (+920). . N TPaintBox(Created page with "TPaintBox can add custom images to a form. Use the OnPaint event handler to draw the image directly on a canvas. * TPaintBox.Canvas * TPaintBox.OnPaint Inherited from T...") (current)
  • 03:11, 6 October 2010 (diff | hist) . . (-239). . TBevel(current)
  • 03:11, 6 October 2010 (diff | hist) . . (+1,699). . N TSplitter(Created page with "Add a splitter to a form between two aligned controls to allow users to resize the controls at runtime. The splitter sits between a control aligned to one edge of the form and th...") (current)
  • 03:07, 6 October 2010 (diff | hist) . . (+1,131). . N TBevel(Created page with "Use TBevel to create beveled boxes, frames, or lines. The bevel can appear raised or lowered. * TBevel.Shape * TBevel.Style Inherited from TWinControl: * [[TWinControl...")
  • 19:24, 5 October 2010 (diff | hist) . . (+1,728). . N First Steps(Created page with "== Installation == * Get the latest OpenEUO from the [http://www.easyuo.com/downloads.php#oeuo download section]. * Note the new directory structure: http://www.easyuo.com/che...")
  • 19:06, 5 October 2010 (diff | hist) . . (-8). . Tutorials
  • 17:22, 5 October 2010 (diff | hist) . . (+1,509). . N TScrollBar(Created page with "Use TScrollBar to add a free-standing scroll bar to a form. Many controls have properties that add scroll bars which are an integral part of the control. TScrollBar allows contro...") (current)
  • 17:18, 5 October 2010 (diff | hist) . . (+412). . N TPopupMenu(Created page with "Use TPopupMenu to define the pop-up menu that appears when the user clicks on a control with the right mouse button. To make a pop-up menu available, assign the TPopupMenu object...") (current)
  • 17:15, 5 October 2010 (diff | hist) . . (+250). . N TMainMenu(Created page with "TMainMenu encapsulates a menu bar and its accompanying drop-down menus for a form. * TMainMenu.Images * TMainMenu.Items Inherited from TComponent: * [[TComponent.Name]...") (current)
  • 17:12, 5 October 2010 (diff | hist) . . (+787). . N TMenuItem(Created page with "Use TMenuItem to specify the appearance and behavior of an item in a menu. Each TMainMenu or TPopupMenu component can contain multiple menu items. * TMenuItem.Add * [[TMenuI...") (current)
  • 17:08, 5 October 2010 (diff | hist) . . (+1,755). . N TComboBox(Created page with "A TComboBox component is an edit box with a scrollable drop-down list attached to it. Users can select an item from the list or type directly into the edit box. * [[TComboBox.Au...")
  • 17:04, 5 October 2010 (diff | hist) . . (+1,679). . N TListBox(Created page with "Use TListBox to display a scrollable list of items that users can select, add, or delete. TListBox is a wrapper for the Windows listbox control. * TListBox.AutoComplete * [[...") (current)
  • 16:59, 5 October 2010 (diff | hist) . . (+1,525). . N TRadioButton(Created page with "Use TRadioButton to add a radio button to a form. Radio buttons present a set of mutually exclusive options to the user - that is, only one radio button in a set can be selected ...") (current)
  • 16:48, 5 October 2010 (diff | hist) . . (+1,215). . N TCheckBox(Created page with "A TCheckBox component presents an option for the user. The user can check the box to select the option, or uncheck it to deselect the option. * TCheckBox.Alignment * [[TChec...") (current)
  • 16:33, 5 October 2010 (diff | hist) . . (+1,130). . N TGroupBox(Created page with "The TGroupBox component represents a standard Windows group box, used to group related controls on a form. * TGroupBox.Caption Inherited from TWinControl: * [[TWinControl....") (current)
  • 16:28, 5 October 2010 (diff | hist) . . (+1,627). . N TPanel(Created page with "Use TPanel to put an empty panel on a form. Panels have properties for providing a beveled border around the control. You can also use panels to group controls together, similar ...") (current)
  • 16:11, 5 October 2010 (diff | hist) . . (+446). . N TStrings(Created page with "TStrings is the base class for objects that represent a list of strings. Descendants of TStrings can represent several individual strings, such as the individual lines that appea...") (current)
  • 16:03, 5 October 2010 (diff | hist) . . (+418). . N TSizeConstraints(Created page with "TSizeConstraints is used in the Constraints property of TControl and its descendants. It specifies the minimum and maximum sizes of a control, preventing the control from being r...") (current)
  • 16:00, 5 October 2010 (diff | hist) . . (+334). . N TFont(Created page with "TFont describes font characteristics used when displaying text. TFont defines a set of characters by specifying the height, font family (typeface), attributes (such as bold or it...") (current)
  • 15:53, 5 October 2010 (diff | hist) . . (+414). . N TTimer(Created page with "TTimer allows the user to generate recurring time-based events. Use one timer component for each timer in the application. The execution of the timer occurs through its OnTimer e...") (current)
  • 15:38, 5 October 2010 (diff | hist) . . (+1,379). . N TLabel(Created page with "Use TLabel to add text that the user can’t edit to a form. This text can be used to label another control, and can set focus to that control when the user types an accelerator ...") (current)
  • 15:32, 5 October 2010 (diff | hist) . . (+1,542). . N TForm(Created page with "TForm represents a standard application window (form) or dialog box. A form can contain many other objects. * TForm.ActiveControl * TForm.AlphaBlend * [[TForm.AlphaBlend...") (current)
  • 15:22, 5 October 2010 (diff | hist) . . (+1,167). . N TButton(Created page with "Use TButton to put a standard push button on a form. Users choose button controls to initiate actions. * TButton.Caption * TButton.Click * TButton.WordWrap Inherite...") (current)
  • 15:15, 5 October 2010 (diff | hist) . . (+2,036). . N TMemo(Created page with "Use TMemo to put a standard Windows multiline edit control on a form. Multiline edit boxes allow the user to enter more than one line of text. They are appropriate for representi...") (current)
  • 15:10, 5 October 2010 (diff | hist) . . (+2,091). . N TEdit(Created page with "Use a TEdit object to put a standard Windows edit control on a form. Edit controls are used to retrieve text that users type. Edit controls can also display text to the user. W...") (current)
  • 14:59, 5 October 2010 (diff | hist) . . (+1,712). . N TCustomEdit(Created page with "TCustomEdit is the base class from which all edit-box and memo controls are derived. * TCustomEdit.BevelEdges * TCustomEdit.BevelInner * TCustomEdit.BevelKind * [[TC...") (current)
  • 14:48, 5 October 2010 (diff | hist) . . (+1,187). . N TWinControl(Created page with "TWinControl objects can receive user input focus, handle keyboard input events and serve as a container for other controls, referred to as child controls. This relationship is si...") (current)

(newest | oldest) View (newer 100 | ) (20 | 50 | 100 | 250 | 500)