Changeset 545
- Timestamp:
- Jul 13, 2008, 2:09:01 PM (16 years ago)
- Location:
- trunk/ab5.0/ablib
- Files:
-
- 1 added
- 1 deleted
- 2 edited
- 6 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/ablib/TestCase/SimpleTestCase/SimpleTestCase.ab
r468 r545 6 6 7 7 Function GetTempDirectory() As String 8 Return System.IO.Path.GetDirectoryName( System.Windows.Forms.Application.ExecutablePath ) + "\temp\"9 'Return System.IO.Path.GetTempPath()8 ' Return System.IO.Path.GetDirectoryName( System.Windows.Forms.Application.ExecutablePath ) + "\temp\" 9 Return System.IO.Path.GetTempPath() 10 10 End Function 11 11 … … 26 26 End Sub 27 27 28 Initialize()28 'Initialize() 29 29 30 30 Dim csbi As CONSOLE_SCREEN_BUFFER_INFO -
trunk/ab5.0/ablib/src/Classes/ActiveBasic/Windows/UI/Control.ab
r544 r545 1 1 'Classes/ActiveBasic/Windows/UI/Control.ab 2 2 3 #require <Classes/ActiveBasic/Windows/UI/ Forms/EventArgs.ab>3 #require <Classes/ActiveBasic/Windows/UI/EventArgs.ab> 4 4 5 5 Namespace ActiveBasic 6 6 Namespace Windows 7 7 Namespace UI 8 Namespace Forms9 8 10 9 'Namespace Detail … … 252 251 If Not IsNothing(a) Then 253 252 If Not IsNothing(messageMap) Then 254 Dim msg = Nothing As Object : msg = New System.UInt32(message)253 Dim msg = Hex$(message) 255 254 Dim m = messageMap.Item[msg] 256 255 If Not IsNothing(m) Then … … 439 438 End Class 440 439 441 End Namespace 'Forms442 440 End Namespace 'UI 443 441 End Namespace 'Widnows 444 442 End Namespace 'ActiveBasic 445 443 446 447 444 '---------- 448 445 'テスト実行用 449 446 450 Imports ActiveBasic.Windows.UI .Forms447 Imports ActiveBasic.Windows.UI 451 448 452 449 'OleInitialize() … … 456 453 Inherits Form 457 454 Public 458 Sub t()455 Sub MyForm() 459 456 Dim f = This 460 457 f.AddMessageEvent(WM_DESTROY, AddressOf (f.Destory)) … … 473 470 474 471 Dim f = New MyForm 475 f.t()476 472 f.Create() 477 473 ShowWindow(f.Handle, SW_SHOW) -
trunk/ab5.0/ablib/src/Classes/ActiveBasic/Windows/UI/EventArgs.ab
r544 r545 7 7 Namespace Windows 8 8 Namespace UI 9 Namespace Forms10 9 11 10 TypeDef EventArgs = System.EventArgs … … 511 510 Delegate Sub FormClosingEventHandler(sender As Object, e As FormClosingEventArgs) 512 511 513 End Namespace 'Forms514 512 End Namespace 'UI 515 513 End Namespace 'Widnows -
trunk/ab5.0/ablib/src/Classes/ActiveBasic/Windows/UI/MakeControlEventHandler.ab
r542 r545 78 78 79 79 MakeControlEvent("Control") 80 MakeControlEvent("Form") 80 81 End -
trunk/ab5.0/ablib/src/Classes/ActiveBasic/Windows/UI/WindowHandle.sbp
r544 r545 1 'Classes/ActiveBasic/Windows/ WindowHandle.sbp1 'Classes/ActiveBasic/Windows/UI/WindowHandle.sbp 2 2 3 3 #ifdef _WIN64 … … 49 49 Namespace ActiveBasic 50 50 Namespace Windows 51 Namespace UI 51 52 52 53 Class WindowHandle … … 797 798 End Class 798 799 800 End Namespace 'UI 799 801 End Namespace 'Widnows 800 802 End Namespace 'ActiveBasic -
trunk/ab5.0/ablib/src/Classes/index.ab
r473 r545 7 7 #require "./ActiveBasic/Strings/Strings.ab" 8 8 #require "./ActiveBasic/Windows/CriticalSection.ab" 9 #require "./ActiveBasic/Windows/WindowHandle.sbp"10 9 #require "./ActiveBasic/Windows/Windows.ab" 10 #require "./ActiveBasic/Windows/UI/WindowHandle.sbp" 11 11 #require "./ActiveBasic/Xml/Parser.ab" 12 12 #require "./System/Blittable.ab" … … 91 91 #require "./System/Threading/Timeout.ab" 92 92 #require "./System/Threading/WaitHandle.ab" 93 #require "./System/Windows/Forms/Application.ab"94 #require "./System/Windows/Forms/ContainerControl.ab"95 #require "./System/Windows/Forms/Control.ab"96 #require "./System/Windows/Forms/CreateParams.ab"97 #require "./System/Windows/Forms/Form.ab"98 #require "./System/Windows/Forms/Message.ab"99 #require "./System/Windows/Forms/MessageBox.ab"100 #require "./System/Windows/Forms/misc.ab"101 #require "./System/Windows/Forms/PaintEventArgs.ab"102 #require "./System/Windows/Forms/ScrollableControl.ab"103 #require "./System/Windows/Forms/WebBrowser.ab"104 #require "./System/Windows/Forms/WebBrowserBase.ab"105 93 #require "./System/Xml/XmlAttribute.ab" 106 94 #require "./System/Xml/XmlCharacterData.ab"
Note:
See TracChangeset
for help on using the changeset viewer.