C# と VB.NET の質問掲示板

ASP.NET、C++/CLI、Java 何でもどうぞ

ログ内検索
  • キーワードを複数指定する場合は 半角スペース で区切ってください。
  • 検索条件は、(AND)=[A かつ B] (OR)=[A または B] となっています。
  • [返信]をクリックすると返信ページへ移動します。
キーワード/ 検索条件 /
検索範囲/ 強調表示/ ON (自動リンクOFF)
結果表示件数/ 記事No検索/ ON
大文字と小文字を区別する

No.54825 の関連記事表示

<< 0 >>
■54825  Re[3]: VB6からVC++6DLL呼出しについて
□投稿者/ shu -(2010/11/03(Wed) 22:10:31)
    No54821 (MUH さん) に返信
    >typedef struct Initial_Parameters { 
    >    double aCalc_Tolerance; 
    >    double aShape_Base_Length; 
    >    long aMaxDevideNumber; 
    >    short aDebugMode; 
    >} ST_Initial_Parameter
    こうなっているのなら
    
    >Public Type Initial_Parameters 
    >    aCalc_Tolerance As Double 
    >    aShape_Base_Length As Double 
    >    aMaxDevideNumber As Long 
    >    aDebugMode As Boolean 
    >End Type
    aDebugModeはintegerの方が良いと思います。
    
    
    
    > typedef struct Correction_Parameters {  
    >     double aCorrection_A;         
    >     double aCorrection_B;         
    >     int    aCorrection_Kind_Flag; 
    >     int    aPoint_no;             
    >     double aPts1[256];            
    >     double aPts2[256];            
    > } ST_Correction_Parameters;
    こうなっているのなら
    
    >Public Type Correction_Parameters 
    >    aCorrection_A As Double 
    >    aCorrection_B As Double 
    >    aCorrection_Kind_Flag As Long 
    >    aPoint_no As Long 
    >    aPts1(256) As Double 
    >    aPts2(256) As Double 
    >End Type
    これのaPts1,aPts2はaPts1(255) as Double, aPts2(255) as Double
    です。
    
    
    
記事No.54814 のレス /過去ログ92より / 関連記事表示
削除チェック/



<< 0 >>

パスワード/

- Child Tree -