User Max - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T14:51:30Zhttp://stackoverflow.com/feeds/user/32140http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1784442/jquery-qtip-mouseover-browser-crash0jquery qTip mouseover browser crashMax2009-11-23T16:50:52Z2009-11-27T06:55:07Z
<p>Hi,
I am trying to show a tooltip in a mouseover event. The reason I am creating the tooltip on the fly rather than as a precursor (i.e. creating the qtip in document.ready) is that I have generated a list of items that map to a list of objects and I store the hash key for each object in the object list in a hidden element in the "li", so I grab that every time there is a mouseover on an li element.</p>
<p>What is important though is that I can't seem to get the tooltip to display in the mouseover, and I notice that adding the qtip is generating a lot of mouseover events that crash the browser:</p>
<pre><code> $('.result-company-name').mouseover(function() {
var key = $(this).parent().parent().parent().find('.result-company-key').text();
var group = thisview.objGroup.getGroupFromKey(key);
var contacts = group.spotlight().fields.contacts;
if(!contacts)
return;
var qt = $(this).qtip(
{
content: contacts.length,
});
qt.qtip("show");
}
</code></pre>
<p>Any thoughts? Thanks.</p>
http://stackoverflow.com/questions/1784442/jquery-qtip-mouseover-browser-crash/1807165#18071650Answer by Max for jquery qTip mouseover browser crashMax2009-11-27T06:55:07Z2009-11-27T06:55:07Z<p>Fixed by using show: { ready: true } to show the tooltip right away when I created it. Seems to be working fine.</p>
http://stackoverflow.com/questions/1267349/wpf-popup-zorder0WPF Popup ZOrderMax2009-08-12T16:45:19Z2009-11-05T18:29:21Z
<p>Hi,
I am using a WPF Popup, but it popups up above every single window on my desktop, even when my application is minimized. How can I make it stay only on the window it originated? The same thing happens when my window is behind other windows: the popup displays above them all.</p>
<p>"There must be something can be done!"</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/946475/wpf-sort-listview-by-date0WPF Sort ListView by DateMax2009-06-03T18:50:24Z2009-09-24T20:57:44Z
<p>Hi. I have a WPF ListView with a column that has dates in it. I would like a way to custom sort the dates (by date value, rather than string value). Is there a way to do this? Right now I am using list.Items.SortDescriptions to sort using another column, but I would like to change this to sort on the date column instead.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1469355/replacing-dll-in-windows-installer-project2Replacing DLL in Windows Installer ProjectMax2009-09-24T01:12:28Z2009-09-24T04:08:23Z
<p>Hi,
I have a Windows Installer project built for my VSTO add-in. However, I have to run one of my DLLs through an obfuscator at the end, but if I try to build the setup project with the modified DLL, it just rebuilds my original DLL and overwrites the modified one. Is there a way I can build the setup project and use my modified DLL?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1307642/what-is-a-good-way-to-edit-c-on-mac-os-x/1307931#13079314Answer by Max for What is a good way to edit C++ on Mac OS X?Max2009-08-20T18:15:09Z2009-08-20T19:05:36Z<p><a href="http://code.google.com/p/macvim/" rel="nofollow">http://code.google.com/p/macvim/</a></p>
<p>I would dig in and learn vim (or emacs if you really want to).</p>
<p>EDIT: You've got 4+ years ahead of you in CS. I really would suggest learning vim or emacs especially when you are still in university.</p>
http://stackoverflow.com/questions/1301411/detect-when-wpf-listview-scrollbar-is-at-the-bottom/1301500#13015000Answer by Max for Detect when WPF listview scrollbar is at the bottom?Max2009-08-19T17:40:29Z2009-08-19T17:40:29Z<p>I figured it out. It seems I should have been getting events from the ScrollBar (<code><ListView ScrollBar.Scroll="currentTagNotContactsList_Scroll"</code> in XAML) itself, rather than the viewer. This works, but I just have to figure a way to avoid the event handler being called repeatedly once the scrollbar is down. Maybe a timer would be good:</p>
<pre><code>private void currentTagNotContactsList_Scroll(object sender, ScrollEventArgs e) {
ScrollBar sb = e.OriginalSource as ScrollBar;
if (sb.Orientation == Orientation.Horizontal)
return;
if (sb.Value == sb.Maximum) {
Debug.Print("At the bottom of the list!");
}
</code></pre>
<p>}</p>
http://stackoverflow.com/questions/1301411/detect-when-wpf-listview-scrollbar-is-at-the-bottom0Detect when WPF listview scrollbar is at the bottom?Max2009-08-19T17:22:00Z2009-08-19T17:40:29Z
<p>Is there a way to detect if the scrollbar from the ScrollViewer in a ListView has reached the bottom of the virtual scroll space? I would like to detect this to fetch more items from the server to put into the bound ObservableCollection on the listview.</p>
<p>Right now I'm doing this:</p>
<pre><code>private void currentTagNotContactsList_scrollChanged(object sender, ScrollChangedEventArgs e) {
ListView v = (ListView)sender;
if (e.VerticalOffset + e.ViewportHeight == e.ExtentHeight) {
Debug.Print("At the bottom of the list!");
}
}
</code></pre>
<p>Is this even correct? I also need to differentiate between the vertical scrollbar causing the event and the horizontal scrollbar causing it (i.e. I don't want to keep generating calls to the server if you scroll horizontally at the bottom of the box).</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1295195/wpf-trigger-on-textblock-inlines0WPF Trigger on TextBlock InlinesMax2009-08-18T16:58:17Z2009-08-18T17:08:34Z
<p>Hi.</p>
<p>I have a TextBlock that I want to display a user name, and email like this:</p>
<pre><code>Firstname Lastname (Email)
</code></pre>
<p>However, I don't want to put the (Email) part in if the user doesn't have an email on file. I would also like to italicize the email. Normally, I would use a TextBlock and add Runs in for the various parts of the text, but I can't find a way to dynamically change a TextBlock's inlines from XAML.</p>
<p>I've tried this:</p>
<pre><code><TextBlock.Triggers>
<DataTrigger Binding="{Binding Path=HasEmail}" Value="True">
<Setter Property="Inlines" TargetName="contactTagNameEmailTextBlock">
<Setter.Value>
<Run Text="{Binding Path=Firstname}" />
<Run Text="{Binding Path=Lastname}" />
<Run Text="(" />
<Run Text="{Binding Path=Email}" />
<Run Text=")" />
</Setter.Value>
</Setter>
</DataTrigger>
</TextBlock.Triggers>
</code></pre>
<p>But VS complains that the value is set more than once (due to the multiple Run's). How can I get around this? Alternatively, it would be really convenient if I could set a binding on a whole FrameworkElement. For example, if I could just put a placeholder in my Grid where I want to put a custom control I construct in code behind on this bound object, that would be the best.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/289468/scraping-largest-block-of-text-from-html-document1Scraping largest block of text from HTML documentMax2008-11-14T08:04:32Z2009-08-17T10:42:06Z
<p>I am working on an algorithm that will try to pick out, given an HTML file, what it thinks is the parent element that most likely contains the majority of the page's content text.
For example, it would pick the div "content" in the following HTML:</p>
<pre><code><html>
<body>
<div id="header">This is the header we don't care about</div>
<div id="content">This is the <b>Main Page</b> content. it is the
longest block of text in this document and should be chosen as
most likely being the important page content.</div>
</body>
</html>
</code></pre>
<p>I have come up with a few ideas, such as traversing the HTML document tree to its leaves, adding up the length of the text, and only seeing what other text the parent has if the parent gives us more content than the children do.</p>
<p>Has anyone ever tried something like this, or know of an algorithm that can be applied? It doesn't have to be solid, but as long as it can guess a container that contains most of the page content text (for articles or blog posts, for example), that would be awesome.</p>
http://stackoverflow.com/questions/1214587/how-to-register-my-dll-in-excel-2007/1214878#12148780Answer by Max for how to register my dll in excel 2007Max2009-07-31T21:01:38Z2009-07-31T21:01:38Z<p>I would read the MS documentation on this one (uses Windows Installer rather than ClickOnce):
<a href="http://msdn.microsoft.com/en-us/library/cc563937.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/cc563937.aspx</a></p>
<p>The whole point being that your installer needs to add some information to the registry so Excel knows about your addin. Best to just use what's already out there than anything else.</p>
<p>I would also take a look at this SO post if you want to use ClickOnce: <a href="http://stackoverflow.com/questions/654185/creating-a-clickonce-setup-for-vsto-outlook-add-in">http://stackoverflow.com/questions/654185/creating-a-clickonce-setup-for-vsto-outlook-add-in</a></p>
http://stackoverflow.com/questions/1148200/alternatives-to-nativewindow-for-subclassing0Alternatives to NativeWindow for subclassingMax2009-07-18T18:22:05Z2009-07-18T20:48:01Z
<p>I am subclassing a Win32 window in managed code using NativeWindow. However, I'm encountering a bug in either my code or with NativeWindow that throws an exception when the parent is closed. The code I'm using is this:</p>
<pre><code>public partial class ThisAddIn
</code></pre>
<p>{</p>
<pre><code>private VisioWindow visioWindow;
private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
visioWindow = new VisioWindow();
visioWindow.AssignHandle(new IntPtr(this.Application.Window.WindowHandle32));
}
private void ThisAddIn_Shutdown(object sender, System.EventArgs e)
{
visioWindow.ReleaseHandle();
}
#region VSTO generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InternalStartup()
{
this.Startup += new System.EventHandler(ThisAddIn_Startup);
this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown);
}
#endregion
public class VisioWindow : NativeWindow
{
protected override void WndProc(ref Message m)
{
base.WndProc(ref m);
}
}
</code></pre>
<p>}</p>
<p>On exit of the main program, I get this error:</p>
<p>A first chance exception of type 'System.Threading.ThreadAbortException' occurred in System.Windows.Forms.dll
A first chance exception of type 'System.Threading.ThreadAbortException' occurred in System.Windows.Forms.dll</p>
<p>And the "This program has encountered an error" shows up saying the parent encountered an error.</p>
<p>Is there a different way to override the parent's WndProc than using NativeWindow? Or is there a bug in this code that could be worked out?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1089688/wpf-listview-not-rendering-templates0WPF ListView not rendering templatesMax2009-07-06T23:38:13Z2009-07-08T01:39:54Z
<p>Hello,
I have a ListView that I am populating with items from an ObservableCollection. All was working well until I decided to add a second list view to filter some of the items.</p>
<p>What I have setup right now is that the main listview has "ItemGroup" objects as the rendered items, with the item being shown being the first in the item group. Envision a hashtable with buckets and the item being rendered on the list is the item in the group that is the most current.</p>
<p>I have a button that, when clicked, will show another listview with all of the items from that "bucket". However, all I am getting in the new listview is blank entries for the items. I am seeing their item styled background, but the celltemplate appears to be empty.</p>
<p>My only guess is that there is a reference issue because some of the items are already in another ItemSource.</p>
<p>I have attached a screenshot:</p>
<p><img src="http://img17.imageshack.us/img17/5165/issuestackoverflow.png" alt="issue" /></p>
<p>Here is my DataTemplate:</p>
<pre><code> <DataTemplate x:Key="ResultListGroupViewCellTemplate">
<!--<DockPanel>-->
<Grid Width="Auto" Margin="0,5,5,5" ShowGridLines="False">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="30"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition />
</Grid.RowDefinitions>
<StackPanel Grid.Column="0">
<Image Margin="2" Source="{Binding Path=StrengthImage}"
Height="20" Width="20" HorizontalAlignment="Left" />
<TextBlock Text="{Binding Path=AddedDate}" Margin="0,3,0,0"
TextTrimming="CharacterEllipsis" VerticalAlignment="Center" FontFamily="Tahoma" FontSize="10" FontStyle="Italic" HorizontalAlignment="Left" />
</StackPanel>
</Grid>
<!--</DockPanel>-->
</DataTemplate>
</code></pre>
<p>Here is how I setup the databinding (MatchApiObject's are the objects used for binding in the above DataTemplate):</p>
<pre><code>groupViewCollection = new ObservableCollection<MatchApiObject>(m.GroupList.OrderBy(mi => mi.AddedDate));
groupViewListView.DataContext = groupViewCollection;
</code></pre>
<p>And the groupViewListView itself:</p>
<pre><code><ListView Name="groupViewListView" Foreground="#FF333333"
ItemContainerStyle="{StaticResource ListViewMatchItemStyleNotSelected}"
SelectionMode="Single"
ItemsSource="{Binding}"
BorderThickness="0"
SelectionChanged="contactsList_SelectionChanged"
AlternationCount="2"
HorizontalContentAlignment="Stretch"
ScrollViewer.HorizontalScrollBarVisibility="Disabled"
>
<ListView.View>
<GridView x:Name="groupViewListViewGridView" AllowsColumnReorder="False">
<GridView.ColumnHeaderContainerStyle>
<Style TargetType="GridViewColumnHeader">
<Setter Property="Visibility" Value="Collapsed" />
</Style>
</GridView.ColumnHeaderContainerStyle>
<GridViewColumn CellTemplate="{StaticResource StrengthValMatchColumnCellTemplate}" Width="0" Header="Strength" />
<GridViewColumn CellTemplate="{StaticResource DateMatchColumnCellTemplate}" Width="0" Header="Date" />
<!--<GridViewColumn CellTemplateSelector="{StaticResource myMatchListItemTemplateSelector}" Width="Auto" Header="Result" />-->
<GridViewColumn CellTemplate="{StaticResource ResultListGroupViewCellTemplate}" Width="Auto" Header="Result" />
</GridView>
</ListView.View>
</ListView>
</code></pre>
<p>EDIT:
When I debug, the listview has the proper items in the binding (for example, CurrentItem shows the proper object that should be used for binding), but for some reason they aren't showing up.</p>
http://stackoverflow.com/questions/1089688/wpf-listview-not-rendering-templates/1095731#10957310Answer by Max for WPF ListView not rendering templatesMax2009-07-08T01:39:54Z2009-07-08T01:39:54Z<p>I'm stupid. It seems the Width="Auto" on the column with my main data template isn't spreading all the way over. Setting Width=100 showed the part. Maybe it's the parent not spreading all the way over.</p>
http://stackoverflow.com/questions/977779/wpf-textbox-not-accepting-delete-key1WPF TextBox Not Accepting Delete KeyMax2009-06-10T19:48:43Z2009-06-22T22:44:38Z
<p>Hello. I have a WPF application embedded in a Microsoft Outlook 2003 window. Everything is working fine, except none of my TextBox controls accept the backspace key. I've done some research, and the problem exists only when my window is a child of the outlook window and not if it's another window (I injected it into firefox and it works fine, and if I put my wpf UserControl into a dialog window it also works). This seems to be the converse problem that people are reporting (textbox only accepting delete/arrow keys/etc), and this thread was somewhat informative (though did not fix my issue): <a href="http://stackoverflow.com/questions/835878/wpf-textbox-not-accepting-input-when-in-elementhost-in-window-forms">http://stackoverflow.com/questions/835878/wpf-textbox-not-accepting-input-when-in-elementhost-in-window-forms</a></p>
<p>Here is my setup:
I create a WPF UserControl, which I then put in an ElementHost. I put that host into a Windows Forms UserControl, which gets put in another Forms UserControl, which gets put into a NativeWindow (I've tried removing some of the UserControl wrapping, but with no effect). This Native window then becomes a child of the Outlook window and gets placed where I need it to be in Outlook.</p>
<p>Does anyone have any idea? Maybe I need to handle the windows messages differently? I did some research and found out that Outlook gets a WM_COMMAND message when I hit the backspace key, but not when I don't hit anything else. Maybe it's interpreting the backspace key as a menu accelerator or something like that?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/977779/wpf-textbox-not-accepting-delete-key/1029771#10297710Answer by Max for WPF TextBox Not Accepting Delete KeyMax2009-06-22T22:44:38Z2009-06-22T22:44:38Z<p>I found a way to get around this. I extended Outlook's WndProc and listened for the WM_COMMAND. Whenever it came up I tell my WPF UserControl system to send the backspace key to the currently keyboard focused control.</p>
<p>I can't seem to get WM_COMMAND to fire on any other keypress besides backspace so it's working pretty well right now.</p>
http://stackoverflow.com/questions/1013815/parent-window-intercepting-accelerator1Parent window intercepting acceleratorMax2009-06-18T16:43:32Z2009-06-18T20:45:27Z
<p>Hi,
I have a window that I've placed into another application. In this case, I have a custom application that I injected into a Outlook 2003 Window.</p>
<p>I'm having an issue where the parent window (Outlook in this case), is getting WM_COMMAND messages when I press the backspace key in my application. From my limited Win API experience this seems to indicate that the parent thinks the backspace key is an accelerator and is processing it before my application can see it.</p>
<p>I am experimenting with the LoadAccelerators function to try to get Outlooks accelerator table, but I don't know how I can get the table for the parent window.</p>
<p>Any ideas?</p>
<p>EDIT:
Here is the output from spy++ when I hit the backspace key:</p>
<p>WM_COMMAND wNotifyCode: 1 (sent from an accelerator) wID: 1405</p>
<p>I do notice that my textbox gets WM_KEYDOWN's when the backspace key is pressed. Here is the Spy++ line for that message:</p>
<p>P WM_KEYDOWN nVirtKey: VK_BACK cRepeat: 1 ScanOcde:0EfExtended:0fAltDown:0fRepeat:0fUp:0</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/936021/webclient-multi-threaded-response/937267#9372670Answer by Max for WebClient multi-threaded responseMax2009-06-01T23:15:17Z2009-06-01T23:15:17Z<p>I fixed my issue by adding</p>
<pre><code>request.ServicePoint.Expect100Continue = false;
</code></pre>
<p>before making my POST call. What was happening according to wireshark was my HttpWebRequest was expecting 100 continue, but getting 401 not authorized, but it was sending the data anyways after the server response, instead of sending an authorization header. It wasn't happening everytime, but this seems to fix it.</p>
http://stackoverflow.com/questions/936021/webclient-multi-threaded-response0WebClient multi-threaded responseMax2009-06-01T18:14:25Z2009-06-01T23:15:17Z
<p>Hi,
I am performing two parallel requests to my web service using WebClient and multithreading them with ThreadPool. However, I'm having an issue in one of the threads where I get this WebException:</p>
<blockquote>
<p>The server committed a protocol violation. Section=ResponseStatusLine</p>
</blockquote>
<p>I did some research and found that it could be an unsafe header validation issue, but the requests work fine in single thread mode.</p>
<p>So just to clarify, I am firing off two threads. One is doing a GET of a URI, and one is doing a POST of some data to a URI. The first GET works fine, but the POST fails with the WebException above. </p>
<p>Any ideas?
Thanks.</p>
http://stackoverflow.com/questions/754333/why-is-this-webrequest-code-slow/935728#9357282Answer by Max for Why is this WebRequest code slow?Max2009-06-01T17:01:11Z2009-06-01T17:01:11Z<p>I noticed that an HttpWebRequest hangs on the first request. I did some research and what seems to be happening is that the request is configuring or auto-detecting proxies. If you set Proxy = null on the web request object, you might be able to avoid an initial delay.</p>
http://stackoverflow.com/questions/267751/removing-outlook-addin-sidebar-header1Removing Outlook AddIn Sidebar HeaderMax2008-11-06T06:00:43Z2009-05-22T18:18:23Z
<p>Hello,
I am working on a sidebar AddIn for Microsoft Outlook using Visual Studio Tools for Office. However, I can't figure out how to get rid of the header outlook puts on my sidebar when I show it in Outlook. Here is a screenshot showing the header, which contains the text "Sidebar Program": <a href="http://img205.imageshack.us/my.php?image=stackoverflowquestionai8.jpg" rel="nofollow">Sidebar Screenshot</a>.</p>
<p>I would prefer that header not show, along with the border around my sidebar. </p>
<p>I am adding the control to Outlook using (control is an instance of UserControl, either a hosted WPF control or a windows forms control)</p>
<p><code>CustomTaskPane pane = Globals.ThisAddIn.CustomTaskPanes.Add(control, "Sidebar Program");</code></p>
<p>Any ideas? Thanks.</p>
http://stackoverflow.com/questions/267751/removing-outlook-addin-sidebar-header/899235#8992350Answer by Max for Removing Outlook AddIn Sidebar HeaderMax2009-05-22T18:18:23Z2009-05-22T18:18:23Z<p>No way to do this using the Office 2007 CustomTaskPanes. You have to shove your window into outlook like this: <a href="http://www.codeproject.com/KB/office/additional_panel_Outlook.aspx" rel="nofollow">http://www.codeproject.com/KB/office/additional_panel_Outlook.aspx</a></p>
http://stackoverflow.com/questions/899198/wpf-hyperlink-child0WPF Hyperlink ChildMax2009-05-22T18:08:17Z2009-05-22T18:14:24Z
<p>Hi, I have a WPF Hyperlink that I am able to click and get it's NavigateUri property just fine. However, I want to be able to bundle some additional information with the Hyperlink so I can process it in my event handler. This is how it looks right now:</p>
<pre><code><TextBlock Grid.Row="0">
<Hyperlink ToolTip="{Binding Path=Contact.ToolTipPersonalEmail}"
Name="ContactHyperlink" Foreground="#FF333333"
RequestNavigate="HandleContactEmailClicked"
NavigateUri="{Binding Path=Contact.Email}"
>
<TextBlock Text="{Binding Path=Contact.Fullname}" Width="Auto"
HorizontalAlignment="Stretch"
TextTrimming="CharacterEllipsis"/>
<TextBlock Text="{Binding Path=Data1}" Name="data1" Visibility="Collapsed" />
<TextBlock Text="{Binding Path=Data2}" Name="data2" Visibility="Collapsed" />
</Hyperlink>
</TextBlock>
</code></pre>
<p>Basically, in my event handler, I want to be able to access the data inside the two textblocks that have visibility = "Collapsed" (data1 and data2). I liken this to "hidden" data in an HTML form.</p>
<p>I tried messing with the "Inlines" property of Hyperlink but that's not working, and since this is inside a DataTemplate I can't access data1 and data2 by name in my code.</p>
<p>Any ideas?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/890890/debug-program-option-in-windows-71Debug Program option in Windows 7Max2009-05-21T00:27:09Z2009-05-21T00:57:04Z
<p>I noticed that in Windows 7, unlike XP, if a program crashes that I am debugging in Visual Studio 2008, I don't get the option to Debug the program. Rather, it just says that the program crashed and Microsoft is looking for a solution.</p>
<p>Right now, if my program throws an exception, I can't return back to the debugging session in VS 2008, the program just quits. Is there a way around this?</p>
<p>EDIT:
Here is what the old debug window looked like in XP, but I can't get this in Win7 and can't debug my program now:</p>
<p><img src="http://www.scalemax.com/tlsupport/Crash%5Ffiles/image006.jpg" alt="debug window" /></p>
http://stackoverflow.com/questions/890890/debug-program-option-in-windows-7/890947#8909471Answer by Max for Debug Program option in Windows 7Max2009-05-21T00:48:14Z2009-05-21T00:57:04Z<p>I see that if you click to send the error to MS, it finally gives you a Debug option. </p>
<p>Also, if you go into Control Panel->Action Center->Change Action Center Settings->Problem Report Settings and change the radio selection to "Each time a problem occurs, ask me before checking for solutions" you get the Debug option right away.</p>
<p>One big issue I notice is that it won't debug with the debugger that is already attached. It makes you create a new debugger instance in VS 2008 and then complains there is already a debugger attached...</p>
http://stackoverflow.com/questions/277059/direct3d-output-on-a-printer-plotter/277067#2770670Answer by Max for Direct3D Output on a Printer/PlotterMax2008-11-10T04:42:39Z2008-11-10T04:42:39Z<p>I would just take a screenshot of the entire 3d scene, and then print it out.</p>
http://stackoverflow.com/questions/269228/can-anyone-recommend-a-good-sql-parsers/269247#2692470Answer by Max for Can anyone recommend a good SQL parsers?Max2008-11-06T16:04:40Z2008-11-06T16:43:18Z<p>Some databases, such as postgresql, let you query the current schema. So you could go the other direction: instead of trying to take the schema and parse the SQL, you can create SQL statements that query for the fields and tables you require to see if they are in the schema in the database.</p>
<p>Here's an example: <a href="http://www.alberton.info/postgresql_meta_info.html" rel="nofollow">postgresql schema metadata</a></p>
http://stackoverflow.com/questions/977779/wpf-textbox-not-accepting-delete-key/1029771#1029771Comment by Max on WPF TextBox Not Accepting Delete KeyMax2009-11-25T05:34:41Z2009-11-25T05:34:41ZI just send the backspace on WM_COMMAND because it worked fine. However, Ctrl-Z's also fire a backspace, but it is pretty hard to notice since you are deleting characters anyways in the undo. My thought: I got it working, I've got other things to worry about that actually matter and haven't already been solved :)http://stackoverflow.com/questions/1784442/jquery-qtip-mouseover-browser-crash/1784464#1784464Comment by Max on jquery qTip mouseover browser crashMax2009-11-23T17:18:58Z2009-11-23T17:18:58ZIt appears the problem is directly related to the qtip function. I notice that my mouseover function is called once for each mouse over, normally. However, with the qtip function inside, mouseover triggers once, then twice (on one single mouseover), then it loops for ever on the next mouseover, as if qtip is generating mouseover events artificially.http://stackoverflow.com/questions/1784442/jquery-qtip-mouseover-browser-crashComment by Max on jquery qTip mouseover browser crashMax2009-11-23T17:17:16Z2009-11-23T17:17:16ZAbout 15. So far performance has been acceptable on FF and IE.http://stackoverflow.com/questions/178948/filter-list-of-divs-with-javascript/179021#179021Comment by Max on Filter "list" of divs with JavascriptMax2009-11-11T22:09:10Z2009-11-11T22:09:10ZYou are the man! So fast! Thanks.http://stackoverflow.com/questions/1469355/replacing-dll-in-windows-installer-project/1469620#1469620Comment by Max on Replacing DLL in Windows Installer ProjectMax2009-11-03T02:45:11Z2009-11-03T02:45:11ZThis is working a bit. I've got to do more checking to make sure though.http://stackoverflow.com/questions/1469355/replacing-dll-in-windows-installer-project/1469723#1469723Comment by Max on Replacing DLL in Windows Installer ProjectMax2009-10-30T23:33:20Z2009-10-30T23:33:20ZHi HiredMind. For some reason I still can't get that to work. What I did was build my program's DLL (this is still in Debug release mode), and then have a pre build event that compies the obfuscated DLL to the build folder before build (I also did a post build event). For some reason the assembly being packaged is still not obfuscated. Any other ideas?http://stackoverflow.com/questions/1323273/prototype-ajax-not-properly-executing-queryComment by Max on prototype ajax not properly executing queryMax2009-08-24T16:12:07Z2009-08-24T16:12:07ZThis isn't an answer you but you need to do more input sanitizing than you are, especially with the the last SQL query. I would use mysql_real_escape_string <a href="http://us.php.net/manual/en/function.mysql-real-escape-string.php" rel="nofollow">us.php.net/manual/en/…</a> to clean the GET input.http://stackoverflow.com/questions/289468/scraping-largest-block-of-text-from-html-document/1287277#1287277Comment by Max on Scraping largest block of text from HTML documentMax2009-08-21T18:59:09Z2009-08-21T18:59:09Zhuh? what do you want?http://stackoverflow.com/questions/1307642/what-is-a-good-way-to-edit-c-on-mac-os-x/1310580#1310580Comment by Max on What is a good way to edit C++ on Mac OS X?Max2009-08-21T18:55:46Z2009-08-21T18:55:46ZOne thing to think about is that you do have the opportunity to dig in and learn more than usual since you are in school. If you don't have much programming experience, I would go the xcode route, but it would ultimately suit you better to learn how to use gdb using a text editor from the command line. Do yourself a favor and don't limit yourself to an IDE for the rest of your life.http://stackoverflow.com/questions/1295195/wpf-trigger-on-textblock-inlines/1295217#1295217Comment by Max on WPF Trigger on TextBlock InlinesMax2009-08-18T17:37:50Z2009-08-18T17:37:50ZThis works, thanks! WPF is definitely a different way of doing things.http://stackoverflow.com/questions/1295195/wpf-trigger-on-textblock-inlines/1295257#1295257Comment by Max on WPF Trigger on TextBlock InlinesMax2009-08-18T17:14:36Z2009-08-18T17:14:36ZI don't know how to hide part of a format string if one of the parameters is empty. Is it even possible?http://stackoverflow.com/questions/1267349/wpf-popup-zorder/1287123#1287123Comment by Max on WPF Popup ZOrderMax2009-08-18T17:02:36Z2009-08-18T17:02:36ZIt's an inappropriate forrest gump reference!http://stackoverflow.com/questions/1148200/alternatives-to-nativewindow-for-subclassing/1148524#1148524Comment by Max on Alternatives to NativeWindow for subclassingMax2009-07-24T19:57:58Z2009-07-24T19:57:58ZIf I catch WM_CLOSE and then release the handle there, I avoid the thread abort exception from windows forms.
Thanks.http://stackoverflow.com/questions/1148200/alternatives-to-nativewindow-for-subclassing/1148524#1148524Comment by Max on Alternatives to NativeWindow for subclassingMax2009-07-18T23:32:22Z2009-07-18T23:32:22Z
I tried doing just that. I am never getting WM_NCDESTROY from the parent. The last message I get is WM_PARENTNOTIFY. I had been releasing the handle in my shutdown code, I just forgot it here. I put the Thrown and User-Unhandled exceptions on in the Debugging->Exceptions menu, that's what you meant right? I feel like the exception is coming from the parent. I should note that this is the bare code of a larger program I have (but this is a standalone version), and this code is definitely causing the error. Without AssignHandle to the parent, I never get the error. http://stackoverflow.com/questions/1089688/wpf-listview-not-rendering-templatesComment by Max on WPF ListView not rendering templatesMax2009-07-07T22:25:07Z2009-07-07T22:25:07ZAdded some code, thanks guys.