teacake.the.cat's Q&A profile
.NET Development launch console app from remote computer
I have a small console app that needs to be launch from remote computer(s) - preferrably without a third-party tool. The app runs then quits in just a few seconds once it complete a process. ...Show All
Software Development for Windows Vista Activity binding and conversion
Hello, with the activity binding I can bind only properties of the same type. Is it possible to introduce convert functions as you can do with Biztalk mapper Thanks, Pierre ...Show All
Visual Studio Team System LoadTest, webtest passed always 0
Hello, I created a webtest and It passed ok, after that I added a loadtest with only that webtest I just created, there is performance counter under the scenario node called Test passed and its always 0 Is there something I havent understood Is the load test running long enough for a test to complete It's possible that the load test completed before any of the tests it was running completed. Could you provide more information please Thanks, Rick ...Show All
Windows Forms Controlling the Visibility of Controls at Run-Time
I'm interested to find out what are some of the best practices for controlling visibility of Controls on Forms at runtime based on a users group permission settings. My intentions are to create groups like Administrator, Manager, Supervisor, Team Lead and Developer. Individual users will be assigned to one of these groups. All Forms and all the controls& ...Show All
Smart Device Development where could i save my data?
hi, could anybody please tell me the available places where i could save some data of my application without writing a database app, i know about windowsCE registry but where else can i save my data thanks Windows CE supports file system, so you can save your data to the file just like on desktop using same APIs. ...Show All
SQL Server Compatibility with sql 2000
Can I Install Sql 2005 in a machine with sql 2000 Will I have problems when the final version of sql 2005 comes out 1. RTM is still a few months in the future, what about right now, will it break 2000 2. If not, will it be OK if 2000 has Report Server installed Thanks. ...Show All
Visual C++ COM and .NET
Hello, I have one question.... If a WIN32 COM function return S_OK, its mandatory..Is it the same way in .NET when you Interop with COM..... or in .NET the function doesnt need to return anything.... Thanks, Harsimrat Harsimrat wrote: Hello, I have one question.... If a WIN32 COM function return S_OK, its mandatory..Is it the same way in .NET when you Interop with COM..... or in .NET the function doesnt need to return anything.... Thanks, Harsimrat Usually with tlbimp, HRESULT return types in COM methods are converted to void return types in the .NET wrapp ...Show All
.NET Development Console.writeline() will not write to a ASP.NET page, Framework 2.0
Thought for sure that I have done this in Framework 1.1, but will not work with 2.0 The problem is simply writting to the web page console, can not seem to get the Console.Writeline function to work.... Tried setting the Console.Setout() but still no success. No error messages just nothing displayed from the Console.Writeline function. MSDN documents the issue if the default output is not the console, nothing is displayed. Any help appreciated... Partial of the code that I am using. Have attempted to set the the Console.Setout w/o any success. Try Dim outStream As New System.IO.StreamWriter(Console.OpenStandardOut ...Show All
.NET Development Database transaction
Hi Can someone please help me with code I have two tables in my database and want to add the value of one column in the second table to a column in the first table so that the initial stock will be updated with the new recieved stock amount. First table is STOCK with columns prod_name and prod_quantity Second table is STOCK_RECEIVED with columns prod_name and prod_quantity I am using Visual Studio 2005 Express Edition and Visual Basic Thanks Christoff ...Show All
SQL Server Get XML node as 'text' data type
We are using XML to pump data into a SQ: Server 2005 database. We pass an XML document into a stored procedure, the stored procedures chunks out the data and inserts it into the appropriate tables. Fine. Works great, easy to maintain, excelent performance. Here's the problem. One of the columns we are pushing data into is of data type text and the .value fuction of the XML node does not support conversion of a node's data to the 'text' data type. For example: CREATE PROCEDURE as MyProcedure @myData xml BEGIN INSERT INTO MyTable (FirstName, LastName, Notes) SELECT MyNode.value('FirstName[1]','varchar(50)'), MyNode.value('LastName[1]','varcha ...Show All
SQL Server Custom component seems to un-register itself?
I've run into this a second time now. I'm hoping for some resolution AND guidance for proper build, save, etc. protocols in BIDS. I've coded a custom component, included post-build procedures to add it to the GAC, selected it from the "Choose Items..." menu, and successfully added to a data flow. I've then been able to succesfully debug it. This was all Friday afternoon. I shut down my BIDS session(s) and called it a week. This morning when I open BIDS, I get the following error when I attempt to add it to a data flow task: TITLE: Microsoft Visual Studio ------------------------------ The component could not be added to the Data ...Show All
Visual Basic Cursor flickers and IDE Not responding ....
I'm using VB 2005 and having a issue while in design mode in the IDE. I click on a control to change some of the properties, like the Name or Text and my cursor starts to flicker like crazy. Mine flickers SizeAll cursor type, I've heard others flicker on hourglass. Anyway it flickers and the IDE goes into a Not responding mode for about 30-45 secs. If only happened once then it wouldn't be that bad, but as I'm layout a form it happens about every 2 minutes which is real drag. Anybody have any solutions Besides going back to VS 2003 Thanks ..... Thank you for posting your feedback on the performance of ...Show All
Visual Studio Team System Can't install TFS RC on App tier
Hello all, I'm working through an upgrade to TFS RC from B3R, and I'm getting an error when I try to install TFS on the application tier of my dual-server system. The health check fails with this message: Description SQL Server Reporting Services application pool or virtual directory detected Workaround / Remedy Setup has detected that SQL Server Reporting Services application pool or virtual directory (Reports or ReportServer) may be on this computer and cannot continue. Remove these and run setup again. According to the upgrade instructions, Reporting Services is a pre-requisite to TFS RC on the App tier. What am I missing ...Show All
Windows Forms How To run Pocket TaskVision??
Hi all, Being primarily a web developer, i'm a newbie to both windows forms programming and pocket pc development. I had downloaded the pocket taskvision sample app and installed it on my desktop pc. However when I try running it in the VS.Net 2003 emulator, it shows the loading of various components onto the emulator including PocketVision.exe but I couldn't fi ...Show All
Visual C++ Troubles when using managed c++ dll's in other managed c++ dll
Hi, I am using Visual C++.Net 1.1 2003 and I have the following problem: I create managed c++ dll class library (default settings). Inside of that library, I create simple managed class, like this: // FirstDll.h #pragma once #include <string> using namespace System; namespace FirstDll { public __gc class CFirstDll { private : protected : public : static void MarshalString(String* s, std::string& os); }; } with appropriate implementation, of course. That is first dll which is ready to use. Afterwards, I create a second managed c++ dll class library, in ...Show All
