Changeset 192 for Include/basic/prompt.sbp
- Timestamp:
- Mar 28, 2007, 10:29:58 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/basic/prompt.sbp
r151 r192 494 494 495 495 'Create Prompt Window 496 _PromptSys_hWnd = CreateWindowEx(WS_EX_CLIENTEDGE, atom As ULONG_PTR As PCTSTR, "BASIC PROMPT",497 WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, 496 _PromptSys_hWnd = CreateWindowEx(WS_EX_CLIENTEDGE, atom As ULONG_PTR As LPCTSTR, "BASIC PROMPT", _ 497 WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, _ 498 498 0, 0, wcl.hInstance, 0) 499 499 ShowWindow(_PromptSys_hWnd, SW_SHOW) … … 540 540 For i = 0 To 100 541 541 With _PromptSys_TextLine[i] 542 .Text[0] = 0 '_System_FillChar(_PromptSys_TextLine[i].Text, -1 As Char, 0)542 .Text[0] = 0 '_System_FillChar(_PromptSys_TextLine[i].Text, -1 As StrChar, 0) 543 543 .Length = 0 544 544 End With … … 646 646 Dim i = _PromptSys_TextLine[y].Length 647 647 If i < x Then 648 _System_FillChar(VarPtr(_PromptSys_TextLine[y].Text[i]), x - i, &h20 ) 'Asc(" ")648 _System_FillChar(VarPtr(_PromptSys_TextLine[y].Text[i]), x - i, &h20 As StrChar) 'Asc(" ") 649 649 Dim i2 As Long 650 650 For i2 = i To ELM(x)
Note:
See TracChangeset
for help on using the changeset viewer.