sketchucation logo sketchucation
    • Login
    ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info

    [Plugin Library] Win32API and Win32OLE so files

    Scheduled Pinned Locked Moved Plugins
    21 Posts 4 Posters 20.7k Views 4 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • G Offline
      glro
      last edited by

      i see win32api.so is related to a specific version of sketchup

      is there a new version, available or necessary, for sketchup 2013?

      @dan rathbun said:


      Windows ONLY (Do NOT install on Mac!)


      Not a plugin. These files may be required by other plugins.

      The plugin author should list either of these files as a dependancy, if you need them:

      • Win32API.so

      • Win32OLE.so

      ( You do not need these if you have a full Ruby install, and pushed the paths to it's lib dirs into the $LOAD_PATH array.)


      Windows ONLY (Do NOT install on Mac!)


      Sketchup 8.0,8.0M1, 8.0M2

      • Ruby v 1.8.6 - patchlevel 287

      • [attachment=1:2uaslkv3]<!-- ia1 -->v186_p287_so.zip<!-- ia1 -->[/attachment:2uaslkv3]

      Sketchup 6.x, 7.x

      • Ruby v 1.8.0 - patchlevel 0 (initial release)

      • [attachment=0:2uaslkv3]<!-- ia0 -->v180_p0_so.zip<!-- ia0 -->[/attachment:2uaslkv3]


      Windows ONLY (Do NOT install on Mac!)


      I post these because some plugins are distro'ing old versions, or some topics here at SCF have old versions.
      This can be a common place for users to get up to date versions of these files.

      1 Reply Last reply Reply Quote 0
      • Dan RathbunD Offline
        Dan Rathbun
        last edited by

        @glro said:

        I see win32api.so is related to a specific version of SketchUp ...

        It is compiled with a specific version of Ruby.

        @glro said:

        ...is there a new version, available or necessary, for SketchUp 2013?

        At the console, check global constants:
        RUBY_VERSION
        and
        RUBY_PATCHLEVEL

        You'll see SketchUp 2013 is still the same as v8 (on the PC.)

        💭

        I'm not here much anymore.

        1 Reply Last reply Reply Quote 0
        • G Offline
          glro
          last edited by

          @dan rathbun said:

          @glro said:

          I see win32api.so is related to a specific version of SketchUp ...

          It is compiled with a specific version of Ruby.

          @glro said:

          ...is there a new version, available or necessary, for SketchUp 2013?

          At the console, check global constants:
          RUBY_VERSION
          and
          RUBY_PATCHLEVEL

          You'll see SketchUp 2013 is still the same as v8 (on the PC.)

          💭

          thank you for answering

          I was wondering about Ruby version for sketchup 2013, because win32API.so gives an error message in sketchup 13

          require "Win32API"
          or
          require 'Win32API.so'
          or
          require 'Win32API'

          seems not to be compatible with sketchup 2013

          1 Reply Last reply Reply Quote 0
          • Dan RathbunD Offline
            Dan Rathbun
            last edited by

            @glro said:

            seems not to be compatible with sketchup 2013

            (1) where is the so file on your machine ?

            (2) please post the error message

            I'm not here much anymore.

            1 Reply Last reply Reply Quote 0
            • S Offline
              swajime
              last edited by

              Thank you Dan for this. I've tried starting with http://stackoverflow.com/questions/1120225/ruby-and-accdb-ms-access but I am getting an error:
              connection = WIN32OLE.new('ADODB.Connection')
              Error: #<NameError: (eval):27: uninitialized constant WIN32OLE>
              Can you please help me to get started with opening a simple database myDatabase.accdb ?

              1 Reply Last reply Reply Quote 0
              • S Offline
                swajime
                last edited by

                I have this directly in the SketchUp ruby console:

                require 'win32ole'
                true
                if defined?(WIN32OLE); connection = WIN32OLE.new('ADODB.Connection'); end
                Error; #<WIN32OLERuntimeError; (eval);27;in `initialize'; unknown OLE server; `ADODB.Connection'
                    HRESULT error code;0x800401f3
                      >
                
                

                The link you put up did not come through.

                1 Reply Last reply Reply Quote 0
                • Dan RathbunD Offline
                  Dan Rathbun
                  last edited by

                  @swajime said:

                  The link you put up did not come through.

                  The original links in the 2nd post still work.
                  (It's just that the editor has decided to encode pasted URLs, suddenly.)

                  I'm not here much anymore.

                  1 Reply Last reply Reply Quote 0
                  • Dan RathbunD Offline
                    Dan Rathbun
                    last edited by

                    I suggest starting a new (if there is not one,) topic in the Developers Forum.

                    I'm not here much anymore.

                    1 Reply Last reply Reply Quote 0
                    • S Offline
                      swajime
                      last edited by

                      Thank you. I did as you said and started a new topic http://sketchucation.com/forums/viewtopic.php?f=180%26amp;t=55202%26amp;e=0.

                      1 Reply Last reply Reply Quote 0
                      • Dan RathbunD Offline
                        Dan Rathbun
                        last edited by

                        @swajime said:

                        Error: #<NameError: (eval):27: uninitialized constant WIN32OLE>

                        Did you first have the load statement:

                        require("win32ole")

                        or require("win32ole.so")

                        Then you can test if the class was defined, via:

                        if defined?(WIN32OLE)
                        
                          connection = WIN32OLE.new('ADODB.Connection')
                        
                         # more code ...
                        
                        end
                        
                        

                        There is a chapter on WIN32OLE in:
                        [doc] Programming Ruby (The "Pick-Axe" Book)

                        💭

                        I'm not here much anymore.

                        1 Reply Last reply Reply Quote 0
                        • Dan RathbunD Offline
                          Dan Rathbun
                          last edited by

                          Did you see the link ?

                          @dan rathbun said:

                          Since someone is bound to ask, here are the online reference rdocs for these 2 libraries:

                          • Win32API rdoc

                          • WIN32OLE rdoc

                          I'm not here much anymore.

                          1 Reply Last reply Reply Quote 0
                          • Dan RathbunD Offline
                            Dan Rathbun
                            last edited by

                            @dan rathbun said:

                            There is a chapter on WIN32OLE in:
                            [doc] Programming Ruby (The "Pick-Axe" Book)

                            💭

                            Sysops have fixed the editor URL links (above.)

                            ☀

                            I'm not here much anymore.

                            1 Reply Last reply Reply Quote 0
                            • G Offline
                              glro
                              last edited by

                              @dan rathbun said:

                              @glro said:

                              seems not to be compatible with sketchup 2013

                              (1) where is the so file on your machine ?

                              (2) please post the error message

                              1: in the plugins folder of sketchup

                              2:win32API.so error message

                              1 Reply Last reply Reply Quote 0
                              • G Offline
                                glro
                                last edited by

                                @dan rathbun said:

                                @glro said:

                                seems not to be compatible with sketchup 2013

                                (1) where is the so file on your machine ?

                                (2) please post the error message

                                sorry

                                problem solved

                                you were right: win32API.so and sketchup 2013 are compatible

                                thank you

                                1 Reply Last reply Reply Quote 0
                                • Dan RathbunD Offline
                                  Dan Rathbun
                                  last edited by

                                  @glro said:

                                  sorry ... problem solved

                                  you were right: win32API.so and sketchup 2013 are compatible

                                  Yes I have no problem loading it.

                                  What was your issue ?

                                  I'm not here much anymore.

                                  1 Reply Last reply Reply Quote 0
                                  • G Offline
                                    glro
                                    last edited by

                                    @dan rathbun said:

                                    @glro said:

                                    sorry ... problem solved

                                    you were right: win32API.so and sketchup 2013 are compatible

                                    Yes I have no problem loading it.

                                    What was your issue ?

                                    still don't know

                                    changed something (don't know what) and the problem disappeared

                                    thank you for your comments

                                    1 Reply Last reply Reply Quote 0
                                    • Dan RathbunD Offline
                                      Dan Rathbun
                                      last edited by

                                      ❗ FYI

                                      SketchUp 2014

                                      • Ruby v 2.0.0 - patchlevel 247

                                      • win32ole.so file is included

                                      • Win32API.rb file is included, which is a wrapper into the newer DL library, but allows the older WIn32API style calls.
                                        %(#BF4000)[Do not copy these files from older Ruby versions into SketchUp's "Plugins" folder,
                                        (or any of SketchUp's folders,) for versions 14 or higher !]

                                      💭

                                      I'm not here much anymore.

                                      1 Reply Last reply Reply Quote 0
                                      • 1
                                      • 2
                                      • 1 / 2
                                      • First post
                                        Last post
                                      Buy SketchPlus
                                      Buy SUbD
                                      Buy WrapR
                                      Buy eBook
                                      Buy Modelur
                                      Buy Vertex Tools
                                      Buy SketchCuisine
                                      Buy FormFonts

                                      Advertisement