SulaimanA's Q&A profile
Visual Studio Deploying LanguageService ColorableItems on customers machine
Hello, We have created our own entries for text colorizers for our language service. All of this works fine and shows up in the "fonts and colors" area of Tools->Options from development machines. This is because we have the ability to reset our experimental hive, so it will see our changes. From our experimenting, we have found that doing a "devenv.com /setup" will register our items on the target machine after doing the install. However, this command has been known in the past to "turf" a users settings for the entire environment. Is there a better possible less destructive way to make sure our colorizers show up in tools/options kind of along the same line as "devenv.com /installvstemplate ...Show All
Smart Device Development Can i create a user control for pda?
Because i have made an userControl for pda in C# but when I deploy my project I have this error: Error 1 Deployment and/or registration failed with error: 0x8973190e. Error writing file '%csidl_program_files%\MyPrincipalProyect\system.windows.forms.dll'. Deployment and/or registration failed with error: 0x80070070. There is not enough space on the disk. Device Connectivity Component If i take off Using system.windows.forms; i can't deploy You run out of space on device. That usually happens if you have a reference to some desktop DLL by mistake so VS deploys 15-20 MB of desktop assemblies. If that’s not the case you might be truly out of space on device. ...Show All
Visual Studio Express Editions new line character
'Am using this code to convert a textbox (txtWords) entry into a list of words where each word ' is followed by a new line character so that a sentence is split into a list of words. So that if the sentence is - the quick brown fox, the list of words appears as the quick brown fox ie each word on a separate in a textbox Dim strWords() As String = txtWords.Text.Split(" ") Dim wordCount As Integer = strWords.Length For intCounter As Integer = 1 To wordCount Dim Words As String = strWords(intCounter - 1) 'this is where I have trouble. txtWords.Text = Words & " \n" Next Was also reading about Array.ForEach Generic Method. Would this help in acheiving the result If so how should I use this The syntax of this m ...Show All
Visual C++ msvcr80.dll not found
I've created a simple Win32 console application. When I try to debug it, I get the message: "This application has failed to start because MSVCR80D.dll was not found. Re-installing the application may fix the problem." The Release version runs fine. Any idea as to what the problem could be Thanks, Jonny It would be nice to have a verbose diagnostic tool that tells you after the fact why the loader chose to say msvcr80.dll (or any other dll) not found, in the same spirit as dcdiag.exe goes through domain controller configuration issues with a fine tooth comb. (If I was an expert and I had the time, I'd write one.) :) ...Show All
.NET Development Kerberos delegation problem
I have hunted through a serious number of blogs and web pages, but I just can't get delegation to work with our WCF application. To save some space, here is a link to the source code of a small test app that I am using: http://members.shaw.ca/murraypeterson/rcstest/ You can look through the source code to see the various settings I am using (NetTcpBinding, ClientCredentialType = TcpClientCredentialType.Windows, ProtectionLevel = System.Net.Security.ProtectionLevel.None, AllowedImpersonationLevel = TokenImpersonationLevel.Delegation, etc.). The scenario for testing is simple. Two machines, both members of the same domain (machine1 and machine2). Two users, both members of the domain (user1 and user2). On machine1, run the test ...Show All
SQL Server Error on Attaching Database
When attaching a database that was detached from another SQL Server instance. I got the error message below: Error 602: Could not find row in sysindexes for database ID 25, object ID 1, index ID 1. Run DBCC CHECKTABLE on sysindexes. i am using SQL Server 2000 Thanks and Regards Database compatibility has little to do with the changes in meta data. dbcmptlevel is set to allow sql2k5 to run the database at the current or lower settings. This issue is very much not isolated. It's the same if you take a Mpeg4 file and try to play it with a Mpeg2 player. It just doesn't work. ...Show All
SQL Server Help with mail that send mail when database bakcup fails
Hello I have got a script which gives the mail to the dba mail box when database backup fails. In the script I want to make a change so that I get the particular database name , on what ever database i implement. Can you tell me some suggestions. The script I am using is : use master go alter PROCEDURE dbo.SendMail @to VARCHAR(255), @subject VARCHAR(255), @message VARCHAR(8000) AS BEGIN SET NOCOUNT ON; DECLARE @rv INT, @from VARCHAR(64), @server VARCHAR(255); SELECT @from = 'testsql2000@is.depaul.edu' , @server = 'smtp.depaul.edu'; select @message = @message + char(13) + Char(13) + @@servername + '-'+ db_name()+ '-' + 'Backup Status Failed' + Char(13) EXEC @rv = dbo.xp_smtp_sendmail @to = @to, @from = @from, @messa ...Show All
Visual Studio Team System Deleting a team project
Hi, I tried using tfsdeleteproject command to delete a project. While deleting sharepoint site i got the following message: Couldnot connect to "http://<server_name>:17012/_vti_adm/admin.asmx" I ran the command again, but it says The project 'project_name' was not found on TFs Server. I tried creating a folder at http://<server_name>/reports/Pages/Folder.aspx with same name as that of the project i was trying to delete and reran the command but its still says that the project doesnt exist. Any solution Manasi Further to add to above problem I filred following query on tfsintegration database use tfsintegration select * from tbl_projects where ...Show All
Visual Studio Team System How are functional requirements recorded in MSF for Agile Software Development?
We're starting to use VSTS and happy to go off the bat with MSF for Agile Software Development asa process for now (tuning it to our needs as we go). A problem emerged for us today that I can't seem to resolve reading the process guidence or searching on the web. MSF for Agile has Scenario and Quality of Service Work Item types and these I understand I think and value. Quality of Service Requirements are sometimes called Nonfunctional Requirements I see from various forums posts. But nowhere can I see what happened to Functional Requirements. Here's my real world example. We have a scneaio which has just been added. That scario in the eyes of developers contains a lot of detail that doesn't belong there, and these we'd normally ca ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Bad Lines Appear with Sprite.Draw with Redist. but not with SDK
Hello Everyone, I am working on an isometric game pseudo 3D but using Direct3D. Primarily I am using one call to draw everything... (Sprite.Draw). Infact I even use only one sprite to draw all the images to the screen and have written all other collision detection and transforms myself using surface level operations... The only real hardware accelerated feature I am taking advantage of is color and alpha blending. Everything has been going fantastic and I am getting ready for a preview release in a few weeks but then I decided to test it on two more machines to make sure everything worked. Almost everything did... but some images are not being drawn to the screen correctly they will have shaded lines under or around them that were no ...Show All
Smart Device Development Combobox Value member foreach loop
How to build a combobox with a combobox ValueMember in a foreach loop I too have the same problem. I have to assign a Value Member to each of the items being added to the Combo Box as and when I populate the Combo Box. Please Help!!!!!! ...Show All
SQL Server Help with registry security for Event Log
Hello I've written a custom data processing extension that reads from the event log based on an example that I found in the Hitchhiker's Guide to SQL Reporting Services 2000. If I run my report on the server that Reporting Services is installed on, the report runs fine. However if I point to another server as my data source, I get a registry key error. Does anyone know what permissions need to be granted I've tried granting read permissions on the HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\EventLog key on the server I want access to, but that doesn't seem to work. If I go directly on the machine that SQL Reporting Services 2000 is installed on and run the report there it works fine, but I don't want this report to have to ...Show All
Visual Studio Team System To test Javascript
Hi, Iam configuring VSS to test our website. Is there any way I can test the Javascript in our website. either thru the test script coding or thru the plug-in. Can any one lemme know about this Thanks Hi You can refer to this MSDN article. http://msdn2.microsoft.com/en-us/library/ms404678(VS.80).aspx Thanks Rituparna ...Show All
Visual Studio Team System Team Build works only on itself
I've got the Application and Data Tier on the same machine. When I do a team build, it only works on itself, not onto the server I actually want to build to. Everyone has full permissions to everything and I get error TF42046. Do I maybe need to install something else on the server I'm building to If run "telnet your_build_computer 9191" do you get an error If you don't get an error, do you get garbage if you type some characters and hit Enter There should be a .NET remoting service listening on port 9191 on that computer. Telneting to it and sending it characters should get it to print some jibberish (binary data) and spell out .NET Remoting on the console. If that works, are there any ...Show All
Smart Device Development Disk Cleanup Question
There are 220kb of "Office Setup Files" appearing when I perform a Disk Cleanup action. I have no knowledge of what they are. What dangers could occur should I decide to delete them Thank you ! This forum is smart device development related. Since your question is not related to smart device development, it's off topic here. If you’re having a hardware issue, please contact hardware manufacturer or reseller. If you having an issue with 3rd party software, please contact respective software manufacturer or reseller. Otherwise please post to relevant forum or news group: http://support.microsoft.com/newsgroups/default.aspx Closing as off topic. ...Show All
