microstation license check

Hi,

is there any way to check if microstation is properly licensed or crack version?

regards,

olcay

Parents
  • Check if MicroStation is Licensed

    You can use the following MDL function to check MicroStation's license status.

    Place the following declaration at the beginning of a VBA module, before any code …

    Declare Function mdlLicense_isRegisteredProduct Lib "stdmdlbltin.dll" ( ) As Long

    Here's the VBA function that wraps the MDL …

    Public Function IsMicroStationRegistered () As Boolean
       IsMicroStationRegistered = (0 <> mdlLicense_isRegisteredProduct ())
    End Function

    Usage …

    If IsMicroStationRegistered() Then
       Debug.Print "MicroStation is registered"
    Else
       Debug.Print "MicroStation is not registered"
    EndIf

    Note: I haven't tested that code. You may have to debug it.

    Regards, Jon Summers
    LA Solutions

     
    Regards, Jon Summers
    LA Solutions

Reply
  • Check if MicroStation is Licensed

    You can use the following MDL function to check MicroStation's license status.

    Place the following declaration at the beginning of a VBA module, before any code …

    Declare Function mdlLicense_isRegisteredProduct Lib "stdmdlbltin.dll" ( ) As Long

    Here's the VBA function that wraps the MDL …

    Public Function IsMicroStationRegistered () As Boolean
       IsMicroStationRegistered = (0 <> mdlLicense_isRegisteredProduct ())
    End Function

    Usage …

    If IsMicroStationRegistered() Then
       Debug.Print "MicroStation is registered"
    Else
       Debug.Print "MicroStation is not registered"
    EndIf

    Note: I haven't tested that code. You may have to debug it.

    Regards, Jon Summers
    LA Solutions

     
    Regards, Jon Summers
    LA Solutions

Children