|
| Author |
Message |
Jonathan Rothwell
Joined: 04 Oct 2007 Posts: 7
|
Posted: Wed Jan 25, 2006 11:05 pm Post subject: Graphics mode forms |
|
|
Hello, could anyone please tell me how to use forms in graphical mode in
VBDOS like in versions 2 and 3 of MS Works for Dos? i.e. when the cursor
appears as an arrow, not a block, etc.
Many thanks.
Archived from group: microsoft>public>vb>dos |
|
| Back to top |
|
 |
Ethan Winer
Joined: 04 Oct 2007 Posts: 30
|
Posted: Thu Jan 26, 2006 4:01 pm Post subject: Re: Graphics mode forms |
|
|
Jonathan,
> could anyone please tell me how to use forms in graphical mode in VBDOS <
I'm pretty sure VB/DOS forms are text only. My company used to sell an
add-on library to create graphical forms like VB/Windows (I still have a few
copies left). But other than that, or writing all your own low-level
graphics primitives, VB/DOS is text mode only. You might be able to program
a custom font character to simulate an arrow cursor, and flash that on and
off using manually.
--Ethan |
|
| Back to top |
|
 |
Jonathan Rothwell
Joined: 04 Oct 2007 Posts: 7
|
Posted: Thu Jan 26, 2006 10:05 pm Post subject: Re: Graphics mode forms |
|
|
Shame. Thanks for your help anyway, though.
"Ethan Winer" wrote in message @TK2MSFTNGP12.phx.gbl...
> Jonathan,
>
>> could anyone please tell me how to use forms in graphical mode in VBDOS <
>
> I'm pretty sure VB/DOS forms are text only. My company used to sell an
> add-on library to create graphical forms like VB/Windows (I still have a
> few
> copies left). But other than that, or writing all your own low-level
> graphics primitives, VB/DOS is text mode only. You might be able to
> program
> a custom font character to simulate an arrow cursor, and flash that on and
> off using manually.
>
> --Ethan
>
> |
|
| Back to top |
|
 |
Jonathan Rothwell
Joined: 04 Oct 2007 Posts: 7
|
Posted: Thu Jan 26, 2006 10:22 pm Post subject: Re: Graphics mode forms |
|
|
Hang on, what did you say about these libraries?
"Ethan Winer" wrote in message @TK2MSFTNGP12.phx.gbl...
> Jonathan,
>
>> could anyone please tell me how to use forms in graphical mode in VBDOS <
>
> I'm pretty sure VB/DOS forms are text only. My company used to sell an
> add-on library to create graphical forms like VB/Windows (I still have a
> few
> copies left). But other than that, or writing all your own low-level
> graphics primitives, VB/DOS is text mode only. You might be able to
> program
> a custom font character to simulate an arrow cursor, and flash that on and
> off using manually.
>
> --Ethan
>
> |
|
| Back to top |
|
 |
omalogic
Joined: 04 Oct 2007 Posts: 1
|
Posted: Thu Jan 26, 2006 3:27 pm Post subject: Re: Graphics mode forms |
|
|
I think vbdos has an option on each form/object normaly for changing
the pointer from that squire on to arrows etc...
MyForm.MousePointer = 0
to
MyForm.MousePointer = 16
Regards,
BIAF |
|
| Back to top |
|
 |
H-Man
Joined: 04 Oct 2007 Posts: 23
|
Posted: Thu Jan 26, 2006 5:03 pm Post subject: Re: Graphics mode forms |
|
|
On Thu, 26 Jan 2006 11:01:00 -0500, Ethan Winer wrote:
> Jonathan,
>
>> could anyone please tell me how to use forms in graphical mode in VBDOS <
>
> I'm pretty sure VB/DOS forms are text only. My company used to sell an
> add-on library to create graphical forms like VB/Windows (I still have a few
> copies left). But other than that, or writing all your own low-level
> graphics primitives, VB/DOS is text mode only. You might be able to program
> a custom font character to simulate an arrow cursor, and flash that on and
> off using manually.
>
> --Ethan
You'd be correct Ethan. Using CALL INTERRUPT &H33 you can change the mouse
cursor to whatever you want, but I think you end up having to run in some
graphics mode. I did this stuff a long time ago in QB but never had the
need to in VB-DOS.
--
HK |
|
| Back to top |
|
 |
Dan Barclay
Joined: 04 Oct 2007 Posts: 328
|
Posted: Thu Jan 26, 2006 6:55 pm Post subject: Re: Graphics mode forms |
|
|
Jonathan,
VBDOS *forms* are text only. You can switch to graphics mode as you could
with any previous DOS Basic, but the forms engine won't work there.
The library Ethan is talking about is one his company sold during the DOS
hayday. Ethan owned Crescent Software, one of the premier software tools
vendors, and their products are excellent. Among their many tools is a
graphical forms engine. If you want graphic forms in DOS, you might want to
track it down.
Ethan sold Crescent when everybody went Windows, but somehow retained the
rights to the DOS tools. So far as I know, he still sells and supports
them! Check his web site www.EthanWiner.com and see what you can find
there. Look for "Full Moon Software" (was Crescent moon?) under
Programming.
Dan
"Jonathan Rothwell" wrote in message $Y6.6919@newsfe3-win.ntli.net...
> Hang on, what did you say about these libraries?
>
> "Ethan Winer" wrote in message
> @TK2MSFTNGP12.phx.gbl...
>> Jonathan,
>>
>>> could anyone please tell me how to use forms in graphical mode in VBDOS
>>> <
>>
>> I'm pretty sure VB/DOS forms are text only. My company used to sell an
>> add-on library to create graphical forms like VB/Windows (I still have a
>> few
>> copies left). But other than that, or writing all your own low-level
>> graphics primitives, VB/DOS is text mode only. You might be able to
>> program
>> a custom font character to simulate an arrow cursor, and flash that on
>> and
>> off using manually.
>>
>> --Ethan
>>
>>
>
> |
|
| Back to top |
|
 |
H-Man
Joined: 04 Oct 2007 Posts: 23
|
Posted: Thu Jan 26, 2006 7:12 pm Post subject: Re: Graphics mode forms |
|
|
On 26 Jan 2006 10:27:38 -0800, omalogic@gmail.com wrote:
> I think vbdos has an option on each form/object normaly for changing
> the pointer from that squire on to arrows etc...
>
>
> MyForm.MousePointer = 0
>
> to
>
> MyForm.MousePointer = 16
>
Options only go to 12 and none look like the traditional windows pointer.
--
HK |
|
| Back to top |
|
 |
Stephen Howe
Joined: 04 Oct 2007 Posts: 11
|
Posted: Fri Jan 27, 2006 4:59 am Post subject: Re: Graphics mode forms |
|
|
> Hello, could anyone please tell me how to use forms in graphical mode in
> VBDOS like in versions 2 and 3 of MS Works for Dos?
You can't. It is text mode only. To do so, you would have rewrite the VBDOS
libraries.
Stephen Howe
|
|
| Back to top |
|
 |
|