home *** CD-ROM | disk | FTP | other *** search
Wrap
VERSION 2.00 Begin Form frmFSR Caption = "FSR Information" ClientHeight = 4410 ClientLeft = 1095 ClientTop = 1485 ClientWidth = 7365 ForeColor = &H00C0C0C0& Height = 4815 Left = 1035 LinkTopic = "Form1" MaxButton = 0 'False MinButton = 0 'False ScaleHeight = 4410 ScaleWidth = 7365 Top = 1140 Width = 7485 Begin SSPanel pnlGDI BevelInner = 1 'Inset FloodType = 1 'Left To Right Font3D = 3 'Inset w/light shading FontBold = 0 'False FontItalic = 0 'False FontName = "MS Sans Serif" FontSize = 8.25 FontStrikethru = 0 'False FontUnderline = 0 'False ForeColor = &H00FFFFFF& Height = 495 Left = 690 TabIndex = 2 Top = 2160 Width = 6060 End Begin SSPanel pnlSystem BevelInner = 1 'Inset FloodType = 1 'Left To Right Font3D = 3 'Inset w/light shading FontBold = 0 'False FontItalic = 0 'False FontName = "MS Sans Serif" FontSize = 8.25 FontStrikethru = 0 'False FontUnderline = 0 'False ForeColor = &H00FFFFFF& Height = 495 Left = 705 TabIndex = 1 Top = 1395 Width = 6060 End Begin SSPanel pnlUser BevelInner = 1 'Inset FloodType = 1 'Left To Right Font3D = 3 'Inset w/light shading FontBold = 0 'False FontItalic = 0 'False FontName = "MS Sans Serif" FontSize = 8.25 FontStrikethru = 0 'False FontUnderline = 0 'False ForeColor = &H00FFFFFF& Height = 465 Left = 705 TabIndex = 0 Top = 630 Width = 6060 End Begin Label lblGDI Caption = "Free Space for GDI Objects" FontBold = 0 'False FontItalic = 0 'False FontName = "MS Sans Serif" FontSize = 8.25 FontStrikethru = 0 'False FontUnderline = 0 'False Height = 195 Left = 2715 TabIndex = 6 Top = 2655 Width = 1965 End Begin Label lblText Caption = "By adding 3D panels to your project and setting the ""FloodColor, FloodShowPct and FloodType"" properties and using the API calls in the FSR.BAS module and the code in the ""Form_Load"" event, you can easily display relevant resource information." FontBold = 0 'False FontItalic = 0 'False FontName = "MS Sans Serif" FontSize = 8.25 FontStrikethru = 0 'False FontUnderline = 0 'False Height = 900 Left = 1305 TabIndex = 5 Top = 3225 Width = 4845 End Begin Label lblSYSTEM Caption = "Free SYSTEM Resources" FontBold = 0 'False FontItalic = 0 'False FontName = "MS Sans Serif" FontSize = 8.25 FontStrikethru = 0 'False FontUnderline = 0 'False Height = 195 Left = 2850 TabIndex = 4 Top = 1890 Width = 1830 End Begin Label lblUSER Caption = "Free Space for USER Objects" FontBold = 0 'False FontItalic = 0 'False FontName = "MS Sans Serif" FontSize = 8.25 FontStrikethru = 0 'False FontUnderline = 0 'False Height = 195 Left = 2670 TabIndex = 3 Top = 1095 Width = 2130 End Sub Form_Load () ' Flood graphs on About screen. pnlUser.FloodPercent = GetFreeSystemResources%(GFSR_USERRESOURCES) pnlSystem.FloodPercent = GetFreeSystemResources%(GFSR_SYSTEMRECOURCES) pnlGDI.FloodPercent = GetFreeSystemResources%(GFSR_GDIRESOURCES) End Sub