User Fry - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T11:13:15Zhttp://stackoverflow.com/feeds/user/23553http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/951884/in-wx-python-how-would-i-get-the-window-handle-hwnd-to-my-frame-and-set-its-st0In wx.Python, how would I get the window handle (hwnd) to my frame and set its style?Fry2009-06-04T17:11:15Z2009-11-18T20:00:04Z
<p>How can I get a handle to my current window in wx.Python (hWnd) and set it's style to WS_EX_NOPARENTNOTIFY, or can I set this when I initialize the frame?</p>
<p>This question is a result from an answer <a href="http://stackoverflow.com/questions/941470/wxpython-wont-close-frame-with-a-parent-who-is-a-window-handle">here</a></p>
http://stackoverflow.com/questions/941470/wxpython-wont-close-frame-with-a-parent-who-is-a-window-handle1wxPython won't close Frame with a parent who is a window handleFry2009-06-02T19:33:30Z2009-11-10T21:48:13Z
<p>I have a program in Python that gets a window handle via COM from another program (think of the Python program as an addin) I set this window to be the main Python frame's parent so that if the other program minimizes, the python frame will too. The problem is when I go to exit, and try to close or destroy the main frame, the frame.close never completes it's execution (although it does disappear) and the other program refuses to close unless killed with TaskManager.</p>
<p>Here are roughly the steps we take:</p>
<pre><code>if we are started directly, launch other program
if not, we are called from the other program, do nothing
enter main function:
create new wx.App
set other program as frame parent:
Get handle via COM
create a parent using wx.Window_FromHWND
create new frame with handle as parent
show frame
enter main loop
App.onexit:
close frame
frame = None
handle as parent = None
handle = None
</code></pre>
<p>Anybody have any thoughts on this or experience with this sort of thing?</p>
<p>I appreciate any help with this!</p>
<p>[Edit]
This is only the case when I use the handle as a parent, if I just get the handle and close the python program, the other program closes fine</p>
http://stackoverflow.com/questions/941470/wxpython-wont-close-frame-with-a-parent-who-is-a-window-handle/1711471#17114710Answer by Fry for wxPython won't close Frame with a parent who is a window handleFry2009-11-10T21:48:13Z2009-11-10T21:48:13Z<p>My resolution to this is a little bit hacked, and admittedly not the most elegant solution that I've ever come up with - but it works rather effectively...</p>
<p>Basically my steps are to start a thread that polls to see whether the window handle is existent or not. While it's still existent, do nothing. If it no longer exists, kill the python application, allowing the handle (and main application) to be released.</p>
<pre><code>class CheckingThread(threading.Thread):
'''
This class runs a check on Visum to see if it still is running
If Visum closes, this class kills the Traffix application in memory
'''
def run(self):
'''
Checks Visum in 5 seconds intervals to make sure it is still alive.
If not alive, exit application
'''
self.needKill = False
while not self.needKill:
if self.handle is not None:
if not win32gui.IsWindow(self.handle):
os._exit(0)
break
time.sleep(5)
def Kill(self):
'''
Call from Traffix main application that causes application to exit
'''
self.needKill = True
def SetHandle(self, handle):
'''
Sets Handle so thread can check if handle exists.
This must be called before thread is started.
'''
self.handle = handle
</code></pre>
<p>Again, it feels a little hackish, but I don't really see another way around it. If anybody else has better resolutions, please post. </p>
http://stackoverflow.com/questions/1690331/compile-a-pyw-file-so-it-can-be-run-like-pyc-without-console1Compile a .pyw file so it can be run like .pyc without consoleFry2009-11-06T20:49:55Z2009-11-07T12:31:21Z
<p>Hi All,</p>
<p>I'm trying to compile a pyw file into a pyc without console. When I try a straight compile with it, the result is a pywc file, but it seems that pythonw.exe doesn't register that extension as one of it's files like python.exe does for a pyc.</p>
<p>The result of course is that it has no double click handler when you try to just execute, or if you change the extension to pyc, you get the console.</p>
<p>Does anybody know a way around this issue? Something to the affect of a .pyc with no console?</p>
<p>Thanks!</p>
<p>Update:
Since running this through execfile or by double clicking on the icon in windows soesn't generate a compiled version of this file, I start python in command line, then :</p>
<pre><code>import py_compile
py_compile.compile("[FileName].pyw")
</code></pre>
<p>This is where I get the .pywc extension from.
My Python version is 2.5.4</p>
http://stackoverflow.com/questions/1521670/close-python-when-parent-is-closed0Close Python when Parent is closedFry2009-10-05T18:28:55Z2009-10-07T08:10:11Z
<p>I have a Python program (PP) that loads another Program(AP) via COM, gets its window handle and sets it to be the PP parent.</p>
<p>This works pretty well except that I can't control that AP still has their [X] button available in the top left corner. Since this is a pretty obvious place for the user to close when they are done with the program, I tried this and it left the PP in the Task Manager running, but not visible with no possible way to kill it other than through Task Manager. Any ideas on how to handle this? I expect it to be rather Common that the user closes in this manner.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1430318/add-control-to-asp-page-and-position-in-c0Add control to Asp page and position in C# Fry2009-09-16T00:36:56Z2009-09-16T01:07:27Z
<p>Hi All,</p>
<p>I have a varying number of links that I need to add to a webpage using C#. A little background may help so, the ultimate goal of this is to have the user select an area of a map and choose the data they would like to get from this map. After the data reports have been generated, a link pops up for each area selected that is a download link for the report.</p>
<p>I can add new links fine, but I'd like to keep things centered on the page like the main control, but when I add a new hyperlink it keeps adding it to the left side. I have my page style set to centered and I don't see the option in a hyperlink object to set it's position. Is there any other way I can do this?</p>
<p>Forgive me but it's my first C# web app.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/168550/how-can-i-display-a-tooltip-over-a-button-using-winforms/168555#168555-4Answer by Fry for How can I display a tooltip over a button using Winforms?Fry2008-10-03T19:39:43Z2009-09-16T00:23:49Z<p>Sure, just handle the mousehover event and tell it to display a tool tip.
t is a tooltip defined either in the globals or in the constructor using:</p>
<pre><code>ToolTip t = new ToolTip();
</code></pre>
<p>then the event handler:</p>
<pre><code>private void control_MouseHover(object sender, EventArgs e)
{
t.Show("Text", (Control)sender);
}
</code></pre>
http://stackoverflow.com/questions/1230630/how-do-you-force-refresh-of-a-wx-panel0How do you force refresh of a wx.Panel?Fry2009-08-05T00:40:39Z2009-08-05T07:41:06Z
<p>Hi All,</p>
<p>I am trying to modify the controls of a Panel, have it update, then continue on with code execution. The problem seems to be that the Panel is waiting for Idle before it will refresh itself. I've tried refresh of course as well as GetSizer().Layout() and even sent a resize event to the frame using the SendSizeEvent() method, but to no avail. I'm at a loss here, I find it difficult to believe there is no way to force a redrawing of this panel. Here is the code that changes the controls:</p>
<pre><code>def HideButtons(self):
self.newButton.Show(False)
self.openButton.Show(False)
self.exitButton.Show(False)
self.buttonSizer.Detach(self.newButton)
self.buttonSizer.Detach(self.openButton)
self.buttonSizer.Detach(self.exitButton)
loadingLabel = wx.StaticText(self.splashImage, wx.ID_ANY, "Loading...", style=wx.ALIGN_LEFT)
loadingLabel.SetBackgroundColour(wx.WHITE)
self.buttonSizer.Add(loadingLabel)
self.GetSizer().Layout()
self.splashImage.Refresh()
</code></pre>
<p>Has anybody else encountered anything like this? And how did you resolve it if so?</p>
http://stackoverflow.com/questions/1229525/opening-a-wx-frame-in-python-via-a-new-thread0Opening a wx.Frame in Python via a new threadFry2009-08-04T19:42:49Z2009-08-04T20:40:48Z
<p>I have a frame that exists as a start up screen for the user to make a selection before the main program starts. After the user makes a selection I need the screen to stay up as a sort of splash screen until the main program finishes loading in back.</p>
<p>I've done this by creating an application and starting a thread:</p>
<pre><code>class App(wx.App):
'''
Creates the main frame and displays it
Returns true if successful
'''
def OnInit(self):
try:
'''
Initialization
'''
self.newFile = False
self.fileName = ""
self.splashThread = Splash.SplashThread(logging, self)
self.splashThread.start()
#...More to the class
</code></pre>
<p>which launches a frame:</p>
<pre><code>class SplashThread(threading.Thread):
def __init__(self, logger, app):
threading.Thread.__init__(self)
self.logger = logger
self.app = app
def run(self):
frame = Frame(self.logger, self.app)
frame.Show()
</code></pre>
<p>The app value is needed as it contains the callback which allows the main program to continue when the user makes their selection. The problem is that the startup screen only flashes for a millisecond then goes away, not allowing the user to make a selection and blocking the rest of start up.</p>
<p>Any ideas? Thanks in advance!</p>
http://stackoverflow.com/questions/175955/import-text-file-into-generic-database-using-sql1Import Text File into generic Database using SQLFry2008-10-06T20:03:15Z2009-07-23T18:57:19Z
<p>Hi,</p>
<p>I am currently trying to import a semi-colon delimited text file into a database in c# using OleDb where I don't know the type (SQL Server, Access, Oracle, MySQL, postgreSQL, etc.) Currently I'm reading in the file as a database using the Jet text reader then creating a prepared insert statement, populating the fields, then commiting at the end. While that works, it's slow and for millions of rows, it takes way too long.</p>
<p>So my question: Does anybody have any other thoughts on how to best import a text file to a generic database, or comments on my approaches that will lead to a faster import?</p>
<p>I cannot use 3rd party libraries or software to do this as it is part of a larger project</p>
http://stackoverflow.com/questions/260125/how-to-use-wide-string-literals-in-c-without-putting-l-in-front-of-each-one2How to use wide string literals in c++ without putting L in front of each oneFry2008-11-03T21:55:10Z2009-07-19T11:05:43Z
<p>You'll have to forgive my ignorance, but I'm not used to using wide character sets in c++, but is there a way that I can use wide string literals in c++ without putting an L in front of each literal?</p>
<p>If so, how?</p>
http://stackoverflow.com/questions/941498/c-what-is-the-best-way-to-handle-mutliple-view-tab-ish-gui-elements/941522#9415220Answer by Fry for [C#] What is the best way to handle mutliple view/tab-ish GUI elementsFry2009-06-02T19:44:44Z2009-06-02T19:44:44Z<p>Could you just create a panel for each object and have a dictionary associate the object type and the panel?</p>
<p>You could just tell the panel to bring to front if they are all the same size, or set all Panels.Visible to be false, and just set the one you need to be true.</p>
http://stackoverflow.com/questions/179921/how-do-you-check-if-a-folder-is-accessible-over-a-network-in-c0How do you check if a folder is accessible over a network in c#Fry2008-10-07T19:18:18Z2009-05-25T07:00:02Z
<p>I need to know if a folder is accessible to other computers on the network, so the first part of this is checking if the folder is shared accross the network. As the folder I'm checking may be a sub-folder, I can't just iterate across shared folders on the computer to check if one of them points to my folder unless WMI allows me to check this?</p>
<p>Ideas?</p>
<p>I guess I should specify a bit more, I don't need to know if this is a shared folder, I need to know if this folder is shared. I.e. More than likely, this folder itself will not be a "shared folder" but will be a subdirectory under a shared folder.</p>
http://stackoverflow.com/questions/898654/slowly-loading-forms/898674#8986740Answer by Fry for slowly loading formsFry2009-05-22T16:10:54Z2009-05-22T16:10:54Z<p>Also, you can just change the cursor to a wait cursor at the beginning of init and back to standard at the end to let the user know something is happening, but it's better to use threading so that the (main form?) doesn't lock up. Nothing Says "I froze" like a locked up main screen. If it is a main form, maybe a splash screen that says "Loading..." or something to that.</p>
http://stackoverflow.com/questions/885188/specific-time-range-query-in-sql-server2Specific Time Range Query in SQL ServerFry2009-05-19T21:43:22Z2009-05-20T01:27:20Z
<p>Hi All,</p>
<p>I'm trying to query a specific range of time:</p>
<ul>
<li>i.e. 3/1/2009 - 3/31/2009 </li>
<li>between 6AM-10PM each day </li>
<li>Tues/Wed/Thurs only</li>
</ul>
<p>I've seen that you can get data for a particular range, but only for start to end and this is quite a bit more specific. I didn't see any SQL Server commands that would directly help me on this, so does anybody else have any thoughts on how you would form this?</p>
<p>I've seen <a href="http://stackoverflow.com/questions/357244/sql-server-2005-date-time-stamp-query">this</a>, but I don't think it's nearly specific enough for this range.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/885268/object-reference-not-set-to-an-instance-of-an-object/885358#8853580Answer by Fry for Object reference not set to an instance of an object?Fry2009-05-19T22:35:26Z2009-05-19T22:35:26Z<p>Reading the "Fullpath = TempPath + FileName", it seems that you are trying to pass a physical address in as a virtual address?</p>
<p>Is this the case? Can you give us what you are passing in as input to this function if it's not? If it is the physical path, there shouldn't be a need to use MapPath.</p>
<p>See <a href="http://msdn.microsoft.com/en-us/library/system.web.httpserverutility.mappath.aspx" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/884686/to-return-a-double-do-i-have-to-cast-to-double-even-if-types-are-double-in-c/884722#8847222Answer by Fry for To return a double, do I have to cast to double even if types are double in c#?Fry2009-05-19T19:56:17Z2009-05-19T22:18:09Z<p>Hmm - The way that I've done this for the integer division issue is to do something like:</p>
<pre><code>double result = a - b + 1/12.0 + 3/12.0
</code></pre>
<p>Aside from those though, no casting would be needed.</p>
http://stackoverflow.com/questions/884661/slow-query-when-using-order-by/884681#8846810Answer by Fry for Slow query when using ORDER BY Fry2009-05-19T19:47:24Z2009-05-19T19:47:24Z<p>Have you updated the statistics on your database? I ran into something similar on mine where I had 2 identical queries where the only difference was a capital letter and one returned in 1/2 a second and the other took nearly 5 minutes. Updating the statistics resolved the issue</p>
http://stackoverflow.com/questions/871115/what-is-the-best-and-fastest-way-to-write-into-excel-file-using-c/871174#8711743Answer by Fry for What is the best and fastest way to write into Excel file using C#?Fry2009-05-15T22:47:56Z2009-05-15T22:47:56Z<p>If you can COM into excel, you can query directly from excel via COM, or create an array of data and drop it directly into a range equal to the size of your array. Even though excel isn't great for small COM calls, it works rather well with few large COM calls :)</p>
<pre><code>DataSet ds = new DataSet();
da.Fill(ds);
int width = ds.Tables[0].Columns.Count;
int height = ds.Tables[0].Rows.Count;
object[,] retList = new object[height, width];
for (int i = 0; i < height; i++)
{
DataRow r = ds.Tables[0].Rows[i];
for (int j = 0; j < width; j++)
retList[i, j] = r.ItemArray[j];
}
Excel.Range range = mWs.get_Range(destination, mWs.Cells[destination.Row + height - 1, destination.Column + width - 1]);
range.set_Value(Missing.Value, retList);
System.Runtime.InteropServices.Marshal.ReleaseComObject(range);
range = null;
</code></pre>
<p>This is an example of getting data and inserting it as an array into excel in one COM call</p>
http://stackoverflow.com/questions/870729/this-reference-best-practices/870763#8707630Answer by Fry for "this" reference best-practicesFry2009-05-15T20:39:28Z2009-05-15T20:39:28Z<p>I usually use this if I create a derived class, I usually only use this. to reference things in the parent, otherwise I reference the global variables for the class normally (i.e. without this.)</p>
http://stackoverflow.com/questions/869520/c-problem-with-regex/869546#8695460Answer by Fry for c# problem with regexFry2009-05-15T16:02:42Z2009-05-15T16:02:42Z<p>So is there no whitespace/new lines in the web page?</p>
http://stackoverflow.com/questions/864883/how-do-i-write-a-float-list-of-lists-to-file-in-python3How do I write a float list of lists to file in PythonFry2009-05-14T18:16:54Z2009-05-15T08:04:49Z
<p>I need to write a series of matrices out to a plain text file from python. All my matricies are in float format so the simple
file.write() and file.writelines()</p>
<p>do not work. Is there a conversion method I can employ that doesn't have me looping through all the lists (matrix = list of lists in my case) converting the individual values?</p>
<p>I guess I should clarify, that it needn't look like a matrix, just the associated values in an easy to parse list, as I will be reading in later. All on one line may actually make this easier, but thanks to all for your thouhts!</p>
http://stackoverflow.com/questions/864640/how-long-does-it-take-to-learn-java-for-a-complete-newbie/864690#8646900Answer by Fry for How Long Does it Take to Learn Java for a Complete Newbie?Fry2009-05-14T17:36:15Z2009-05-14T17:36:15Z<p>Doable, yes. But you'd missing out on a lot of theory behind programming so even though you may know the language well enough to code in it, you won't know how to program well. I'd suggest picking up a few beginner's books on object oriented design while you're at it. The best (for me at least) teaching and helping tools for a new language are tutorials and forums like this (don't forget to google first though, there are a lot of beginner questions answered with a simple search).</p>
<p>Good luck!</p>
http://stackoverflow.com/questions/778372/vs-2008-intellisense-hanging-on-right-click/778428#7784281Answer by Fry for VS 2008 Intellisense hanging on right clickFry2009-04-22T17:54:51Z2009-04-22T17:54:51Z<p>Updating intellisense on larger projects just kills productivity - Visual Assist is a much better replacement. I think though that intellisense is also linked to the way VS parses the code for the designer, so a more temporary solution to test with is to replace your .ncb file with a folder called [solution].ncb</p>
<p>I highly recommend Visual Assist though</p>
http://stackoverflow.com/questions/611592/how-do-i-expand-a-wx-sizer-of-a-wx-panel-when-the-panel-is-expanded-inside-anothe0How do I expand a wx.sizer of a wx.panel when the panel is expanded inside another wx.sizer?Fry2009-03-04T17:19:30Z2009-03-10T17:00:19Z
<p>I have a wx.Panel that has a GridBagSizer associated with it. This panel is placed inside another Sizer (BoxSizer), whose add has the expand flag - meaning that the panel takes up the full width of the sizer, which is great. ...But the panel's internal sizer does not fill the panel now.</p>
<p>I've tried setting the internal sizer's flag to wx.Expand|wx.ALL when I add it's components, but that didn't work. Anybody know how to make sure the sizer stays the same width as it's panel when the panel is expanded?</p>
<p><em>Edit : My code that creates the panel containing the GridBagSizer:</em></p>
<pre><code>def getNewButton(self, bmp1, bmp2, label):
panel = wx.Panel(self.frame, -1, pos=(0,0), style=wx.BORDER_THEME)
sizer = wx.GridBagSizer(0, 1)
#The button
b = buttons.GenBitmapToggleButton(panel, wx.ID_ANY, None)
self.frame.Bind(wx.EVT_BUTTON, self.OnToggleButton, b)
b.Bind(wx.EVT_ENTER_WINDOW, self.OnMouseEnter)
b.Bind(wx.EVT_LEAVE_WINDOW, self.OnMouseLeave)
mask = wx.Mask(bmp1, wx.BLUE)
bmp1.SetMask(mask)
b.SetBitmapLabel(bmp1)
mask = wx.Mask(bmp2, wx.BLUE)
bmp2.SetMask(mask)
b.SetBitmapSelected(bmp2)
b.SetToggle(False)
b.SetInitialSize(size = wx.Size(30, 30))
b.SetBezelWidth(0)
#The Label Button
l1 = buttons.GenButton(panel, wx.ID_ANY, label, style=wx.BORDER_NONE)
self.frame.Bind(wx.EVT_BUTTON, self.OnFlatButton, l1)
l1.Bind(wx.EVT_ENTER_WINDOW, self.OnMouseEnter)
l1.Bind(wx.EVT_LEAVE_WINDOW, self.OnNonToggleMouseLeave)
sizer.Add(b, wx.GBPosition(0,0))
sizer.Add(l1, wx.GBPosition(0,1), flag=wx.EXPAND)
panel.SetSizer(sizer)
sizer.SetSizeHints(panel)
self.buttonsList.append(ImgToggleButtonComponents(b,panel,l1))
return panel
</code></pre>
http://stackoverflow.com/questions/611592/how-do-i-expand-a-wx-sizer-of-a-wx-panel-when-the-panel-is-expanded-inside-anothe/631290#6312900Answer by Fry for How do I expand a wx.sizer of a wx.panel when the panel is expanded inside another wx.sizer?Fry2009-03-10T17:00:19Z2009-03-10T17:00:19Z<p>Another possible way to do this is with a Box Sizer:</p>
<pre><code>sizer = wx.BoxSizer(wx.HORIZONTAL)
sizer.Add(item1)
sizer.Add(item2, proportion=1, flag=wx.EXPAND)
</code></pre>
<p>Both ways worked! Thanks :)</p>
http://stackoverflow.com/questions/615955/under-c-how-much-of-a-performance-hit-is-a-try-throw-and-catch-block/615999#6159991Answer by Fry for Under C# how much of a performance hit is a try, throw and catch block Fry2009-03-05T18:33:17Z2009-03-05T18:33:17Z<p>Try / Catch / Throw are slow - a better implementation would be to check the value before catching it, but if you absolutly can't continue, you are better off throwing and catching only when it counts. Checking and logging is more efficient otherwise.</p>
http://stackoverflow.com/questions/603831/how-would-you-draw-cell-borders-in-a-wxpython-flexgridsizer1How would you draw cell borders in a wxPython FlexGridSizer?Fry2009-03-02T20:16:51Z2009-03-02T22:17:12Z
<p>I'm new to Python, but I can't really find much decent documentation on the web, so I'm hoping somebody will know the answer or where the answer is...</p>
<p>I have a wxPython FlexGridSizer bound to a panel that contains other FlexGridSizers, I'd like to display some cell borders on the main FlexGridSizer, so each section looks encapsulated but I can't find any documentation to do it.</p>
<p>I tried using a panel to add to my main FlexGridView, with the panel's border on, but the panel's border doesn't always fill up the entire FlexGridView cell, so it looks choppy and uneven.</p>
<p>Does anybody know how to properly simulate this?</p>
http://stackoverflow.com/questions/571281/dde-server-window-application-error0DDE Server Window - Application ErrorFry2009-02-20T21:22:42Z2009-02-20T21:50:46Z
<p>I have a c# application that opens up a COM instance of excel and dumps some data from an Access 2000 database via oleDB onto the sheet then releases the excel object, but I get a window after I close the program with the title bar: </p>
<pre><code>DDE Server Error: [applicationName.exe] - Application Error
</code></pre>
<p>I think I've narrowed this down to be an issue with closing excel before I close my program. Figuring this was an issue with the com objects I created, I went through my code and tried to find every place where I stored an Excel COM object and make sure it was released before setting it to null. I ignored ones I didn't store e.g.</p>
<pre><code>excelSheet.GetRange("A1", "A1).Value2 = "Hello";
</code></pre>
<p>I still recieve the error and I think I've released all my stored COM objects, is there another reason I might still be getting this error?</p>
http://stackoverflow.com/questions/570582/move-a-picturebox-with-mouse/570845#5708451Answer by Fry for Move a PictureBox with mouseFry2009-02-20T19:10:02Z2009-02-20T19:10:02Z<p>Also don't forget to set your form to double buffered, that might help with the flickering, but for the actual positioning of it, I like Daniel L's suggestion</p>
http://stackoverflow.com/questions/1690331/compile-a-pyw-file-so-it-can-be-run-like-pyc-without-consoleComment by Fry on Compile a .pyw file so it can be run like .pyc without consoleFry2009-11-06T22:08:51Z2009-11-06T22:08:51Zah, so you are suggesting to wrap my top pyw file in a wrapper that just calls top. Can you put that in the form of an answer? :)http://stackoverflow.com/questions/1690331/compile-a-pyw-file-so-it-can-be-run-like-pyc-without-console/1690516#1690516Comment by Fry on Compile a .pyw file so it can be run like .pyc without consoleFry2009-11-06T21:44:42Z2009-11-06T21:44:42ZHi Todd, that is the case, I'd rather edit the file handling on user's machines as little as possible.http://stackoverflow.com/questions/1690331/compile-a-pyw-file-so-it-can-be-run-like-pyc-without-consoleComment by Fry on Compile a .pyw file so it can be run like .pyc without consoleFry2009-11-06T21:43:37Z2009-11-06T21:43:37ZWell, In essence, that's what I did, but when it's has a pyc extension, I get the console window which is what I'm trying to avoid.http://stackoverflow.com/questions/1690331/compile-a-pyw-file-so-it-can-be-run-like-pyc-without-console/1690516#1690516Comment by Fry on Compile a .pyw file so it can be run like .pyc without consoleFry2009-11-06T21:22:33Z2009-11-06T21:22:33ZThis may be useful if I can't find an alternative, but I really don't want to have to set the associations.http://stackoverflow.com/questions/1690331/compile-a-pyw-file-so-it-can-be-run-like-pyc-without-consoleComment by Fry on Compile a .pyw file so it can be run like .pyc without consoleFry2009-11-06T21:20:54Z2009-11-06T21:20:54ZUpdated with additional informationhttp://stackoverflow.com/questions/1675445/the-status-code-returned-from-the-server-was-413/1675470#1675470Comment by Fry on The status code returned from the server was 413Fry2009-11-04T17:58:43Z2009-11-04T17:58:43Z+1 for patience and helpfulness!http://stackoverflow.com/questions/1673511/c-sharp-progrmming/1673537#1673537Comment by Fry on c sharp progrmmingFry2009-11-04T15:30:25Z2009-11-04T15:30:25ZIn Winforms this is possible, I needed to do something similar to this years agohttp://stackoverflow.com/questions/1521670/close-python-when-parent-is-closed/1522240#1522240Comment by Fry on Close Python when Parent is closedFry2009-10-07T16:57:33Z2009-10-07T16:57:33ZThanks for the advice, I polled the api instead of AP and that seems to work very well. Thanks for starting me down a working path :)http://stackoverflow.com/questions/1521670/close-python-when-parent-is-closed/1530203#1530203Comment by Fry on Close Python when Parent is closedFry2009-10-07T16:56:35Z2009-10-07T16:56:35ZWith this method I was able to detect whether the window was open without directly asking the AP. I still have to actually kill the app, but I think that will be the easy part. Thanks!http://stackoverflow.com/questions/1521670/close-python-when-parent-is-closed/1522240#1522240Comment by Fry on Close Python when Parent is closedFry2009-10-05T23:29:56Z2009-10-05T23:29:56ZIt's kinda hard to say; communication between the two is pretty much a one way street. PP tells AP what to do and asks for information back at the appropriate time, but AP is a GUI so Polls might get blocked through COM, so I'm not sure I want to do that constantly. In python if a parent is closed, should that trigger an event with the child?http://stackoverflow.com/questions/1430318/add-control-to-asp-page-and-position-in-c/1430343#1430343Comment by Fry on Add control to Asp page and position in C# Fry2009-09-16T16:13:43Z2009-09-16T16:13:43ZPerfect! Thanks :)http://stackoverflow.com/questions/1430318/add-control-to-asp-page-and-position-in-cComment by Fry on Add control to Asp page and position in C# Fry2009-09-16T00:53:59Z2009-09-16T00:53:59Zre:edit I don't think that saying Hi or thank you deterred in any way from the question so I reverted. Thanks for your interest though!http://stackoverflow.com/questions/168550/how-can-i-display-a-tooltip-over-a-button-using-winforms/168555#168555Comment by Fry on How can I display a tooltip over a button using Winforms?Fry2009-09-16T00:29:03Z2009-09-16T00:29:03Z@ julianz Actually, this works well for having specialized tooltips which can be dynamic if you want depending on state (minus of course the creation - forgive me, I was just trying to fit it all into one block.) As for other responses on a similar vein... yshuditelu and Dylan Beattie were similar albeit without the instantiation.http://stackoverflow.com/questions/168550/how-can-i-display-a-tooltip-over-a-button-using-winforms/168555#168555Comment by Fry on How can I display a tooltip over a button using Winforms?Fry2009-09-16T00:19:43Z2009-09-16T00:19:43ZI guess the explanation doesn't match the code, Where in the explanation I said do display it and in the code I initialized it as well. My bad. :Phttp://stackoverflow.com/questions/1230630/how-do-you-force-refresh-of-a-wx-panel/1230736#1230736Comment by Fry on How do you force refresh of a wx.Panel?Fry2009-08-05T16:28:31Z2009-08-05T16:28:31ZIt's the hiding and showing part that was not executing