Hubman's Q&A profile
Software Development for Windows Vista Beta 2 Activities in Activity Gallery
Many of the activities in the Activity Gallery were written by WF staff. So far there are two Beta 2 activites. Is there a plan to update the others to Beta 2 in the near future Thanks, Yes, I'm planning to publish several activities later this week. A couple of these will be updated versions of the existing Beta 1 activities and there are also a few new activities that demonstrate how to handle events. ...Show All
Visual Studio Unspecified error when doing Get Latest Version
When I do Get Latest Version from within Visual Studio on a complete solution or project I get the following error: Unexpected error encountered. Error: Unspecified error. File: vsee\lib\path\cvapipath.cpp Line number: 2459 When I do Get Latest Version on an individual source file, it works correctly. When I do Get Latest Version on a project from within the VSS client, it also works correctly. I got the following setup: Visual Studio 2005 Team Edition for Developers. Visual Sourcesafe 2005 C# solution containing services, web services and libraries. Patrick Hi, I've checked the issue on VSTS(Visua ...Show All
Visual C++ stdafx.h(15) : fatal error C1083: Cannot open include file: 'afxwin.h': No such file or directory
Created in VS6 Tried to compile in VS2005 Express and got the above error. Installed the latest Platform SDK which contains afxwin.h, but get the same error. Here is the code: // stdafx.h : include file for standard system include files, // or project specific include files that are used frequently, but // are changed infrequently // #if ! defined (AFX_STDAFX_H__38F261C7_B9D0_11D1_94AA_444553540000__INCLUDED_) #define AFX_STDAFX_H__38F261C7_B9D0_11D1_94AA_444553540000__INCLUDED_ #if _MSC_VER >= 1000 #pragma once #endif // _MSC_VER >= 1000 #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers ...Show All
SQL Server Forcing Reporting Services to update with new query?
Take a look and see how long the old version of the report is cached for. Andrew Watt MVP - InfoPath wrote in message news:cf32036e-8c31-4697-b1aa-a45e1bf9089c@discussions.microsoft.com... >I had a minor error in my query that i corrected, but RS for some reason > is still using the 'old' query rather than the new 1. > > I have redeployed the report, rebooted the machine and restarted IIS, > but to no avail, it is still using the incorrect 'old query. > > > Any help > I had a minor error in my query that i corrected, but RS for some reason is still using the 'old' query rather tha ...Show All
Software Development for Windows Vista Office 12
People, How can i participate the program beta tester office 12, and windows vista Regards Office 2007 Beta: http://www.microsoft.com/office/preview/default.mspx Windows Vista Beta: http://www.microsoft.com/technet/prodtechnol/beta/preregister.mspx Regards, Paul ...Show All
Visual C# copy and paste
Does anyone know the code for copy and pasting text. and make it work in a muilte window envorment such as MDI parent. thanks also mabey to print in an MDI parent this is the copy button code: private void copyToolStripButton_Click(object sender, EventArgs e) { Clipboard.SetDataObject(textBox1.Text); } the only thing is that i do not know how to declair that it is in a child window ...Show All
Visual Studio Express Editions browse a folder & open a file??
Hello everyone! I have a problem, when I do folderBrowserDialog then make the selected file to be shown in textbox, (I named the textbox selectedPath) then whenever I would select a folder from the folder browser, it works perfectly, but with openFileDialog.... nothing works the same way as folderBrowserDialog.... how do you set the thing where you are to select like the only .jpeg files like when you open a photo editor, then you do OPEN, the file browser only lets you see picture formats such as .jpg .jpeg .png .bmp .ico Show All how do you do this Thank You everyone! Keehun Nam KN1123 wrote: Hello everyone! I ...Show All
Windows Forms GotFocus Event Doesn't Fire
I was facing a problem getting a Form to fire its GotFocus event so I started a fresh project just to test it. private void Form1_Load( object sender, System.EventArgs e) { this .GotFocus += new EventHandler(Form1_GotFocus); } private void Form1_GotFocus( object sender, EventArgs e) { System.Diagnostics.Debug.WriteLine("Form1 got focus!"); } And the GotFocus event doesn't get fired no matter what I did to get the form into focus, Alt-Tab, click, etc etc. Have I done anything wrong or understood the GotFocus event wrongly Thanks in advance. That's actually by-desig ...Show All
Software Development for Windows Vista FlowChart workflow - Custom FreeformActivityDesigner sample
Hi, Here is the long due sample for writing custom activity designers utilizing the freeform activitydesigner. This is still a very crude sample, so we will try to post improved versions from time to time. Thanks to Arjun for the Executors and Validators. The validators show a false positive sometimes because of a bug that we will be fixing soon. http://www.thispointer.com/workflows/FlowChart.exe here is a preview of the flowchart workflowtype get http://www.thispointer.com/workflows/FlowChart.jpg Hi Ramrajprabju, I really love this sample. It's the first good exam ...Show All
Game Technologies: DirectX, XNA, XACT, etc. one vertex and 2 textures: beginner question...
I'm learning direct3d9, and i'm trying to make a "3ds view" application, that loads .3ds files and displays it. It's working fine now, I learned a lot, but today I got a very confusing doubt: Imagine you have: two faces, let's say face A (with texture 1 - large texture, high tiling) and face B (with texture 2 - no tiling); one vertex that belongs to the faces A and B; the flexible vertex format used is: struct Vertex { D3DXVECTOR3 position, normal; float u, v; //texture coordinates }; The question: how can the same verte ...Show All
Visual Studio Setup & life cycle
This is going to be a bit longer ;) I see two kinds of DSLs at this point (and all kinds of shades inbetween): 1) A company builds a DSL and sells it. They come up with a new version every two years. Having the new setup project type is great for that scenario 2) DSLs that evolve rapidly with a project (or many projects). I am going to focus on 2. I see this as follows: Someone builds an app. Sees code patterns that could easily be automated with a DSL. Creates a DSL for a very, very small part of the project. Repeat (ie another pattern is found). Repeat. Repeat. Improve the first DSL a little. Repeat. Repeat. Improve another DSL a little, t ...Show All
Windows Forms Treeview Control SelectedNode
I have a treeview control on my form. It contains a bunch of nodes in it. When I select a node from the treeview it get's hightlighted, which is what I want. But when the treeview control loses focus the node doesn't stay highlighted. Is there anyway to keep the node in the treeview highlighted, no matter which node of the form has the focus Turn the HideSelection property of the TreeView to False, it is true by default which explains the behavior you are seeing. ...Show All
SQL Server SCD Wizard
I have created a dimension table for a star schema and included the following columns for treatment of historical changes: [StartDate] datetime, [EndDate] datetime, [Current] varchar(5), [IsInferred] bit My Business key is code and the historical attribute is code_desc. I run the wizard and nominate the Current attribute to be set to True or False. What should the type of this column be as it is not being populated TIA, Michael Morrissey. Furthermore, I can't find any outputs for it either. I can see startdate, EndDate, and IsInferred but not Current. ...Show All
.NET Development TcpListener and TcpClient ports
I have searched for the answer to this question but I find conflicting information in most references to it that I could find. As I understood, when a listener on a server receives an incoming connection request from a client, the newly created TcpClient object on the server connects to the client using a different port so that the listener can continue to listen on the listening port. This implies that multiple incoming connections from clients would require that the server assign a separate port for each for future conversations. This tallies if a port is a memory address as each socket would need to have ...Show All
Visual Studio Team System When I get a specific version why does the contents of Source Explorer change?
The objective of the Source Control Explorer is to display the contents of the TFS repository; is that correct Therefore the folders pane should show the current folders in the repository for my Team Project and when I select one of these folders the right pane should show the current contents of that folder in the repository. By 'current' I mean 'latest version'. Given the above, I find the following behaviour strange... I copy a specific version of my Team Project's source code into my workspace (select the Team Project folder in the folders pane, right-click | Get Specific Version). Although this does not change the TFS rep ...Show All
