chechsan123's Q&A profile
Visual Studio VS Common IDE Package failed to load
I have been using Visual C++.net standard version 2003 on a Windows XP Home. It has worked quite well, so I decided to upgrade to Visual Studio 2005 Standard to get additional features. I uninstalled C++.net and installed VS 2005 upgrade. Now I get the "Visual Studio Common IDE Package failed to load" error (5 times) on startup. I have looked through the posts in this forum, and have tried just about everything I could find to ...Show All
SQL Server Error in accessing references...
I have a report, I've attached two assemblies, but I get an error everytime I access one of the public functions...I already set the Class name and instance name..please help.. Do I need to add additional code Thanks is advance...GOD BLESS!!! ...Show All
.NET Development About securing a method execution.
Hi All I’m using .Net v1.1. I’ve an EXE named as “myApp.exe” and a DLL named as “myLib.dll”, in the DLL I’ve public method named as “foo()” All I want is to secure this method execution. i.e) this method should get execute only if it is called from myApp.exe and the method should throw an exception if it is called from any other sources. How can I achie ...Show All
.NET Development How Can I find The Maximum Value from My child !!
I have an xml file have many values of data e.g . <data> <username> <name>n1</name> <old>12</old> </username> <username> <name>n2</name> <old>20</old> </username> <username> <name>n3</name> <old>50</old> </username> </data> How can I get the maximum age of my use ...Show All
Windows Forms Sql Server 2000 Notification Services
Does anyone have an example of setting up a notification service using the SQL 2k Notification Services namespace I have only found one article on this topic (besides MSN). Any help provided will be appreciated. Thanks, Jason I knew I had&n ...Show All
Visual Studio IvsMonitorSelection.GetCurrentSelection returns Interface not registered
Hello, My package is using IvsMonitorSelection.GetCurrentSelection. In some cases, the call to IvsMonitorSelection.GetCurrentSelection returns the following: Interface not registered (Exception from HRESULT 0x80040155) In other places in my code, this works without a problem but it consistently fails in one particular place. I don't understand how there can be a difference. Can anyone shed any light on why IvsMonitorSelect ...Show All
Visual Studio Team System about the permission to documentation
in the team explorer, each project have a documentation file folder, it consists of serveral kinds of documentation, such as developing, testing, project management and etc , I want to set differrent permission to these documents, some people can only read the developing documents, some people can only read the testing documents, and some people can only read the project management documents, how can I do can VSTS ...Show All
Visual Studio Team System Rule Interface
HI...I'm trying to check that an interface name begins with the letter "i" using the following code: public override ProblemCollection Check(TypeNode type) { Interface interfaz = type as Interface; if (!(type is Interface)) return null; if (!(type.Name.Name.StartsWith("I"))) { Problems.Add(new Problem(new Resolution("Interfaces deben empezar con 'I'"), type.FullName)); } retur ...Show All
Visual Studio Team System Installation problem with Reports Server
I'm trying to do a single-server (beta 2) install but keep hitting a problem during setup. The system says: Miscrosoft SQL Server 9 Reports Server services is either not started or not installed which isn't true. All prerequisite software has been installed and is working. I can browse localhost/reports and both reports and teh server are running in their own app pool. The only place I didn't follow the installation guide exactly is that SQL Ser ...Show All
SQL Server System Process issues "RESOURCE MONITOR" command and blocks a process
I have a process which is getting blocked by a System proces. The only information I have about the system process (from the Activity Monitor) is the Command field which is "RESOURCE MONITOR". I've looked up "resource monitor" in books on-line and it says something about clustered servers. I don't have a server cluster. This server is severely underutilized -- the sql server is currently using less than 1 GB of 10 GB avail ...Show All
Visual Studio 2008 (Pre-release) Save RichTextBox document
How can I save RichTextBox document in Xaml and C# I tried to do it with SaveAs command but i did not find any informations about using this command. Please I do not how to do it. http://blogs.gotdotnet.com/jfoscoding/archive/2006/01/16/513383.aspx ...Show All
Visual Basic Using each digit of a byte
This one is kind of interesting. A byte consists of two digits, right Now, each digit of this byte holds data for a different object. Say the byte is 7F. The 7 would be the data for one object and the F would be the data for the other object. Or say the byte is 04. 0 would be the data for the first object and 4 would be the data for the second object. Get it How would I write the byte this way Say I have two textboxes, txt1 and txt2. txt ...Show All
.NET Development int on a 64-Bit machine
Hi! If I declare a variable of type int in C# it will normally map to System.Int32. If I run the same application on a 64-Bit machine will it then map to System.Int64 Please note that some information in this thread is not correct. In unmanaged Visual C++ sizeof(int) == sizeof(long) == 4 on both 32- and 64-bit machines. Thanks, Eugene ...Show All
Visual C# Graphics in C#
I want to draw circles and lines on panel which correspond to the Nodes and edges of a Binary Tree. The way I have implemented at the moment is, each of the Nodes is an Object which extends PictureBox, and I override the OnPaint method to Paint a circle for the node in the center, and set the background to be transparent. Each of the lines is also an Object which extends PictureBox and I override the paint method also to draw a line. And I spec ...Show All
SQL Server BULK INSERT Format File Problems with SQLNUMERICAL in SQL-Server 2005 Express
I'm trying to set up a BULK INSERT Format File for some data that I've been sent, which, according to the data documentation, comes in fixed-width format fields (no delimiters except for end-of-row 0D0A) in SQL-Server 2005 Express. The following is the first line... "7999163 09182003 56586 56477 3601942 1278 22139 1102 113 118 51450 1 1 63535647 10000 7999162 09182003 56586 56477 3601942 1279 22139 ...Show All
