Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
I

iman_kh

@iman_kh
About
Posts
34
Topics
31
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • problem with PasswordDeriveBytes on windows ce
    I iman_kh

    hi i want to use PasswordDeriveBytes class in compact frame 3.5 but this class is unknown ! its platform is windows Ce 5 i want to use CryptDeriveKey method to drive key for 3DES algorithm can you help me?

    .NET (Core and Framework) help algorithms question

  • can not focus on the form at run time
    I iman_kh

    hi i am developing a vs2008 smart device application. in this project there is a form array which contains form objects. index of this array (forms) will be selected by the operator at run time. when the operator selects one form , it is focused by the form.Focus() Method. but this method returns false and form can not focus ! why?

    Mobile database data-structures question

  • run , show and application in my project and handle its forms
    I iman_kh

    hi i want to run an dshow an application in my project and limit it to my MDI form ! can i do it? if yes how can i?

    Managed C++/CLI question

  • run , show and application in my project and handle its forms
    I iman_kh

    hi i want to run an dshow an application in my project and limit it to my MDI form ! can i do it? if yes how can i?

    C / C++ / MFC question

  • run , show and application in my project and handle its forms
    I iman_kh

    hi i want to run an dshow an application in my project and limit it to my MDI form ! can i do it? if yes how can i?

    C# question

  • create a property with class type (class name is : system::io::ports:serialport)
    I iman_kh

    hi, yes so thanks for your help,this was helpful:rose:

    Managed C++/CLI question

  • create a property with class type (class name is : system::io::ports:serialport)
    I iman_kh

    hi i want to create a property on my object and type of it is system::io::ports::serialport , but i can't ! how can i create this property ?

    Managed C++/CLI question

  • woking with marshal
    I iman_kh

    hi i have c++ code which i want to change it to the c# code,i must using pointers, can i change below code to the c# ? int *p1,*p2; int i=0; p1=&i; *p1=100; p2=p1;

    C# csharp c++ question

  • redefinition Enum member on IDL file
    I iman_kh

    hi to all , i have 2 enum on my IDL file : interface myInterFace { typedef enum RPTR_RETRACTBIN_STATUS { RPTR_RETRACTBIN_OK, RPTR_RETRACTBIN_FULL, RPTR_RETRACTBIN_HIGH, RPTR_RETRACTBIN_NOT_SUPPORTED, RPTR_RETRACTBIN_UNKNOWN }RPtrRetractBinStatus; ... HRESULT SyncRetract([out,retval] RPtrRetractBinStatus * status); } library myLIB { typedef enum RPTR_RETRACT_TRESHOLD { RPTR_THRESHOLD_RETRACTBIN_FULL, RPTR_RETRACTBIN_HIGH }RPtrRetractThreshold; ... dispinterface _IXFSReceiptPrinterEvents { properties : methods: HRESULT StackOK(RPtrRetractThreshold reason); }; ... } after compile i have this error ::>> redefinition : RPTR_RETRACTBIN_HIGH what is its solution ?(NOTE : i can not rename any enum members)

    ATL / WTL / STL question help

  • redefinition Enum member on IDL file [modified]
    I iman_kh

    hi to all , i have 2 enum on my IDL file : interface myInterFace { typedef enum RPTR_RETRACTBIN_STATUS { RPTR_RETRACTBIN_OK, RPTR_RETRACTBIN_FULL, RPTR_RETRACTBIN_HIGH, RPTR_RETRACTBIN_NOT_SUPPORTED, RPTR_RETRACTBIN_UNKNOWN }RPtrRetractBinStatus; ... HRESULT SyncRetract([out,retval] RPtrRetractBinStatus * status); } library myLIB { typedef enum RPTR_RETRACT_TRESHOLD { RPTR_THRESHOLD_RETRACTBIN_FULL, RPTR_RETRACTBIN_HIGH }RPtrRetractThreshold; ... dispinterface _IXFSReceiptPrinterEvents { properties : methods: HRESULT StackOK(RPtrRetractThreshold reason); }; ... } after compile i have this error ::>> redefinition : RPTR_RETRACTBIN_HIGH what is its solution ?(NOTE : i can not rename any enum members)

    modified on Thursday, July 10, 2008 1:35 PM

    COM question help

  • Define a enum type variable on the Interface (ATL project) ? [modified]
    I iman_kh

    hi, i want to define an enum type variable on the Interface , so i have defined an enum within interface and then take a property from this enum, but have encountered with a compile time error !? what is my mistake and what is its solution? interface IXFSReceipt : IDispatch { enum RPtrResolution { RPTR_RESOLUTION_LOW, RPTR_RESOLUTION_MEDIUM, RPTR_RESOLUTION_HIGH, RPTR_RESOLUTION_VERYHIGH }; HRESULT Resolution([out, retval] RPtrResolution* pVal);<<<<<<<< ERROR1 HRESULT Resolution([in] RPtrResolution newVal); }; ERROR1 : error MIDL2025 : syntax error : expecting a type specification

    modified on Friday, June 27, 2008 4:44 PM

    ATL / WTL / STL question c++ help

  • Define a enum type variable on the Interface (ATL project) ?
    I iman_kh

    hi, i want to define an enum type variable on the Interface , so i have defined an enum within interface and then take a property from this enum, but have encountered with a compile time error !? what is my mistake and what is its solution? interface IXFSReceipt : IDispatch { enum RPtrResolution { RPTR_RESOLUTION_LOW, RPTR_RESOLUTION_MEDIUM, RPTR_RESOLUTION_HIGH, RPTR_RESOLUTION_VERYHIGH }; HRESULT Resolution([out, retval] RPtrResolution* pVal);<<<<<<<< ERROR1 HRESULT Resolution([in] RPtrResolution newVal); }; ERROR1 : error MIDL2025 : syntax error : expecting a type specification

    COM question c++ help

  • how to define coclass in c# com object?
    I iman_kh

    hi, i want to define coclass,and progid in my c# com object,but i cant ! can i perform this ?

    C# csharp com tutorial question

  • how to export com dll(have created with c#) to .lib type library?
    I iman_kh

    hi to all, i have created a com object with c# and my output project is *.dll, now i nead to export it to .lib file, how to do this work? so thanks bye

    C# csharp com tutorial question

  • how to export com dll(have created with c#) to .lib type library?
    I iman_kh

    hi to all, i have created a com object with c# and my output project is *.dll, now i nead to export it to .lib file, how to do this work? so thanks bye

    COM csharp com tutorial question

  • can i create .lib file for com object in c#?
    I iman_kh

    hi to all, i want to create a com object but i need to have .lib file , can i create it in c# or i must to write it in vc++ only? so thanks

    C# csharp c++ com question

  • real time timer
    I iman_kh

    hi to all, i want to do a job per 40 milisecond but i can't !; timer component can not support this resolution , can i access to this resolution in other way?

    C# question career

  • place program icon into desktop toolbox
    I iman_kh

    hi so thanks for your help

    C# question

  • place program icon into desktop toolbox
    I iman_kh

    hi how can i place my program icon into desktop toolbox?

    C# question

  • show sorted table in crystall report
    I iman_kh

    hi to all how can i order tables (data base) by defined feild , in CRYSTALL REPROT for example , i want to use this query : select * from person order by age where i must use from (order by age) clause? thanks

    C# question database tutorial
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups