Npotnis's Q&A profile
Visual C++ FindWindow() not finding anything
I'm using FindWindow() in VisualC++ inside a thread before I do a PostMessage() from the thread to the parent window. But, the debugger indicates FindWindow() is not "finding" anything, so the message handler in the parent is never being called. This logic appears in the thread: static char* xxx = "CMh53View"; // HWND zzz = FindWindow(xxx, NULL); // this doesn't work either HWND zzz = ::FindWindow(xxx, NULL); I define ...Show All
Software Development for Windows Vista Jon, quick question on Workflow Designer/workflowVisibilityControl
Jon, I've read your blog http://www.masteringbiztalk.com/blogs/jon/CommentView,guid,79f45d4d-6e5a-437b-a230-d7df13ae18e7.aspx and have developed a workflow monitor using your technique. Excellent job, by the way... But, here's my problem. Once I select a workflow instance from the tracking database, I not only display the workflow image ( using the WorkflowDesigner/WorkflowVisibilityControl technique ) I also display the activities ( just ...Show All
Windows Forms Possible Bug of the TableLayoutPanel?
Try this to duplicate the possible bug: 1. Drag a tablelayoutpanel on a form inside the VS 2005 IDE. 2. Make it two rows and two columns. 3. Put a textbox in the seond column on the seond row 4. Set the textbox's columnspan = 2. Since the default grow behavior of the tablelayoutpanel is to add rows, our textbox will now move to the newly-added row to occupy two columns. Everything is fine, right But wait, we cannot ...Show All
Windows Forms Datagrid
I have tried everything I know to get a textbox in a DataGridTextBoxColumn to word wrap, including setting wordwrap, multiline, alignment and scrollbars. Nothing works, I must be missing something. Can anyone help. Thanks Dave hi, i want to use ...Show All
Windows Forms MaskedTextBox question
I've never used this forum before, so here goes. I needed to force the user to only input numeric values, so I decided to use the maskedtextbox control. This control is supposed to inherit the modified property from the textbox control (or textboxbase control), however, it is not doing anything. The control is bound to a dataset value, so upon the initial load, there is a value in there, and I expect the modified property to be false. However, w ...Show All
Visual FoxPro A report where deleted record aperas diferent
Can I do a report where the record that market Deleted (and Set deleted is OFF) to apears in diferent way (diferent color, italic text, etc) Thank you. oTestRL = NEWOBJECT ("myRL") REPORT FORM test PREVIEW OBJECT oTestRL DEFINE CLASS myRL AS ReportListener ListenerType = 1 isDetail = .F. PROCEDURE BeforeBand (nBa ...Show All
Smart Device Development Pocket pc for example need
pocket pc (hp ipaq 6315) needed sample code. help me ...Show All
Visual Studio Express Editions How to get FK_Book_Person Freign key relation in DataGridView Tasks?
Hi all, I cearted 2 tables: Table "Person" with PersonID, FirstName, LastName, Address, City, State & Phone columns (3 persons in this Table) and Table "Book" with BookID, BookTitle & AuthorID columns (11 books in this Table) for creating a Master/Detail project. In MyDBDataSet.xsd, I had set up the relationship between Person (PersonID has a primary key) and Book (BookID has a freign key). I had MyDBDataSet, Perso ...Show All
Software Development for Windows Vista XPS Document Writer Installation
How do I set up the XPS document writer in feb ctp for windows xp sp2 ...Show All
Microsoft ISV Community Center Forums Needed urgent to download Windows live messenger
It have been offul to get a Beta Messenger 8.0 Y need this program. Please tell me how ando were can I have it. I know were to download it, www.ideas.live.com dont worry u dont need to thank me, u can get everything beta there. ...Show All
Visual Studio ext_cm_UISetup and HKCU\...\PreloadAddinState
I just spent a while trying to figure out why my VS 2003 add-in would not register a command in the Tools menu. I've tracked it down the a problem with the PreloadAddinState registry entry. The default project created by the Add-in Wizard creates a setup project that does nothing to HKCU, either during installation or uninstallation. The problem, as far as I can tell, has to do with uninstallation. If I uninstall the add-in, it ...Show All
.NET Development How does the CLR get loaded?
Hello everyone, I have a general question in the context of .NET frame work. In Java, you invoke the Java runtime by specifying c:> Java XXX.class on the command line. This basically gets the java virtual machine running and it executes the XXX.class by converting it to native machine code. Isn't the CLR in .NET frame work same as the Java virtial machine. If that is the case how does the CLR get invoked, meaning when I run a ...Show All
Smart Device Development Visual Studio 2005 Standard or Professionl
Hi all Coming from J2ME and Symbian worlds, I would like to learn and develop apps in Windows Mobile. What are the differents between Standard and Professional version of Studio 2005 in regards with Windows mobile developments For mobile developments, are these two versions having similar deployment tools Many thanks in advance for the info Both will allow you to develop for WM devices. More on featur ...Show All
Windows Forms Embeded WindowsMediaPlayer has bugs
Summary: The AxWMPLib. AxWindowsMediaPlayer object seems to have bugs and becomes unstable. Question: Is there a bug on the Active X wrapper that is generated by Visual Studio Do anyone know of a workaround Background: I am using an embedded Windows Media Player in a form. I got the player onto the from via the VS Designer. The instance of the player object is of type AxWMPLib. AxWindowsMediaPlayer m_player . When ...Show All
.NET Development regex performance problem
Hi, I have this string, ",(None Active),1.0.0,1074005504,AL2000000,1_271005132951,ALLTEL,ripItem_271005132951,BREW Application,Operater Managed Item,27-OCT-2005 13:30:00;" and I run this regex against it, "([\w\s]+)*,([\w\s]+)*,1\.0\.0,([\w\s]+)*,([\w\s]+)*,([\w\s]+)*,([\w\s]+)*,([\w\s]+)*,([\w\s]+)*,([\w\s]+)*" When ever I run my code, or run the expression in Expresso, the regex engine freezes up or something and doesn't stop searching. Is the ...Show All
