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....
Search Result
Collapse
11 results in 0.0014 seconds.
Keywords
Members
Tags
-
Excel Module (Code) Names
-
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. -
[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... -
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?? -
Tim Mullin started a topic How can I create a prompt that allows a user to select a folder in a dialog?in AccessHow 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... -
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
-
Getting rid of module naming
I have this program:
If i put in cabbage.x.h, it returnsCode:class Cabbage: def __init__(self, height, bobnum): self.h = self.height self.b = self.bobnum x = cabbage(3, 7)
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 -
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?... -
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 -
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. -
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...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)