Itamarqaz's Q&A profile
SQL Server table designer / database description in 2005?
SQL Server Management Studio 2005 / table designer doesn't appear to have a field for table description; there IS a field for column description, but not for table. In SQL Server 2000 you right-clicked in the table designer and there was a table description field; I've got to be missing something obvious, right So is everybody stumped ;-0 Does anyhbody ever document their databases in Server Management Studio, or am I the only one ...Show All
Visual Studio Sharing files between projects in 6.0D
In our current production enviroment we are using VSS 6.0D to manage our projects. All of our projects depend on some common source files, which can be updated at any point by any of the projects. For example, we have one common header file which contains various error codes. As projects evolve, new errors are added to the header file, which can then be used in all projects. Recently we had a problem where someone had somehow checked in an older version of a file. When other people checked out their projects and made updates, they ended up merging their changes to the older version instead of the current version.&n ...Show All
Visual Studio Express Editions Setup and Deployment
Hi , I can't see Setup and Deployment Projects in the File > New Projects Menu in VB 2005 Express Edition Beta 2. Where can i found And they aren't there in the release version (which is available for download, BTW). The deployment of VB2005EE projects is provided through the 'ClickOnce' feature. ...Show All
Visual Studio Team System Beta TFS MSSCCI plugin now available for VB6, VC6 (not yet VS 2002/2003)
There's now a beta of the TFS MSSCCI plugin for VB6, VC6, etc., but it's not for VS 2002/2003 -- that's still too come. You can download it at http://www.microsoft.com/downloads/details.aspx familyid=32202966-EF04-442F-8C5C-88BDF15F551C&displaylang=en . Brian Harry posted some details about it, including the fact that it is not part of the go-live license . http://blogs.msdn.com/bharry/archive/2005/12/29/507993.aspx Buck I believe that MS Access supports Msscci specification, so it should work with our TFS Msscci plugin. However we are testing it only with VB6/VC6/VS2003/Visual FoxPro9 for now (this can cha ...Show All
Visual C# Thread problem
Hi.. I created a thread to watch for closing a window... i make a loop for watching the process that have a Main window..and when a windows closes to do something Anyway my problem is that my CPU goes nuts.. from 3% goes to 90 100% and i gived to someone else and sad that is working fine.. And my CPU is a INTEL Pentium 4 3.2 Ghz and i Have 1Gb Ram.. the hardware shouldn`t be a problem Hmm... what's that thread doing in fact while (window not closed) { } do something In this case of course is using 100% CPU.... Why do you need a thread to watch for closing a window A window has a Closed event, use that. ...Show All
Software Development for Windows Vista What kind of Host Application to use?
hi I didn't really get behind this whole thing of persistence, and host application. Therefore I have following question: We are developing a asp.net web application, where order can be made. After defining the order, the workflow should be triggered, and is used to control certain sla (service level agreement) times, in which certain actions should take place. For example: After 8 hours the order is checked if it was given clearance, or after another amount of time the order is checked if it achieved a certain status. My question: What kind of host application for the workflow should I use I know this is quite a common a ...Show All
Visual C++ template template parameter C3200 compile error
Hi, The following C++ code generates a C3200 compile error in the retail release of VS 2005, which seems to me to be a compiler bug. Anyone seen this Know a workaround template < class P> class RefCounted{}; template < class T, template < class > class Policy > class tSmartPtr : public Policy< T >{}; template < class T> class InterfacePtr : public tSmartPtr<T, RefCounted > // Comment out this line to remove compiler error.. { typedef tSmartPtr<T, RefCounted > SmartPtrType; // .. or comment out this line to remove compiler error }; class Property { ...Show All
Visual Studio Team System Problem while creating a New team Project
Hi all , My siteurl is http:\\tfs-app.default.aspx. Inside this site I created a subsite called TestDemo. I have created New Team Project Named TestDemo. When I Right click the Project and show project site. Its shows my sharepointsite(i.e http:\\tfs-app\sites\TestDemo) Problem 1: I have created another Team Project Named TestDemo1 as specified in above step. When I right click project and show project site. It's giving the following error. Er ...Show All
Visual C++ Finally
I'd move your post for you, but currently moderators don't have that ability... you get off with a warning. :-) Steven Zhao wrote: I am new here, I now use php to create web app, A good language which not choose or based on Ms.NET It is first step...! Phalanger: PHP .NET compiler http://channel9.msdn.com/ShowPost.aspx PostID=48906 Our integration introduces the PHP language into the VS.NET in a specific project type supporting syntax highlighting and compilation. PHP files are compiled to .NET Framework executables and can be executed and even traced from the VS.NET environment using the generated debug information ...Show All
Visual Studio Team System Team foundation server notification not working
Hi all, I'm having problems getting notifications on visual studio 2005 team sytem (with beta 3 refresh foundation server).I've registered to get notifications (such as when someone checks in code) and when it happens I'm not recieving any mail.I've looked at SQL server 2005 reporting services configuration manager, and my company smtp server and the sender adress (my adress) are provided. I've also made sure that the the values of the "smtpServer" and "emailNotificationFromAddress" (mine as well - should it match to the account sending the mails -TFSSERVICE) are present in the web.config file found in C:\ ...Show All
Visual FoxPro _screen.ContinuousScroll problem
I noticed this problem just this morning after spending many hundred hours debugging my app for the past few months when everything worked just fine. This is the setup which is hardly unusual. There is a function in a prg file and a Click method that calls it. There are a couple of print statements like: "coimng out of the function: "+numeric_id and such in the function(s) and one in the Click method. All output is character strings. The button is clicked many times during the debug. I get only one line of output out of the function but the rest of it is overlapping this first line no matter where it is coming from. The ...Show All
Visual Basic search folder with speed
Hi everybody, Well I need to find some files on the harddisk, but the problem is its kind of slow. Well there are some good functions like My.Computer.FileSystem.GetFiles() but I need some speed. Is there a function like find quick allfiles() Thanks for your help. Hello. No, sorry. GetFiles() is the quick version. - There is the Index Service to which you might speek OLEDB. - MSN search should have some API. The problem with these is that they need to build/update an index for all your files. So they are not to be trusted to be complete (or activated, even). You might consider to use a BackgroundWorker comp ...Show All
Visual C++ replacement for /mapinofo:lines in Visual Studio 2005
We have a suite of Windows applications w ritten in C++ using Visual Studio 6. The executables contain a structured exception filter which, in case of an unhandled exception, logs the state of the current thread. The logged info includes the fault address, a trace of the call stack, register contents, a stack dump, etc. The Visual Studio 6.0 projects are set up to generate full map files which include line number informati on - i.e. linker "/mapinfo:lines" option . These map files are archived. If a crash occurs in the field, we are able to cross reference the data logged by the exception filter against th ...Show All
Visual Basic ShutDown event won't fire
VS2005 Beta2 don't know why what's wrong with my project, shutdown event won't fire. I created a new project, shutdown event fires. This project was in Beta1, it is not totally new beta2 project. What could be wrong I compared every file I can think of, no difference. Okay. Just had a look up the help, and the End statement just calls Environment.Exit underneath, this is what it said: "The End statement calls the Exit method of the Environment class in the System namespace" ...Show All
Visual C# convert from 'ref double[]' to 'ref object'
I developed a c++ ATL com dll. I'm trying to use it in C#. In C# I have a method with a parametr of "ref object" type (in C++ is a VARIANT* I convert it to SAFEARRAY of doubles). For use this method I create a double[] variable but it throws me this error: Argument '3': cannot convert from 'ref double[]' to 'ref object' If I create object x =null; And after call to method I execute: double[] myarray = (double []) x; It run ok, but I would like avoid those steps. Thanksss _________________________ Hip Hop Directo De Chiste ...Show All
