Search Result

Collapse
11 results in 0.0014 seconds.
Keywords
Members
Tags
module
  •  

  • NeoPa
    started a topic Excel Module (Code) Names

    Excel Module (Code) Names

    Introduction :

    Excel worksheets all have names, but although the default name for a sheet will always match the module name for that sheet, it is easy to change the name of the sheet, yet not so easy to access and change the module name. If this is a problem you've struggled to deal with, then read on.


    Worksheet Name :

    This is typically shown in a tab at the bottom of a workbook window in Excel....
    See more | Go to post

  • pikato
    started a topic Increase execution time (Speed) of Perl
    in Perl

    Increase execution time (Speed) of Perl

    Hi everyone,
    I would like to know if Perl could run faster similar to PHP. I use Perl/Jquery/Mysql/Apache. Is there any tools to enhance the overall throughput.

    Thank you.
    See more | Go to post

  • [pyinstaller] how to compile Python script importing module

    Hi,

    I need to compile a pyhton tool into an executable as the destination plateform (Solaris, Linux) are not deployed with Python or not all needed modules.

    I found pyinstaller and follow the classical tutorial.

    First executable starts correctly under Linux but not under windows.

    Second it crashes right after due to unknown module that haev to be loaded.

    Here is a view of...
    See more | Go to post

  • How to fix socket and connection errors running Python Module?

    When I try to run my Python Module, two messages pop up consecutively:
    1. "Socket Error: No connection could be made because the target machine actively refused it"
    2. "IDLE's subprocess didn't make connection. Either IDLE can't start a subprocess or personal firewall software is blocking the connection"
    ... what should I do about this to enable it to work properly??
    See more | Go to post

  • How can I create a prompt that allows a user to select a folder in a dialog?

    Hello all,

    I have another tedious request that I cannot figure out on my own but hopefully you guys can answer.

    On one of the forms the user interacts with there is a field (linked to a table) that is formatted as a hyperlink that allows the user to paste in the location of that specific record's folder on the shared drive. (to save the hassle of clicking through the various folders on the shared drive to find a specific...
    See more | Go to post

  • thelonelyghost
    started a topic VBA Function output

    VBA Function output

    Basic Information
    Software: Microsoft Access 2000
    OS: Microsoft Windows XP Professional SP3

    I've been trying to make some of the behind-the-scenes coding for one of my forms available in a module such as creating a query from certain inputs:
    Code:
    Function EqualsAttachAnd(sField As String, sValue As String, strDelim As String)
    
      If sValue = "''" Or sValue = "" Then Exit Function
    ...
    See more | Go to post

  • 360monkey
    started a topic Getting rid of module naming

    Getting rid of module naming

    I have this program:
    Code:
    class Cabbage:
       def __init__(self, height, bobnum):
          self.h = self.height
          self.b = self.bobnum
    x = cabbage(3, 7)
    If i put in cabbage.x.h, it returns
    3
    I want to remove the need to type cabbage in this,so i can just put
    x.h and return
    3.

    Any help is appreciated
    Thanks
    See more | Go to post
    Last edited by bvdet; Feb 2 '10, 11:08 PM. Reason: Add code tags

  • afmfpt
    started a topic How to import a C# DLL using the ctypes module?

    How to import a C# DLL using the ctypes module?

    Hello,

    I've a C# DLL named SoundLogDLL.dll



    I used this code to call the function run() from my dll but it gives this error:


    What do I need to do for the methods of my dll became visible in python?...
    See more | Go to post

  • how to solve "runtime error 13: type mismatch"?

    Hello,

    VBA gives an error on the indicated line. "tblparamet ers" is a database which exists.

    Code:
    Option Compare Database
    
    Option Explicit
    
    Sub fill_parameters()
    
    Dim rstfill As Recordset
    Dim DB2 As Database
    
    Set DB2 = CurrentDb
    ====> Set rstfill = DB2.OpenRecordset("tblparameters")
    
    With rstfill
    
    While
    ...
    See more | Go to post

  • KClaisse
    started a topic Bittorrent module for python?

    Bittorrent module for python?

    I've been looking for a way to query a bittorrent tracker like a client does and get info about seeders/leechers. So far I can't find any specific module that implements that kind of thing. Does anyone know of a module that has these features? I guess I could still do it manually with the socket module, but I may die in the process :p.
    See more | Go to post

  • Class vs Structure Vs Module in Visual Basic .Net

    I was quickly curious what the difference between a class, a structure, and a module is in Visual Basic .Net in relation to C++.

    Is a Structure truly a struct like in C, or is it essentially a class with all members defaultly public? And what is the point of a Module (I used one back in the day with VB6, but have read they have major speed issues--and why are they inefficient?).

    How do these three fit in with each other...
    See more | Go to post
    Last edited by TamusJRoyce; Nov 24 '08, 04:31 AM. Reason: Wording. I often change my posts due to it being poorly written (grammer-wise)
Working...