Search results for query: *

  1. J

    PropertyGrid: Objects with subproperties

    Hmmm, does this mean I have to write a different tv_3dvector class for every property clsframe has that is of tv_3dvector? The location/position is not the only property of that type. I've tried writing the new tv_3dvector class in a general way and it ignores all changes. The only way i was...
  2. J

    PropertyGrid: Objects with subproperties

    Ok, tried the code. It atleast now shows somthing relevent for Location, but I still cannot expand it or edit it. If I try to type it in directly, it ignores the change. Note clsFrame does not have a contructor that accepts a TV_3DVECTOR, so I had to use what was given. I was told there was a...
  3. J

    PropertyGrid: Objects with subproperties

    Hmmmm, well this didn't seem to help :( I now have the following code: '//////////////////////////////////// Vector Class //////////////////////////////////////// <TypeConverter(GetType(ExpandableObjectConverter))> _ Public Class clsPropsVec3 Private _x As Single...
  4. J

    PropertyGrid: Objects with subproperties

    Ah, I'll try that. And maybe this way I don't have to use delegates, which is what I recently tried and acually got to work, but worried about memory consumption.
  5. J

    PropertyGrid: Objects with subproperties

    Well, I suppose I will have to clarify a bit. The TV_3DVECTOR I did not write. I do not have control of TV_3DVECTOR. I do not have access to the code in TV_3DVECTOR. I think that problebly TV_3DVECTOR is not designed to be displayed on a property grid, because when I try to display it, all it...
  6. J

    PropertyGrid: Objects with subproperties

    I am having a problem with objects that have other objects as properties on a property grid. Now when I display ths object clsPropsFrame on the property grid, everything shows up as expected, except when I try to edit the x,y,or z of location which is of type clsPropsVec3, it ignores the change...
  7. J

    Replace function for System.Array

    Hello. as you may know the Strings class has a Replace function which is designed to replace all of a charactor/string that exists in a string you specify. What I want is a similar function that for example takes an array of integers, searches the array for an integer value I specify, and...
  8. J

    Animating graphics?

    TrueVision3D is a very good DirectX Wrapper.....The lastest version (6.5, in closed beta) has things that require shader support, though
  9. J

    Calling Conv3ds from within Program

    Nope. Resulted in the same thing. Wierd huh. Actually, sence it didn't seem to fix the problem, I was exepcting it not to work at all. But it worked as long as there was no spaces in the path. Keep in mind also, this worked when I was using Beta edition (I think). Yet it seems to work when I...
  10. J

    Calling Conv3ds from within Program

    Humm, interesting. The original code, and the code after that, as a matter of fact, all of the code works if the path does not have any spaces in it. But if there is a space in the path, none of the code seems to work at all :confused: . Humm, oh well... I guess I'll have to put up a warning, if...
  11. J

    Calling Conv3ds from within Program

    The Process Class???? Huh, I thought this would come up!!! Hmmm. Intersting. I got this same suggestion when I posted this problem over in the TV3D off-topic fourm. Well, here is the code I used to do this: Public Function Conv3dsToX(ByVal File3ds As String) As String Dim n As Integer...
  12. J

    Calling Conv3ds from within Program

    OK, I am using Microsoft Visual Basic 2005 Edition, and I am trying to call conv3ds from within a program. Here's the code: CommandStr = " -o " & RetFile & " " & File3ds RunApp = Application.StartupPath + "\Conv3ds.exe" Shell(RunApp & CommandStr, AppWinStyle.NormalFocus, True) But...
Back
Top