TeamWild's Q&A profile
Software Development for Windows Vista DependentUpon missing in VS2K5 Extensions beta 2
Hi, I've installed Visual Studio 2005 Extensions for Windows Workflow Foundation (beta 2) and I have a problem when I add "Sequential Workflow (with code separation)" to a "Sequential Workflow Console Application" project. After adding the item to the project two files appear in the VS Solution Explorer: Workflow.xoml as Workflow.xoml.cs. But the problem is that they aren't related. The .xoml.cs isn’t under the .xoml. ...Show All
Visual C++ Pages allocated to a process
Hi I need to inspect the pages allocated to a process at an instance , workingset gives me the max and min value , Dim Proc As Process() = Process.GetProcesses TextBox1.ScrollBars = ScrollBars.Vertical For i As Short = 0 To Proc.Length - 1 If Proc(i).Id > 4 Then ' paged memory is virtual memory TextBox1.Text &= Proc(i).ProcessName & " " & _ Proc(i).Paged ...Show All
.NET Development Understanding Synclock
Hi, I am having a difficult time understaing MSDN documentation of Synclock statement. I cant understand what is "expression" for in Synclock dim temp as string Synclock ME temp = "something" End Synclock What do we use "ME" for MSDN says "When the thread reaches the SyncLock block, it evaluates the expression and maintains this exclusivity until it has a lock on the object that is ret ...Show All
Visual Studio Team System TFS SErver Beta3 single server installation failed
with following error event log... Event Type: Error Event Source: Report Server (MSSQLSERVER) Event Category: Management Event ID: 107 Date: 10/13/2005 Time: 3:18:54 PM User: N/A Computer: TEST02 Description: Report Server (MSSQLSERVER) cannot connect to the report server database. For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp . Event Typ ...Show All
SQL Server DTSProperty.GetValue
Hi, Seems a pretty straightforward problem however, I have now spent some time on it. I have a DTSProperty object and want to get its value. I am able to get all the other attributes like Name, Type just fine. The GetValue method on the DTSProperty class takes a object and returns a object. If I want to get a value of the current property what do I pass to GetValue I have something like foreach ( DtsProperty property in contro ...Show All
Visual Studio Express Editions Managed C++ samples
It seems like there isn't much sample applications for managed C++. Does any of you know where to get sample applications (like Windows Explorer alternative in managed c++, some text editor etc.) Have you already looked at the samples included in the project We will also have some bigger application samples called starter kits posting soon. Thanks, April Reagan Visual C++ Program Management ...Show All
Visual C# network connection state change event? does it really exists?
in the "ready to rock" launch event of visual studio 2005 i saw an event called something like onNetworkConnectionStateChange. they told me that this event will be triggered when there's some changes to the network status. for example when the wifi lan becomes available. i cannot find this event anymore. can someone help thanks a lot! ...Show All
.NET Development Passing xmlNode between components
Hi guys, I have one component that creates an xmlDocument and I call another component that returns the nodes I want to attach to my xmlDocument I use this code but I get an error saying that "The node to be inserted is from a different document context." when I append the resulting node to my document. I know that but how can I pass XmlNode What could work and be really ...Show All
Visual Studio Express Editions about code completion in c# express
hi, i saw one MSDNTV video, and the vid was about new feture sin desing environment and code completion. that man was worging with web developer tool, and he was showing some tips about creating a class, and its properties. i saw that it was very useful way, by only pressing TAB you get some code already generated, and marked fields to write your own names. a very cool way is to write properties. he showed that its enough to wite "property& ...Show All
.NET Development Porting ActiveX control to x64
hi, i'm ever. i'm porting my ATL ActiveX control to 64-bit Windows XP. i'm using VS2005 beta2 + 64-bit Windows XP + Dell workstation precision 670. i can build my control successfully at VS2005 beta2 for x64 platform and it can be registered by REGSVR32.EXE. BUT when i open the ActiveX Control Test Container and insert it, i can't find it in the Control List Box. moreover, if i copy my control to Windows\System32 directory and register it in ts ...Show All
Visual Basic Convert Printer Setup Dialog in VB6 to VB.NET 2005
Hi all, I have codes below in VB6. The code show the Print Setup Dialog. Private Sub mnuPrintSetup_Click() On Error Resume Next cdlDialog.flags = cdlPDReturnDefault ' cdlDialog is CommonDialog cdlDialog.flags = cdlPDPrintSetup cdlDialog.ShowPrinter End Sub anyone can help me convert this code to VB.NET 2005 thanks Take a look at the printsettings class http://msdn.microsoft.com/libra ...Show All
SQL Server Need help designing dimension
Any ideas appreciated on this: We are pulling customer data from 8 homogenous sources like so: customer attributes, sourcesystem This data is going uncleaned into a base customer dimension Using fuzzy grouping we group and extreact similiar customers into another dimension: conformed customer dimension, and update the base customer dimension with the conformed customer dimension primary key in a parent_customer field. We add several ...Show All
Visual Basic Retrieving window name
I'm working with the AppActivate function to change the active window to whatever one the user needs to use next. However, its very annoying to have to type the name of the window in for the user. I was wondering if there was a way I could have them simply mouse over or click on the window they wish to switch back and forth between and record the name of the window. For example, instead of the user typing "Document1 - Microsoft Word" i ...Show All
.NET Development About CreatePopup?
I want to create a Popup to input something. the code is following: function AddClick() { var myPop = window.createPopup(); var myPopBody = myPop.document.body; myPopBody.style.backgroundColor = "Green"; myPopBody.style.border = "solid black 1px"; myPopBody.innerHTML = " : "; myPopBody.innerHTML += " 密 : "; myPopBody.innerHTML += " 名 : "; myPop.show(480, 20, 25 ...Show All
Visual C++ VC8, Adding __event to non-CLR code gives error C2712
In a non-CLR class I have a number of __events defined. When compiling the source code in which the corresponding header file has these __events, I receive the error: error C2712: Cannot use __try in functions that require object unwinding pointing to the last of the __event lines in my header file. When I look at the error message it says: "cannot use __try in functions that require object unwinding". Further it is mentioned that "object unwind ...Show All
