Timmy0614's Q&A profile
Visual J# vjc throwing an exception
I do not have this problem when compiling from VS 2005. This started after I uninstalled the J# redist and then reinstalled it using the MSBuild created bootstrapper program (testing it). When I build using nant which calls devenv to build the solution I get the popup asking me what program I want to use to debug vjc because it hit a problem. Even weirder, the compile continues - it does not return an error. But the rest of the projects are not compiled. What is going on and how do I fix it thanks - dave Ok, now I tried running from nant and got the popup once asking if I wanted to debug the exception in vjc - I said no. It then said the build was successful (which matches VS 2005 in that the exception in the compile d ...Show All
Visual C# with keyword
Hello, In VB 6 this keyword means inserting an object to the context. fields and properties of the object can be accessed directly, without a variable name (like when writing code inside a class and all the properties of "this" are accessible). In VB the dot "." operator is used, in other languages like delphi - you can just write the property \ method name. Is there a "with" keyword or something similiar in c# Thanks. There is no with in C#, see this link for more details from the C# language designer http://www.gotdotnet.com/team/csharp/learn/columns/ask.aspx#with Mark. ...Show All
Visual Basic Stupid question....How do I instantiate a form from another form?
I'm very new to vb.net. Just wondering how I can start up another form from another form's button. Thanks, and sorry for the newbie quiestion. In case as a newbie you don't understand C# In your button click event handler. ' Where Form2 is the Form Class that you wish instantiate / load Dim frm As New Form2 frm.Show() Rgds, Martin. ...Show All
Visual Studio Team System Error connecting to report server
After installing TFS SP1 Beta, I had troubles getting the SharePoint and reporting services working. So I thought I would back out and start over. At this point, everything is working except for reporting. Whenever I try to navigate to http://localhost/reports/Pages/Folder.aspx , I get the following: "The underlying connection was closed: An unexpected error occurred on a send." Where do I start looking for the cause of this I've already double-checked the reporting services configuration, and everything appears to be OK. Any ideas It could be due to a bug in .NET frameworks 1.1. See the the KB article for more information on the bug and the resolution: KB Article: http://support.microsoft.com/kb/915599/en ...Show All
SQL Server Cannot Install SQL Server 2005 Developer Edition - Minimum Requirements
I am having the same issue and can't find out why it fails on the minimum hardware requirements. I was looking at firewall issues, AMD Turion Mobile 64 clock speed issues, but can't seem to get past this issue. I've tried express and developer with no sucess. I'd love to see an answer from microsoft on this one. ...Show All
Windows Search Technologies Blue scrren of Death
Not sure if i should post this on here but ill give it a go,my mums computer keeps getting the blue screen evreytime windows xp starts.she starts in safe mode and also last good config and evreything starts up fine,the desktop comes up but after a couple of secs the blue screen comes up with the usual message and a error code STOP[:0X000000F4,(0X0000003,0X86599448,0X865995BC,0X805C7478 and the only way to exit is to turn the power off at the back as anybody got any ideas please No one seems to have been much help. I've come across a lot of questions about this but no answers. I've been having a similar problem for some time. If there's a list of stop codes anywhere, I can't seem to find it. When it ...Show All
Game Technologies: DirectX, XNA, XACT, etc. how to delete the threats?
please tell me that how to delete my threads (formerly threats) As a general guideline if you want high performing code you should multithread. You'd be stupid not to! Of course there is a steep learning curve, but it is something well worth learning to do right. ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Calculating normals for large mesh with no vertex to triangle info
I have a mesh of 100.000 triangles where I need to calculate the normals for the vertices. The datastructure, I am using, does not point from vertices to triangles, but only the other way arround. I therefore defined my vertex normals as the sum of the triangles using them, weighted by the triangles size. I simply set all vertex normals to zero and then run through my triangles (when running through them anyway for some other task) and add a triangles normal (weighted) to the vertices it uses. The I run through all vertices and normalize the normals. This is suposed to give me a valid normal for the vertices. I am not much liking waht i see though. The entire terrain is filled with little pyramids. Light ones and dark ones. When I ...Show All
SQL Server Scripting stored procedure add with Linked Server reference when Linked Server is not available
Is there a way to bypass the syntax checking when adding a stored procedure via a script I have a script that has a LINKed server reference (see below) . INSERT INTO ACTDMSLINKED.ACTDMS.DBO.COILS ..etc. ACTDMSLINKED does not exist at the time I need to add the stored procedure that references it. PLEASE to not tell me to add the LINK and then run the script. This is not an option in this scenerio. Thanks, Terry Makes sense. What I am trying to do is add a whole stored procedure that will not fit into the 8000 byte limit of a string field. Is there another way ...Show All
SQL Server print on one page from report viewer
Is there a way, other than ensuring the report data does not exceed 11" , to format the report to print one page wide when printing directly from the report viewer I have set the marigns to 0 etc. I have the page height set at 8.5" and the page width set at 11". The report is 11.5" wide. It still does not print one page wide, it prints two pages wide. Anything else I need to change ...Show All
Software Development for Windows Vista Online Help Technologies in Vista
In my reading on Microsoft Windows Vista, I have seen a number of references and discussions about the new "User Assistance" functionality. What previous online Help technologies will Microsoft Windows Vista support Specifically, in addition to the new "User Assistance" format: 1. Will Microsoft Windows Vista include the WinHelp engine and run *.hlp/*.cnt files as was supported in previous versions of Microsoft Windows 2. Will Microsoft Windows Vista include the HTMLHelp engine and run (.chm files) as was supported in previous versions of Microsoft Windows I appreciate your time and consideration, Mark According to this, Winhelp will still run under Vista, however Vista itself will not ...Show All
Visual Studio Team System Modification/customization of WI type "Task" cause Team project Creation failure. Process template is customized for WI "Task".
Scenario: I am working on customization of Work Item Type "Task". Scenario: I am customizing the CMMi process template to suit my Project requirements . To achieve this I changed the Work flow for the Work Item Type “Task”. Also I added few values to the “Discipline” field for WI Type “Task”. When I am importing this Work Item using “ witimport” it is working fine. But when I am adding this WI task.xml to Process Template and uploaded the process template on the server. Now am creating Team Project based on this Process template it is giving me error below: Event Description: TF26214: Cannot save the work item. Fields with errors: State,Discipline Exception Type: Microsoft.TeamFoundation.WorkItemTracking.Clien ...Show All
Visual Studio Express Editions windows service
Hi, Iam using C# Express Edition.I want to create a windows service ,But there is no template for windows service in express Edition.Where can i download the Windows service template. Thanks in advance. ahmedilyas is correct, Express lacks a Windows Service template and is one of those lovely little limitations they put on it. All is not lost though, because C# Express targets the exact same .NET Framework that even the highest versions of Visual Studio 2005, you can still build one... you just have to do a little more work. First things first... take a look at the ServiceBase class as any kind of Windows Service you make will need to derive from it. I’d also suggest taking a look at these two Code Project articles that walk t ...Show All
Visual Studio Team System Merging between code line By Label
I was going thru the following thread: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=756804&SiteID=1 I tried this and don't get any error. The issue here is it shows in the command window it merged but when i go to the IDE to check-in my merge, nothing is checked-out. I get "No Pending Changes"!!!!!!! Here's the command-line syntax: C:\TFS Projects\TFSWalkthrough>"C:\Program Files\Microsoft Visual Studio 8\Commo n7\IDE\tf.exe" merge /recursive /version:LEnvMgmtDEV1.1.1.3 /preview /noprompt " $/TfsWalkthrough/EnvironmentManagement/Environment Management-DEV" "$/TfsWalkthr ough/EnvironmentManagement/Environment Management-SRL" merge, edit: $/TfsWalkthrough/EnvironmentManagement/Environm ...Show All
Visual C# A program used to grab images from Google. I need help with it.
This is my code in Main.cs : #region Directives using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.IO; using System.Net; using System.Diagnostics; using Google_Image_Grabber; #endregion namespace Google_Image_Grabber { public partial class Main : Form { public Main() { InitializeComponent(); } internal Dictionary < string , Image > GoogleImages = new Dictionary < string , Image >(); #region Form Events private void button1_Click( object sender, EventArgs e) ...Show All
