uitmaurik's Q&A profile
Smart Device Development CCommandbar with cmenu
I try to insert a menu to ccommandbar, then delete a submenu in it. Is there any example on ccommandbar with cmenu m_cmdbar = new CCommandBar(); m_cmdbar->Create( this ); m_cmdbar->InsertMenuBar(IDR_MENU1); HMENU hMenu = m_cmdbar->GetMenu(); CMenu* pMenu = CMenu::FromHandle(hMenu); CMenu* submenu = pMenu->GetSubMenu(0); BOOL i = submenu->DeleteMenu(ID_OPTION_NEW, MF_BYCOMMAND); m_cmdbar->DrawMenuBar( ...Show All
Windows Forms Updating Textboxes when changing rows in Datagrid
I know this was answered somewhere in this board before, but when I looked today I couldn't find it... I have a datagrid and some textboxes all bound to the same typed dataset (generated by VS). When the form open and I fill the dataset&nb ...Show All
Visual FoxPro visionpace website
Anyone else having trouble reaching the visionpace website http://www.visionpace.com I emailed them and got confirmation the web site was down and they were working on getting it back up. It seems to be back up now. :) Thanks Craig. ...Show All
SQL Server padding property RS 2005
Anyone notice that the padding property doesn't seem to work as nice as RS 2000 When I select more than one cell or row, and try to set the padding to 1,1,1,1, by typing the values in the property field (as opposed to expanding it and entering it in each side), it sometimes it gives me the following error: 'RptPaddingConverter' is unable to convert 'Microsoft.ReportDesigner.Drawing.ReportPadding' to 'System.ComponentModel.Design.Serializatio ...Show All
Software Development for Windows Vista A question for state machine workflow
Hi,All, I will use State Machine to bulid a human workflow. One of the police is if one 'state' is not changed in 60 days, the workflow will be terminated. It means if nobody approves or denies the request for 60 days, the workflow will be closed. How can I do this in state machine workflow I tried to put parallel activity and delay in one of branch, handleExternalEvent in another branch in state machine workflow, but it will cause the e ...Show All
Visual Studio Cannot instantiate crystal report in VS 2005 code
I recently installed VS 2005. I am able to create Crystal reports without a problem, and to run them and view them in the CrystalReportViewer. But I cannot instantiate the reports in order to manipulate them at runtime. For example, I have a report called CRTest.rpt which shows perfectly in the viewer. I put the following line of code in a form's code-behind document, and the intellisense gives me a "Type 'CRTest' is not defined" e ...Show All
Windows Forms requested operation cant be performed on file with user-mapped section open
hiya, I get the above error in my winforms app. The complete error is: <error> The file 'uipMyApp.Launcher.exe' cannot be copied to the run directory. The requested operation cannot be performed on a file with a user-mapped section open. <\error> I have&nb ...Show All
Visual Studio What is the future of MDA?
Maybe this post is of topic, but I don't know where to ask. Following by these eWeek articles: IBM to Roll Out Enterprise Patterns , May 16, 2005 IBM Launches Open Plan for Vertical Markets , May 9, 2005 IBM's New Enterprise Patterns Show Similarities to Microsoft's Line , May 9, 2005 IBM also develops a Software Factory concept and interesting question arises: What is the future of MDA How it could be seen in the future software d ...Show All
Software Development for Windows Vista Indexing
My indexing seems to be perpetually stuck on "Waiting for status update...". I added an extension of * which I think might've caused it, but now how can I fix it I can't click on the buttons because they're disabled. I too am having the same problem with beta 2, has anyone found any solutions ...Show All
Visual Basic VB.NET Function that acts like T-SQL COALESCE Function
Is there a VB.Net function/method that acts like T-Sql's COALESCE function COALESCE function Returns the first nonnull expression among its arguments. Syntax COALESCE ( expression [ ,... n ] ) Thanks, Matt Great discussion. The functions you have written are exactly what T-SQL's Coalesce function implements. I actually wrote similar VB code to yours to solve my problem. Than ...Show All
Visual Basic array variable
How can we create an array variable in vb. The size of the array should be defined only during runtime. Please give the sample code. Try this: Console.WriteLine("Enter size of array: ") Dim numElements As Integer = Integer .Parse(Console.ReadLine()) Dim strings(numElements) As String For i As Integer = 0 To strings.Length - 1 strings(i) = "Hello, World" Next For Each s As String In strings Co ...Show All
Windows Forms application to Dial numbers and leave message
Please help guys, I'm been assigned a project to build an application which would basically monitor a customer's appointment date column in an sql db table. When a customers appointment date near, the application would dial the customers phone and leave a pre-recorded message. I have no idea about how to even start this project. I know I'll need a Windows service that's constantly running and checks the dates in the db column. I know ...Show All
.NET Development Where gets Intellisense the descriptions of methods, properties, ...????
Is it possible to add a discription to my methods so the intellisense can display it Intellisense uses the summary tag from the member to display so provided you are using the <summary> tag on your classes, methods, properties, etc. they'll be displayed. Michael Taylor - 10/8/05 ...Show All
Smart Device Development Get available memory
Can someone point me to an example on how to get the memory available on the device running the application using code I need the counter with in my code to find out if I am running out of memory when I am loading some new resources. Thanks If available on your device, toolhelp provides a rich API for information like this, which is useful for debugging, http://msdn.microsoft.com/library/default. ...Show All
Visual Studio Blank MSDN Explorer
I have installed a RC version of VS Team Suite along with full MSDN installation. After completing installation, I'v got " Microsoft Document Explorer cannot be shown because the specified help collection 'ms-help://MS.MSDNQTR.v80.en' is invalid " error when I have tried to access it by doing "Start" -> "All Programs" -> "Microsoft Developer Network" -> "MSDN Library for Visual Studio 2005" When I accessed it from VS ...Show All
