User mandroid - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T13:49:00Zhttp://stackoverflow.com/feeds/user/120126http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1036996/interesting-python-system-utilities-you-have-made4Interesting Python system utilities you have made?mandroid2009-06-24T08:01:31Z2009-12-09T11:46:27Z
<p>I am slowly but surely teaching myself Python. I learn best by doing. I'm looking for some neat system productivity kind of procedures that I could try making that you have found useful for yourself. Some of the modules I've successfully made and use are like these:</p>
<ul>
<li>Zip a folder</li>
<li>Zip a whole set of folders to an archive as an automatic backup</li>
<li>App launcher that opens my most frequently used programs at startup</li>
</ul>
<p>But I'm kinda stuck now. What else could I do?</p>
http://stackoverflow.com/questions/1568405/crystal-reports-parameter-selection-limit0Crystal Reports parameter selection limit?mandroid2009-10-14T19:17:50Z2009-11-18T13:47:16Z
<p>I'm trying to make a Crystal Reports 11 report off an Oracle database that's grouped by user. I've got over one thousand users. I want to create a parameter field that prompts the person to select which users they would like to view the results for. However my parameter selection field is only showing 221 of the possible users. The users appear in alphabetical order because of the SQL command's Order By statement. I'm wondering if there is a limit to the number of dynamic default values that a parameter field can store. Any help with this would be great.</p>
http://stackoverflow.com/questions/1406973/limit-number-of-selections-in-a-multiselect-listbox-in-access0Limit number of selections in a MultiSelect ListBox in Access?mandroid2009-09-10T18:38:32Z2009-09-14T15:07:25Z
<p>Is there a way to limit the number of selections a user can choose on a ListBox with MultiSelect enabled in Access 2003? Right now I have a procedure that fires on the On Click event that checks the number of choices selected and if it is over my threshold it will display a warning label.</p>
http://stackoverflow.com/questions/1357860/storing-range-attributes-as-an-object1Storing Range attributes as an object?mandroid2009-08-31T14:53:30Z2009-09-10T12:11:22Z
<p>I'm having trouble with the way I designed this little report I'm making. Is it possible to create a variable for a Range object in Excel VBA, for the purposes of applying the formatting to another Range? Here is my example:</p>
<p>I'm creating a dictionary from the Microsoft Scripting Runtime library:</p>
<pre><code>Dim d as Scripting.Dictionary
</code></pre>
<p>With this I'm adding labels, values, and (trying to add) Ranges.</p>
<pre><code>Dim rng as Range
rng.Font.Bold = True
d.Add 1, Field("test1", 12345, rng)
rng.Font.Bold = False
d.Add 2, Field("TestTwo", "Testing field", rng)
rng.HorizontalAlignment = xlCenter
d.Add 3, Field("threeeee", 128937912, rng)
Dim key As Variant
For Each key In d.keys
Range("A" & key).value = d(key).Label
Set Range("B" & key).value = d(key).rng
Next key
</code></pre>
<p>Here is my Field function:</p>
<pre><code>Private Function Field(Label As String, val As Variant, rng As Range) As cField
Dim f As New cField
f.Label = Label
f.val = val
Set f.rng = rng
Set Field = f
End Function
</code></pre>
<p>And here is my cField class:</p>
<pre><code>Option Explicit
Dim mVarValue As Variant
Dim mStrLabel As String
Dim mRng As Range
Property Let val(ByVal val As Variant)
mVarValue = val
End Property
Property Get val() As Variant
val = mVarValue
End Property
Property Let Label(ByVal val As String)
mStrLabel = val
End Property
Property Get Label() As String
Label = mStrLabel
End Property
Property Let rng(ByVal val As Range)
Set mRng = val
End Property
Property Get rng() As Range
Dim a As Range
a.value = mVarValue
Set rng = a
End Property
</code></pre>
<p>The idea is that the key in the dictionary is going to be the row location for the field. This way if changes need to be made to the report I'm making, the only thing that needs to be changed is the key for that particular value in the dictionary. I have been successful storing the label for the value, and the value itself, but I also want to store the formatting for that Range (bold, justification, borders, etc...).</p>
<p>I get a 'Run-time error '91': Object variable or With block variable not set' error on the line immediately following the rng declaration. I'm wondering if its not possible to have a generic Range that doesn't have a location on a sheet, or if somehow my syntax is off.</p>
<p>Any help would be greatly appreciated! :)</p>
http://stackoverflow.com/questions/1376442/what-does-do-in-oracle-sql2What does (+) do in Oracle SQL?mandroid2009-09-03T23:13:34Z2009-09-04T00:11:30Z
<p>I'm using Oracle SQL Developer to query an Oracle DB (not sure which version it is) and I'm going to use the SQL I make for a Crystal report. Many of the reports the previous developers have written don't use JOIN keywords to make the joins (and I'm not too familiar with JOIN keywords as a result). </p>
<p>Many of the joins they make are made in the WHERE statement. I'll notice something like this.</p>
<pre><code>Select * From TableA, TableB WHERE TableA.PrimaryKey(+) = TableB.ForeignKey
</code></pre>
<p>My question is concerning the (+). What purpose does it serve and how do I use it in my code?</p>
http://stackoverflow.com/questions/1296225/iterate-over-vba-dictionaries0Iterate over VBA Dictionaries?mandroid2009-08-18T20:14:31Z2009-08-21T17:43:51Z
<p>I'm using the Dictionary class in the MS Runtime Scripting library to store where labels are going to go for a report template. Is there a way to iterate over all the key value pairs in that dictionary like in Python? I just want to use the key as the row number (It's all going in column A) and the value will be the label header.</p>
<p>Something like:</p>
<pre><code>For Each key in dict
Range("A" & key).Value = dict(key)
Next key
</code></pre>
http://stackoverflow.com/questions/1099685/how-can-i-obtain-the-displayed-value-instead-of-actual-value-in-excel/1100182#11001822Answer by mandroid for How can I obtain the displayed value instead of actual value in Excel?mandroid2009-07-08T19:48:02Z2009-08-18T22:32:18Z<p>Use the Format function.</p>
<pre><code>Format("5/11/2009", "DD-MMM-YY")
</code></pre>
<p>This will return:</p>
<pre><code>11-May-09
</code></pre>
<p>If case matters:</p>
<pre><code>UCase(Format("5/11/2009", "DD-MMM-YY"))
</code></pre>
<p>returns:</p>
<pre><code>11-MAY-09
</code></pre>
http://stackoverflow.com/questions/1203036/formatting-text-into-boxes-in-the-python-shell1Formatting text into boxes in the Python Shellmandroid2009-07-29T21:04:56Z2009-07-31T00:54:32Z
<p>I've created a basic menu class that looks like this:</p>
<pre><code>class Menu:
def __init__(self, title, body):
self.title = title
self.body = body
def display(self):
#print the menu to the screen
</code></pre>
<p>What I want to do is format the title and the body so they fit inside premade boxes almost. Where no matter what I pass as the body, display will be able to fit it inside. The format would look something like this.</p>
<pre><code>********************************************************************************
* Here's the title *
********************************************************************************
* *
* The body will go in here. Say I put a line break here ---> \n *
* it will go to the next line. I also want to keep track\n *
* \t <----- of tabs so I can space things out on lines if i have to *
* *
********************************************************************************
</code></pre>
<p>The title I think will be easy but I'm getting lost on the body.</p>
http://stackoverflow.com/questions/1208322/dictionary-with-classes5Dictionary with classes?mandroid2009-07-30T18:10:06Z2009-07-30T21:54:08Z
<p>In Python is it possible to instantiate a class through a dictionary?</p>
<pre><code>shapes = {'1':Square(), '2':Circle(), '3':Triangle()}
x = shapes[raw_input()]
</code></pre>
<p>I want to let the user pick from a menu and not code huge if else statements on the input. For example if the user entered 2, x would then be a new instance of Circle. Is this possible?</p>
http://stackoverflow.com/questions/1146359/how-to-define-the-version-number-of-a-software/1146383#11463831Answer by mandroid for How to define the version number of a software?mandroid2009-07-18T01:13:19Z2009-07-29T20:51:06Z<p>I've been doing this as an interim until I find a better solution. I don't build many large applications, mostly reports and smaller macros, but it's still important for me to keep track of changes and versions.</p>
<p>[Current year].[Current month].[Current day]</p>
<p>FileName 9.7.17.rpt for example. </p>
<p>It works for me and my boss, and it gives a value which you can compare to today's date to see how old the file is. I also keep a changelog.txt file in the same folder as the most current version and it keeps track of all the changes from the previous versions. I also keep track of all versions in a version control page on each projects tab in OneNote.</p>
<p>Thanks for the answer. I'll also throw in how I store the projects for giggles.</p>
<p>Every project gets its own folder. Inside that folder I'll have 4 main items that help me keep track of what's going on in the project.</p>
<ul>
<li>An old versions folder</li>
<li>A folder for any reference material I might need for the project</li>
<li>The actual project file</li>
<li>And the changelog</li>
</ul>
<p>That tree will look something like this.</p>
<pre><code>Project X
Old versions
X Report 9.4.12.rpt
X Report 9.5.3.rpt
X Report 9.7.20.rpt
Reference
SQL calls.txt
Client list.txt
Procedures.doc
X Report 9.7.29.rpt
X Report changelog.txt
</code></pre>
<p>This way of keeping track of my work really cuts down on the amount of time that I need to spend documenting anything and organizes it in a standard way so if my boss needs to grab something I've worked on, even he knows exactly what everything means and where it is.</p>
<p>For storing multiple projects in my network folder I have these folders.</p>
<ul>
<li>Inbox</li>
<li>Projects
<ul>
<li>@Archived Projects</li>
<li>Current Project 1</li>
<li>Current Project 2</li>
<li>Current Project 3</li>
</ul></li>
<li>Reference</li>
</ul>
<p>Inbox is where I toss random things to process later, or a folder where my boss can throw something I'm going to need for a later project. The Projects folder contains all the projects I'm currently working on, and then when I'm done or they no longer become a current priority, they get tossed in @Archived Projects. Reference is a folder for general job reference material, like policies and procedures, phone lists, org charts, fire escape plans. I may never use them, but it's comforting to have a place to put that kind of stuff as opposed to digging through old email.</p>
http://stackoverflow.com/questions/1175110/python-classes-for-simple-gtd-app1Python classes for simple GTD appmandroid2009-07-23T23:48:09Z2009-07-28T06:44:48Z
<p>I'm trying to code a very rudimentary GTD app for myself, not only to get organized, but to get better at coding and get better at Python. I'm having a bit of trouble with the classes however. </p>
<p>Here are the classes I have so far:</p>
<pre><code>class Project:
def __init__(self, name, actions=[]):
self.name = name
self.actions = actions
def add(self, action):
self.actions.append(action)
class Action:
def __init__(self, do='', context=''):
self.do = do
self.context = context
</code></pre>
<p>Each project has actions to it, however I want to make it so that projects can also consist of other projects. Say daily I wanted to print out a list of everything. I'm having trouble coming up with how I would construct a list that looked like this</p>
<pre><code>> Project A
> Actions for Project A
> Project B
> Sub project A
> Actions for Sub project A
> Sub project B
> Actions for Sub project B
> Sub project C
> Sub sub project A
> Actions for sub sub project A
> Sub sub project B
> Actions for sub sub project B
> Actions for Sub project C
> Actions for Project B
</code></pre>
<p>It's quite clear to me that recursion is going to be used. I'm struggling with whether to create another class called SubProject and subclass Project to it. Something there just makes my brain raise an exception.</p>
<p>I have been able to take projects and add them to the actions attribute in the Project class, however then I run into where MegaProject.actions.action.actions.action situations start popping up.</p>
<p>If anyone could help out with the class structures, it would be greatly appreciated!</p>
http://stackoverflow.com/questions/1180876/composite-pattern-for-gtd-app0Composite pattern for GTD appmandroid2009-07-25T01:10:46Z2009-07-25T01:34:38Z
<p>This is a continuation of <a href="http://stackoverflow.com/questions/1175110/python-classes-for-simple-gtd-app" rel="nofollow" title="one of my previous questions">one of my previous questions</a></p>
<p>Here are my classes.</p>
<pre><code>#Project class
class Project:
def __init__(self, name, children=[]):
self.name = name
self.children = children
#add object
def add(self, object):
self.children.append(object)
#get list of all actions
def actions(self):
a = []
for c in self.children:
if isinstance(c, Action):
a.append(c.name)
return a
#get specific action
def action(self, name):
for c in self.children:
if isinstance(c, Action):
if name == c.name:
return c
#get list of all projects
def projects(self):
p = []
for c in self.children:
if isinstance(c, Project):
p.append(c.name)
return p
#get specific project
def project(self, name):
for c in self.children:
if isinstance(c, Project):
if name == c.name:
return c
#Action class
class Action:
def __init__(self, name):
self.name = name
self.done = False
def mark_done(self):
self.done = True
</code></pre>
<p>Here's the trouble I'm having. If I build a big project with several small projects, I want to see what the projects are or the actions for the current project, however I'm getting all of them in the tree. Here's the test code I'm using (note that I purposely chose several different ways to add projects and actions to test to make sure different ways work).</p>
<pre><code>life = Project("life")
playguitar = Action("Play guitar")
life.add(Project("Get Married"))
wife = Project("Find wife")
wife.add(Action("Date"))
wife.add(Action("Propose"))
wife.add(Action("Plan wedding"))
life.project("Get Married").add(wife)
life.add(Project("Have kids"))
life.project("Have kids").add(Action("Bang wife"))
life.project("Have kids").add(Action("Get wife pregnant"))
life.project("Have kids").add(Project("Suffer through pregnancy"))
life.project("Have kids").project("Suffer through pregnancy").add(Action("Drink"))
life.project("Have kids").project("Suffer through pregnancy").add(playguitar)
life.add(Project("Retire"))
life.project("Retire").add(playguitar)
</code></pre>
<p>life should have a few projects in it, with a few projects inside of those. The structure amounts to something like this (where indents are projects and -'s are actions)</p>
<pre><code>Life
Get Married
Find wife
- Date
- Propose
- Plan wedding
Have kids
- Bang wife
- Get wife pregnant
Suffer through pregnancy
- Drink
- Play guitar
Retire
- Play guitar
</code></pre>
<p>What I'm finding is that life.actions() is returning every action in the tree when it should return none. life.projects() is returning every project, even sub projects, when I only want 'Get Married', 'Have kids', and 'Retire'. What is it that I'm doing wrong?</p>
http://stackoverflow.com/questions/1076958/urllib-urlopen-isnt-working-is-there-a-workaround1urllib.urlopen isn't working. Is there a workaround?mandroid2009-07-02T22:25:44Z2009-07-20T09:31:53Z
<p>I'm getting a getaddress error and after doing some sleuthing, it looks like it might be my corporate intranet not allowing the connection (I'm assuming due to security, although it is strange that IE works but won't allow Python to open a url). Is there a safe way to get around this?</p>
<p>Here's the exact error:</p>
<pre><code>Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
b = urllib.urlopen('http://www.google.com')
File "C:\Python26\lib\urllib.py", line 87, in urlopen
return opener.open(url)
File "C:\Python26\lib\urllib.py", line 203, in open
return getattr(self, name)(url)
File "C:\Python26\lib\urllib.py", line 342, in open_http
h.endheaders()
File "C:\Python26\lib\httplib.py", line 868, in endheaders
self._send_output()
File "C:\Python26\lib\httplib.py", line 740, in _send_output
self.send(msg)
File "C:\Python26\lib\httplib.py", line 699, in send
self.connect()
File "C:\Python26\lib\httplib.py", line 683, in connect
self.timeout)
File "C:\Python26\lib\socket.py", line 498, in create_connection
for res in getaddrinfo(host, port, 0, SOCK_STREAM):
IOError: [Errno socket error] [Errno 11001] getaddrinfo failed
</code></pre>
<p>More info: I also get this error with urllib2.urlopen</p>
http://stackoverflow.com/questions/1140893/developing-for-constant-change-in-a-corporate-environment7Developing for constant change in a corporate environment?mandroid2009-07-16T23:59:45Z2009-07-17T01:42:46Z
<p>I work for a large company currently going through a merger. We are working on several projects involving and not involving the merger. One problem I'm noticing is that many of the groups of developers are very fragmented, even though they mostly support many different projects within their own realm of the business, and the databases we all work on seem to reflect that as well. I am not too confident in the accuracy of much of the data because of it.</p>
<p>Are there any models or standards out there that have been successful in managing these types of changing environments? What are good ways to communicate those changes to the users? Are there ways to create redundancies so if a change is proposed on one part of the production, it gets communicated up and down the pipeline?</p>
<p>Edit: making this community wiki due to its subjectiveness</p>
http://stackoverflow.com/questions/1133160/how-to-make-absolute-cell-ref-in-loop-work-and-skipping-over-a-column-in-loop/1133627#11336270Answer by mandroid for How to make absolute cell ref in loop work and skipping over a column in loop?mandroid2009-07-15T20:00:28Z2009-07-15T20:00:28Z<p>This is a great example to learn what 'scope' is. You declare (or bring into existence) a variable like the range you're trying to make. It lives inside the macro (or sub procedure) that you made. However, when the sub procedure is finished, your variable no longer has a place to live and gets evicted (dropped out of your computer's memory).</p>
<p>Unfortunately the way your coded your macros will not work the way you are hoping they work. Your myRanges will die everytime they reach an End Sub.</p>
<p>Also when passing arguments (your byvals) to another sub procedure (in this case your TieOut) you must provide the right number of arguments. Your TieOut procedure currently requires two. You cannot pass one and then the other. The correct way would look something like this:</p>
<pre><code>Call TieOut(myRange.Rows.Count, myRange.Columns.Count)
</code></pre>
<p>Also you are trying to call a procedure named TieOut2. Not sure if thats a typo, but getting procedure names right is important.</p>
<p>VBA is very powerful and worth learning in my opinion. You look like you are scratching the surface. I would definitely search for some VBA tutorials online. Focus on calling procedures, variable declaration, and scope and I guarantee you will be able to solve your problem :D</p>
http://stackoverflow.com/questions/1111825/handling-an-output-error-in-access0Handling an output error in Accessmandroid2009-07-10T20:31:26Z2009-07-11T06:10:15Z
<p>I'm generating a query and report through VBA. I have an option of asking the user if they want to output the report as a snapshot. I first ask them if they want to make a snap shot. If they say no, nothing happens. If they say yes, they get a prompt asking where they want to save it. </p>
<p>Everything works great except if they say yes and then click Cancel on the prompt, it raises a runtime error 2501 saying the report action was cancelled. Here is the code.</p>
<pre><code>DoCmd.OpenReport "CONCERNS", acViewPreview, lstFee.Value & " DETAILS"
If MsgBox("Do you wish to create a snapshot of this report?", vbQuestion + vbYesNo) = vbYes Then
DoCmd.OutputTo acReport, "CONCERNS", "SnapshotFormat(*.snp)", ""
End If
</code></pre>
<p>This is also the end of my procedure so I don't really care if an error happens here since all the important stuff happened already. I just know some monkey somewhere will flip if they ever see it. Is there a way to handle this error? On Error Resume Next is not an option because that would make debugging a nightmare in the future. It sounds like I'm looking for something like a Try/Catch but I don't think VBA supports that.</p>
http://stackoverflow.com/questions/1106223/how-are-these-type-of-python-decorators-written/1106242#11062420Answer by mandroid for How are these type of python decorators written?mandroid2009-07-09T20:24:46Z2009-07-09T20:24:46Z<p>I know you said you didn't want a class, but unfortunately that's the only way I can think of how to do it off the top of my head.</p>
<pre><code>class mymethodwrapper:
def __init__(self):
self.maxcalls = 0
def mymethod(self):
self.maxcalls += 1
if self.maxcalls > 5:
return
#rest of your code
print "Code fired!"
</code></pre>
<p>Fire it up like this</p>
<pre><code>a = mymethodwrapper
for x in range(1000):
a.mymethod()
</code></pre>
<p>The output would be:</p>
<pre><code>>>> Code fired!
>>> Code fired!
>>> Code fired!
>>> Code fired!
>>> Code fired!
</code></pre>
http://stackoverflow.com/questions/1094175/is-there-a-way-to-talk-to-onenote-through-code1Is there a way to talk to OneNote through code?mandroid2009-07-07T19:03:52Z2009-07-07T19:31:44Z
<p>I love using OneNote, however I want more control over the locations of my notes and how notes are generated. I'm very versed in VBA and ok with Python (and those are the only languages I can code with on my machine) however I haven't found a decent way to interact with OneNote through code. I'm using OneNote 2003 which doesn't look like it has an xml export like 2007 does. Has anyone figured out an easy way to be able to read and write OneNote files with Python or VBA?</p>
http://stackoverflow.com/questions/1094291/get-current-date-in-epoch-from-unix-shell-script/1094305#1094305-1Answer by mandroid for Get Current date in epoch from Unix shell scriptmandroid2009-07-07T19:27:46Z2009-07-07T19:27:46Z<p>Depending on the language you're using it's going to be something simple like </p>
<pre><code>CInt(CDate("1970-1-1") - CDate(Today()))
</code></pre>
<p>Ironically enough, yesterday was day 40,000 if you use 1/1/1900 as "day zero" like many computer systems use.</p>
http://stackoverflow.com/questions/1080662/is-this-a-good-way-to-use-dlls-c/1080752#10807520Answer by mandroid for Is this a good way to use dlls? (C++?)mandroid2009-07-03T20:36:59Z2009-07-03T20:36:59Z<p>Wouldn't it be safer to convert them to dll's to prevent the user from accidentally running sub1 or sub2 without main starting them?</p>
http://stackoverflow.com/questions/1080393/random-list-with-rules0Random list with rulesmandroid2009-07-03T18:23:54Z2009-07-03T19:03:21Z
<p>I'm trying to create a list of tasks that I've read from some text files and put them into lists. I want to create a master list of what I'm going to do through the day however I've got a few rules for this. </p>
<p>One list has separate daily tasks that don't depend on the order they are completed. I call this list 'daily'. I've got another list of tasks for my projects, but these do depend on the order completed. This list is called 'projects'. I have a third list of things that must be done at the end of the day. I call it 'endofday'.</p>
<p>So here are the basic rules.</p>
<p>A list of randomized tasks where daily tasks can be performed in any order, where project tasks may be randomly inserted into the main list at any position but must stay in their original order relative to each other, and end of day tasks appended to the main list.</p>
<p>I understand how to get a random number from random.randint(), appending to lists, reading files and all that......but the logic is giving me a case of 'hurty brain'. Anyone want to take a crack at this?</p>
<p>EDIT:</p>
<p>Ok I solved it on my own, but at least asking the question got me to picture it in my head. Here's what I did.</p>
<pre><code>random.shuffle(daily)
while projects:
daily.insert(random.randint(0,len(daily)), projects.pop(0))
random.shuffle(endofday)
daily.extend(endofday)
for x in daily: print x
</code></pre>
<p>Thanks for the answers, I'll give ya guys some kudos anyways!</p>
<p>EDIT AGAIN:</p>
<p>Crap I just realized that's not the right answer lol</p>
<p>LAST EDIT I SWEAR:</p>
<pre><code>position = []
random.shuffle(daily)
for x in range(len(projects)):
position.append(random.randint(0,len(daily)+x))
position.sort()
while projects:
daily.insert(position.pop(0), projects.pop(0))
random.shuffle(endofday)
daily.extend(endofday)
for x in daily: print x
</code></pre>
<p>I LIED:</p>
<p>I just thought about what happens when position has duplicate values and lo and behold my first test returned 1,3,2,4 for my projects. I'm going to suck it up and use the answerer's solution lol</p>
<p>OR NOT:</p>
<pre><code>position = []
random.shuffle(daily)
for x in range(len(projects)):
while 1:
pos = random.randint(0,len(daily)+x)
if pos not in position: break
position.append(pos)
position.sort()
while projects:
daily.insert(position.pop(0), projects.pop(0))
random.shuffle(endofday)
daily.extend(endofday)
for x in daily: print x
</code></pre>
http://stackoverflow.com/questions/1078798/how-to-allow-users-to-quit-out-of-long-running-vba-tasks/1080170#10801700Answer by mandroid for How to allow users to quit out of long-running VBA tasks?mandroid2009-07-03T17:06:04Z2009-07-03T17:06:04Z<p>I don't think there is a way to do it like you would want it to work. VBA is a scripting language so when you start your procedure, it's gonna run until it's done. If you had another button somewhere that even WOULD let you click it while the original procedure was running, I'm not sure how you would reference that procedure and stop it.</p>
<p>You could do something like ask the user if they want to contine, but that would make it run even longer.</p>
<p>Also you could have your procedure check for a condition outside of Excel and keep running as long as it's true. Something easy might be check if a certain text file is in a folder. If you wanted the procedure to stop, open the folder and move the file. On your loop's next iteration, it wouldn't see the file and stop running. Cludgy, inefficient, and not elegant, but it would work. You could also have it check a cell, checkbox, radiobutton, basically any control in another Excel sheet running in another instance of Excel. Again cludgy.</p>
<p>CTRL+Break works. Accept it and move on. One neat trick about that though, is that if you password protect your code and they hit CTRL+Break, the debug option is unavailable and they will only get Continue or End.</p>
<p>If this is code that is run frequently, have you considered scripting something that runs it during times when a human is not using the computer? I used to run telnet screen scraping macros that would take hours to go through our widgets, but I always had them run either on a separate computer or when I wasn't there (nights/weekends).</p>
http://stackoverflow.com/questions/1070863/hidden-features-of-vba/1071537#10715377Answer by mandroid for Hidden features of VBAmandroid2009-07-01T21:45:09Z2009-07-01T21:45:09Z<p>VBA itself seems to be a hidden feature. Folks I know who've used Office products for years have no idea it's even a part of the suite.</p>
<p>I've posted this on multiple questions here, but the Object Browser is my secret weapon. If I need to ninja code something real quick, but am not familiar with the dll's, Object Browser saves my life. It makes it much easier to learn the class structures than MSDN.</p>
<p>The Locals Window is great for debugging as well. Put a pause in your code and it will show you all the variables, their names, and their current values and types within the current namespace.</p>
<p>And who could forget our good friend Immediate Window? Not only is it great for Debug.Print standard output, but you can enter in commands into it as well. Need to know what VariableX is?</p>
<pre><code>?VariableX
</code></pre>
<p>Need to know what color that cell is?</p>
<pre><code>?Application.ActiveCell.Interior.Color
</code></pre>
<p>In fact all those windows are great tools to be productive with VBA.</p>
http://stackoverflow.com/questions/1057670/vba-create-a-new-object-using-the-text-name-of-the-class/1070645#10706450Answer by mandroid for VBA - Create a new object using the text name of the classmandroid2009-07-01T18:32:36Z2009-07-01T18:32:36Z<p>You might be able to do it with a collection class or object array. All the objects are in one array. </p>
<p>In your class have a .Name property and when you create an instance of it do this:</p>
<pre><code>Dim CTest() as New CTest
For n = 1 to 10
Redim Preserve CTest(n)
CTest(n).Name = "CTest" & CStr(n)
Next l
</code></pre>
<p>Quick and dirty. The above example would return 10 CTest objects in a single object array. You could also ditch the .Name and just use CTest(n).</p>
http://stackoverflow.com/questions/1065844/what-can-you-do-with-com-activex-in-python2What can you do with COM/ActiveX in Python?mandroid2009-06-30T20:24:44Z2009-07-01T08:08:18Z
<p>I'm thinking that I'm going to have to run monthly reports in Crystal Reports. I've read that you can automate this with COM/ActiveX but I'm not that advanced to understand what this is or what you can even do with it. </p>
<p>I'm fairly familiar with Python and it looks like from what I've read, I might be able to open the report, <em>maybe</em> change some parameters, run it, and export it. </p>
<p>I also do a lot of work with Excel and it looks like you also use COM/ActiveX to interface with it. </p>
<p>Can someone explain how this works and maybe provide a brief example?</p>
http://stackoverflow.com/questions/1065814/is-there-a-way-to-get-full-intellisense-for-vba-in-access-and-excel-2007/1065885#10658852Answer by mandroid for Is there a way to get full IntelliSense for VBA in Access and Excel 2007?mandroid2009-06-30T20:31:52Z2009-06-30T20:31:52Z<p>VBA is a different beast than .NET so I'm not sure how to bring up the IntelliSense quicker. I find I have the same problem you're having in 2003.</p>
<p>I would suggest checking out the Object Browser though. In 2003, it's View > Object Browser, or F2, in the VB Editor. I find it's a great way to explore the class libraries available. It will show you everything that you currently have referenced and once you reference more libraries, they will also show up in the Object Browser.</p>
http://stackoverflow.com/questions/1016816/how-to-detect-bad-design-before-it-consumes-your-entire-application/1041999#10419990Answer by mandroid for How to detect bad design before it consumes your entire application?mandroid2009-06-25T03:19:12Z2009-06-25T03:19:12Z<p>Bad design is not coding for the future. Always assume that someone else is going to take your spot and have to read what you're doing. Also if the code is not easily extensible, or not portable, something is wrong. Your code should be so slick that another programmer could include it almost like a module.</p>
http://stackoverflow.com/questions/1017342/how-to-get-set-unique-id-for-cell-in-excel-via-vba/1041684#10416841Answer by mandroid for How to get/set unique id for cell in Excel via VBAmandroid2009-06-25T00:54:30Z2009-06-25T00:54:30Z<p>The problem is with Application.Caller.</p>
<p>Since you are calling it from a user defined function it is going to pass you an error description. Here is the remark in the Help file.</p>
<p>Remarks </p>
<p>This property returns information about how Visual Basic was called, as shown in the following table.</p>
<p>Caller - Return value </p>
<ul>
<li>A custom function entered in a single cell - A Range object specifying that cell </li>
<li>A custom function that is part of an array formula in a range of cells - A Range object specifying that range of cells</li>
<li>An Auto_Open, Auto_Close, Auto_Activate, or Auto_Deactivate macro - The name of the document as text</li>
<li>A macro set by either the OnDoubleClick or OnEntry property - The name of the chart object identifier or cell reference (if applicable) to which the macro applies</li>
<li><strong>The Macro dialog box (Tools menu), or any caller not described above</strong> - The #REF! error value</li>
</ul>
<p>Since you are calling it from a user defined function, what is happening is Application.Caller is returning a String of an error code to your range variable curCell. It is NOT causing an error which your error handler would pick up. What happens after that is you reference curCell, it's not actually a range anymore. On my machine it tries setting curCell = Range("Error 2023"). Whatever that object is, it might not have an ID attribute anymore and when you try to set it, it's throwing you that object error.</p>
<p>Here's what I would try...</p>
<ol>
<li><p>Try removing your error handler and see if VBA throws up any exceptions on Range(Application.Caller.Address). This won't fix it, but it could point you in the right direction.</p></li>
<li><p>Either through logic or Application.ActiveCell or however you want to do it, reference the cell directly. For example Range("A1") or Cells(1,1). Application.Caller.Address just doesn't seem like a good option to use.</p></li>
<li><p>Try using Option Explicit. This might make the line where you set curCell throw up an error since Range(Application.Caller.Address) doesn't look like it's passing a range back, which is curCell's datatype.</p></li>
</ol>
http://stackoverflow.com/questions/1041509/php-best-random-numbers/1041522#10415221Answer by mandroid for PHP: Best random numbersmandroid2009-06-24T23:44:14Z2009-06-24T23:49:06Z<pre><code><?php
function random_number(){
return 4; // return generated number
// guaranteed to be random
}
?>
</code></pre>
<p>All joking aside, you're getting into a philosophical question of what is "random" or what is "best". Ideally you'd want your random numbers to have few patterns in them over the course of your procedure. Generally system time is used as the seed, but I've also used the previous random number as the seed, the previous random numberth ago as the seed. The problem is, with a powerful enough computer and full knowledge of the hardware running, and generator function, you would be able to predict the entire set of numbers generated. Thus if you had a powerful enough computer (some people put God into this category) that knew all possible variables and functions of the universe you would then be able to predict every event that happened or will happen. Most random number generators are fine on their own but if you know someone who can see the patterns, more likely they are like the guy in Beautiful Mind and you should get them checked into a clinic.</p>
<p><a href="http://xkcd.com/221/" rel="nofollow">By popular demand</a> :D</p>
http://stackoverflow.com/questions/1020453/whats-the-point-of-inheritance-in-python/1041511#10415111Answer by mandroid for What’s the point of inheritance in Python?mandroid2009-06-24T23:40:17Z2009-06-24T23:40:17Z<p>You can get around inheritance in Python and pretty much any other language. It's all about code reuse and code simplification though. </p>
<p>Just a semantic trick, but after building your classes and base classes, you don't even have to know what's possible with your object to see if you can do it. </p>
<p>Say you have d which is a Dog that subclassed Animal.</p>
<pre><code>command = raw_input("What do you want the dog to do?")
if command in dir(d): getattr(d,command)()
</code></pre>
<p>If whatever the user typed in is available, the code will run the proper method. </p>
<p>Using this you can create whatever combination of Mammal/Reptile/Bird hybrid monstrosity you want, and now you can make it say 'Bark!' while flying and sticking out its forked tongue and it will handle it properly! Have fun with it!</p>
http://stackoverflow.com/questions/1413803/pygame-your-style-of-a-simple-pygameComment by mandroid on Pygame - Your style of a simple pygamemandroid2009-09-12T00:16:44Z2009-09-12T00:16:44ZI get what you're saying and apologize for crying homework so early (mid terms aren't for a few months anyways!). I think it would even be fun to try, but unfortunately SO is not the platform for it.http://stackoverflow.com/questions/1413803/pygame-your-style-of-a-simple-pygameComment by mandroid on Pygame - Your style of a simple pygamemandroid2009-09-12T00:10:41Z2009-09-12T00:10:41ZThis isn't a question. You're telling us to do your mid-term.http://stackoverflow.com/questions/1406973/limit-number-of-selections-in-a-multiselect-listbox-in-access/1407945#1407945Comment by mandroid on Limit number of selections in a MultiSelect ListBox in Access?mandroid2009-09-11T18:58:19Z2009-09-11T18:58:19ZHe is correct. ListBox.Selected(ListBox.ListIndex) = False deselects the last item selected. Just tested it out myself. You are correct about ItemsSelected.Count though :)http://stackoverflow.com/questions/1406973/limit-number-of-selections-in-a-multiselect-listbox-in-access/1407945#1407945Comment by mandroid on Limit number of selections in a MultiSelect ListBox in Access?mandroid2009-09-10T23:38:37Z2009-09-10T23:38:37ZThank you. ListBox.Selected(ListBox.ListIndex) was what I was looking for.http://stackoverflow.com/questions/1406973/limit-number-of-selections-in-a-multiselect-listbox-in-access/1407335#1407335Comment by mandroid on Limit number of selections in a MultiSelect ListBox in Access?mandroid2009-09-10T20:05:43Z2009-09-10T20:05:43ZCan you write a very basic example of this?http://stackoverflow.com/questions/1357860/storing-range-attributes-as-an-object/1358227#1358227Comment by mandroid on Storing Range attributes as an object?mandroid2009-08-31T19:00:53Z2009-08-31T19:00:53ZOh man this is a great answer, my only problem is I'm outputing the report through Access VBA so I can't embed a hidden sheet like that.http://stackoverflow.com/questions/1296225/iterate-over-vba-dictionaries/1296250#1296250Comment by mandroid on Iterate over VBA Dictionaries?mandroid2009-08-21T17:44:37Z2009-08-21T17:44:37ZIt actually works in both! Thanks for answer!http://stackoverflow.com/questions/1296225/iterate-over-vba-dictionariesComment by mandroid on Iterate over VBA Dictionaries?mandroid2009-08-19T23:36:03Z2009-08-19T23:36:03ZAccess is pushing information from a recordset to Excel.http://stackoverflow.com/questions/1208322/dictionary-with-classesComment by mandroid on Dictionary with classes?mandroid2009-07-30T18:13:47Z2009-07-30T18:13:47ZWell I'm doing it with menu's, and just having a generic menu wrapper handle what menu to load up. I'm very new to this :-/http://stackoverflow.com/questions/1203036/formatting-text-into-boxes-in-the-python-shell/1203113#1203113Comment by mandroid on Formatting text into boxes in the Python Shellmandroid2009-07-29T21:29:25Z2009-07-29T21:29:25ZThanks! Work's perfectly!http://stackoverflow.com/questions/1175110/python-classes-for-simple-gtd-app/1175154#1175154Comment by mandroid on Python classes for simple GTD appmandroid2009-07-24T00:23:07Z2009-07-24T00:23:07ZThe get_action_list function really ties it all together for me. Didnt know about the <b>class</b> attribute.http://stackoverflow.com/questions/1175110/python-classes-for-simple-gtd-app/1175154#1175154Comment by mandroid on Python classes for simple GTD appmandroid2009-07-24T00:22:17Z2009-07-24T00:22:17ZPerfect! Not only does it work, but I think I understand it lolhttp://stackoverflow.com/questions/1076958/urllib-urlopen-isnt-working-is-there-a-workaround/1152582#1152582Comment by mandroid on urllib.urlopen isn't working. Is there a workaround?mandroid2009-07-20T14:25:52Z2009-07-20T14:25:52ZWhere did you find your proxy config?http://stackoverflow.com/questions/1140893/developing-for-constant-change-in-a-corporate-environment/1140971#1140971Comment by mandroid on Developing for constant change in a corporate environment?mandroid2009-07-17T00:35:52Z2009-07-17T00:35:52ZYes they all apply. I find it difficult to live with this as an acceptable current state.http://stackoverflow.com/questions/1140893/developing-for-constant-change-in-a-corporate-environment/1140944#1140944Comment by mandroid on Developing for constant change in a corporate environment?mandroid2009-07-17T00:24:24Z2009-07-17T00:24:24ZIt is and I apologize for that. I'm looking to see if there are standard practices for change management for corporations people use. Much like GTD practices help manage personal lives, are there methods or technologies that you or your company use?