.NET DirectX Question and Two possible bugs 
Author Message
 .NET DirectX Question and Two possible bugs

I was wondering if anyone has yet to look at the .NET
implementation of DirectX.  There are 2 samples in the .NET Beta 1 SDK for
VB.NET using DirectDraw7 classes using a .NET DirectDraw assembly named
DxVBLib, and so far so good, until I smashed up against an apparent bug.
The DrawText method on the DirectDraw7 class does not behave like it should.
I have found that you must offset the x and y
coordinates with the client rectangle area of the primary surface!   So, the
following code:

dixuprimarysurface.DrawText( 480, 0,"Test",false)

Has to be replaced with:

dx.GetWindowRect(pic.Handle, r1)
dixuprimarysurface.DrawText( r1.left + 480, r1.top,"Test",false)

Or else the text gets blitted to the VisualStudio.NET IDE!!!

Also, the nifty new function:

Quote:
>? directx.createcolorrgb(255,255,0)

-256

The value should be 65535! (yellow)   Can anyone help me with these bizarre
results?  I've got workarounds as you see from above, but the first problem
is really bad.

Thanks...

Bret Williams
Magenic Technologies
http://www.*-*-*.com/



Wed, 23 Jul 2003 06:21:28 GMT  
 
 [ 1 post ] 

 Relevant Pages 

1. two questions concerning vb 6.0 and directx 7

2. ActiveX OCXs and VB.NET - possible bug

3. Possible bug in VB.NET

4. two questions on how to get data entries in userforms into bookmarks (if possible at all)

5. .NET Framework and DirectX questions

6. Possible Bug, Possible Faulty code

7. two basic question (Visual Basic Net)

8. ASP.NET -> DataReader Code Bug Question

9. My Bug or VB.Net Bug ???

10. DirectX 3 and VB. Is it REALLY possible?

11. DirectX 3 and VB. Is it REALLY possible?

12. DirectX 8 / SDK bug?

 

 
Powered by phpBB® Forum Software