Erik Campo's Q&A profile
Software Development for Windows Vista Problem Using ifElseactivity in an Embedded workflow designer
I'm trying to use a ifElse activity in an embedded workflow designer ( Workflow Designer Control Example downloaded from here: http://www.windowsworkflow.net/Downloads/Examples/Workflow%20Designer%20Control%20-%202005-09-24.exe ) I added a IfElse activity and then select one of the branches. In the property window I select a System.Workflow.Activities.Rules.RuleConditionReference Condition and then when I try to edit the Name property of that condition (pressing the "..." button) I receive this error: Value cannot be null. Parameter name: activity If I do exactly the same in Visual Studio, I get a Select Rule Condition Form I ...Show All
Visual C++ Running an .exe file compiled in VC++ 2005 on a different computer
Hello, I've got a question regarding how to run a program compiled using VC++ 2005 on a different computer. Although I have seen the thread by suda5181 and the answer by RonaldLaeremans (http://forums.microsoft.com/msdn/ShowPost.aspx PostID=23371), I can't find the redistribution pack for the current Visual C++. I have found a page with the Redistribution pack for Visual C++ 6.0 (http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnvc60/html/redistribvc6.asp) but I don't know if it'll work. With Thanks, Gal Beniamini. ...Show All
.NET Development Can a dll built in vs2005 .NET 2.0 be used within vs2003 .NET 1.1
will vs2003 .NET 1.1 be able to use a dll built in vs2005 .NET 2.0 Cheers, Craig I've tried once to create a 2.0 assembly which I tried to use from a 1.1 project. I tried to use the configuration settings described in the document you mention James. Finally, there was no way I could add a reference of the 2.0 assembly to the 1.1 project. VS2003 kept throwing an exception. ...Show All
SQL Server ClickOnce path names are too long for SQL Server Express identifiers
I'm posting this in the ClickOnce forums as well... My application doesn't include the .mdf and .ldf files, rather it creates the database the first time the application is run using a script that is included in the build. I want to create the database in the ClickOnce data directory. The problem I'm having is that SQL Server complains when I execute the CREATE DATABASE command as follows: CREATE DATABASE [C:\Documents and Settings\xxxxx\Local Settings\Apps\2.0\Data\PQCK6EXN.5KG\AW630RPT.VGO\ifie..tion_014028c05b1d6ec6_0001.0002_0e86966f19503c89\DataiFieldMobile.mdf] ON PRIMARY ( NAME = N'myDatabase', FILENAME = N'C:\Documents and ...Show All
SQL Server Remove "top of report" when published via ASP call
Sorry the subject is a little vague! I am issuing reports via ASP pages. I inherited this setup from my predecessor, who has a cycling "Sales Board" that calls reporting services pages from a script. All other pages do not have the light colored band across the top in which you can add parameters, click the "View Report" button etc. I have now created a new report and this band is there - can anyone please tell me how I can get rid of it for the purposes of display The parameters are fed into the report from the ASP page. Thanks in advance I meant the parameters bar! But I think I'v ...Show All
Windows Forms Iterate through all tab pages in tab control - how to hide this from user
RDD wrote: * I have a form with one TabControl with 2 TabPages, with one TextBox on each TabPage . Result of running this Form: * The TextBox of the visible TabPage gets bound very well, and displays the property value. BUT, the TextBox of the second TabPage remains blank. Can somebody provide with a solution Mark Rideout wrote: Just to let you know -- I'm investigating this. The problem is that the controls on the other tab pages are not created, so they are not databound yet. Windows Forms does this to ensure that controls currently not visible are not initialized. This keep ...Show All
Visual C++ Where is stl.NET in the August CTP?
Where is stl.NET in the August CTP Thanks, hdp. I believe stl.net was cut from VC2005 and currently there is a plan to release via the web. See the below past posts for more details: http://forums.microsoft.com/msdn/ShowPost.aspx PostID=5509 http://forums.microsoft.com/msdn/ShowPost.aspx PostID=3384 http://forums.microsoft.com/msdn/ShowPost.aspx PostID=4424 Thanks, Ayman Shoukry VC++ Team ...Show All
Windows Forms How to Launch a new Webbrowser from a smart client. -- found answer
I have a very logical and simple problem : I am creating a smart client Application for my website. (e.g http://Dwaal.net/SomeCoolSmartClient.exe) I want it to have Links, which are opened in the default webbrowser. (Like you normally do on a website, when you make a "a href" tag :) Offcourse, the noble and handy System.Process("http://tser.org") doesn't work, because&nbs ...Show All
Windows Forms Threading 101: Object Inspection
Being new to the System.Threading namespace, having a project that requires multi-threading is to say the least exciting. Having said that, Threading can be quite scary especially when your developing applications for a consumer and not just your systems buddy down that hall. I'm looking for some advice, tutorials or simply a good place to start learning about threading w ...Show All
Windows Forms Direct Show in Visual C++ 2003
Hi i am working on a video player in visual c++ 2003. I have gotten to the point where i can open a video and have it start to play. The one thing that i cant do yet is get the video to show up in my Form let alone a picture box which would be the most ideal solution. Here is my code so far( i have& ...Show All
Visual Studio Express Editions When will Visual Studio 2005 ship?
I place an order on November 7 with Amazon for VB2005Pro and still they have not ship it yet because they have no receive stock from Microsoft. Does anyone know when Microsoft will start shipping the new version Finally Amazon just shipped my VB2005Pro. ...Show All
Visual Studio Express Editions noob question about namespaces
so im learning visual c++ express edition and i have been looking at example code etc, one thing keeps occuring that bothers me, when i see something like... public System::Windows::Forms::Control the compiler will say Control is not a member of System::Windows::Forms everywhere i look claims that it is, but why cant the compiler see it public System::Windows::Forms::Control When you were creating a new project (with the Visual Studio Wizard), did you choose CLR Windows Forms Application If you chose one of the other project types, then you won't get the System.Windows.Forms.dll reference. You'll probably have to go back, ...Show All
Visual C++ Visual Studio 2005 - MFC compile error
Hi! I just installed MS Visual Studio 2005 and wanted to build a new MFC application. I used the project wizard to create a new "framework" for my app. But already at this point the compiler gives errors like "c:\programme\microsoft visual studio 8\vc\atlmfc\include\afxv_w32.h(228) : error C2065: 'DWORD_PTR' : undeclared identifier". My question now is how I can fix this problem, so that I can compile the Code which the project wizard gave me PS: The problem is not because it didn't include windows.h. Use the compiler switch /showIncludes to check from where you are picki ...Show All
Game Technologies: DirectX, XNA, XACT, etc. understanding view/world matrix
I have a few questions about this device.Transform.view = Matrix would set the camera for the rendering screen and device.Transform.World = Matrix would place the mesh object into the world space right if all the above is correct what would be the best matrix seting for turning a mesh and placing it into a set location on the screen zetto wrote: Is it possible to rotate something with matrixes so that it rotates around some other point than 0 0 0 There are not enough examples around of matrix stuff Yes, this is possible. Matrix math takes a little getting used to but its not so bad once you ...Show All
.NET Development How to access objects from another thread...
I modified this example to output to a textbox on a windows form. So instead of Console.WriteLine I used Textbox1.AppendText. Unfortuantely this won't work being that async sockets work in a seperate thread and I get an exception stating the control "textbox1" cannot be accessed from a thread other than the one it was created on. How do I take the data from the receive event and move it to another object created on another thread Look up delegates and .invoke in the MSDN. Basically you call a delegate that will marshal your function and makes sure that the ...Show All
