Software Development Network Logo
  • Game Technologies
  • SQL Server
  • Visual Studio
  • .NET Development
  • Windows Live
  • Visual C++
  • Architecture
  • Windows Vista
  • Smart Device
  • Visual C#
  • Visual Basic
  • Visual FoxPro
  • Windows Forms
  • VS Team System
  • VS Express Editions

Software Development Network >> James Fielding's Q&A profile

James Fielding

Member List

Knallform
Oatmeal Scout
dvboom
DoctorHarvey
TITRA FILM
ksrksr
Matt Morehead
dangster_gangster
juergen_
ivenk
Nirvana
Tramel
jlm890
Demonica
Helinho
chalna
GweiloMacau
Ecko
mschray
programmer76
Only Title

James Fielding's Q&A profile

  • Visual Basic .Net Toolbar - Can't use Icons?

    Is it only PNG files that you can use   Mike Pooley No, you can import any sort of image into an image list, then associate the image list with the toolbar and select the icon to use for each button.   ...Show All

  • Visual Studio Custom text markers in VS2005 beta 2

    Hi All, We have a weird problem with custom text markers under VS2005 Beta 2 (8.0.50215.44). <br> Our AddIn registers about 30 custom text marker types. We tested it under VS2005 and, seemingly randomly, some of them work and some do not. What happens is that markers do appear in the editor (tooltips are showing, for example), but they have wrong colors (not what our implementation of IVsPackageDefinedTextMarkerType says they should have) <br> We investigated this problem, and this is what we have found so far: <br> 1. When we remove all registered external markers (all entries from 'VisualStudion\Text Edito ...Show All

  • Visual Studio Team System how do I change team foundation server configuration

    I entered a wrong email adress under alerts during installation of the tfs server, where do I correct this error_ regards jcjj No I never found the correct way to install it all correctly, but I was sent the following link: http://www.microsoft.com/downloads/details.aspx familyid=e54bf6ff-026b-43a4-ade4-a690388f310e&displaylang=en  which leads to an excellent installation guide, that I have been trying to follow. I have not yet found the time to do the complete installation, so if anyone have, pls. post the pittfalls and workarounds.... I sincerely hope that the final product will include a wizard, that will configure all the ...Show All

  • Visual Studio Team System Data Warehouse not updating properly

       Last Wed.  I created a new project to give a mini-demo to a co-worker.  I created a few work items in the course of this demo.  As of 2 hours ago, I created another project to verify that the database wasn't updating.  As of right now, neither project shows up in the TFSWarehouse Team Project table.  None of the work items created in either project are present in the TFSWarehouse Current Work Item table.  All of the services associated with SQLServer are running.  Any suggestions to get TFSWarehouse to update properly would be appreciated. That's a bug in b ...Show All

  • SQL Server SQL Server 2005 Push

    Can someone point me to any documentation, articles, examples, etc regarding the best way to push data and/or notifications to a remote client machine that is running a win forms app from SQL Server 2005 Hi Reese, There is a (very cool) new feature in SQL Server 2005 with ADO .NET 2.0. YOu will find more information about this on http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnvs05/html/querynotification.asp HTH, jens Suessmeyer. ...Show All

  • Windows Forms How to remove a class/form in VS project?

    Hi all, How to remove a class/form in a Visual Studio project  I try to delete the file manually, but that is not OK. Any help, Thanks. Right click on the file in the Solution Explorer.  Exclude From Project removes it from the project, but leaves the file alone while Delete erases the file completely.  You can also highlight the  ...Show All

  • .NET Development Issue about use Send and recieve Data between Pop3 using SSL

    Does this problem have problem I can't use it to connect to pop.gmail.com (Ports 995) Thank . Public Class Pop3SSL Dim TCPC As System.Net.Sockets.TcpClient Dim SL As System.Net.Security.SslStream ReadOnly Property MailCount() As Long Get Dim ThisResponse As String Dim tmpArray() As String ThisResponse = SendCommand(SL, "stat" & vbCrLf) tmpArray = Split(ThisResponse, " ") MailCount = Val(tmpArray(1)) End Get End Property Function SendCommand(ByVal SL As System.Net.Security.SslStream, ByVal sToSend As String) As String Dim bData() As Byte = System. ...Show All

  • .NET Development How to use datasets like tables with complex where condition?

    I have a dataset with two related tables in it. What I want to do is create a collection of rows (either table or dataview) to match the following in sql select a.w, a.x, b.z from a inner join b on a.w = b.w where a.x = 'xxx' and b.y = 'yyy' I can create a dataview using rowfilters on one table, and I know I can just use the sql to create the data, but how to do it on two related tables The dataset doesn't support this. You would have to write the code to query each table seperately. ...Show All

  • Visual Studio Team System Team Explorer - red cross on "documents"-folder

    Since installation of TFS I am unable to see the content of the documents-folder (teamexplorer) on a client-machine. There is always a red cross on the folder! If I start the team explorer on the server the documents folder is shown correctly. I tried to copy the http-url ( http://[servername]/sites/[Project ]) to an IE on a client and there the sharepoint site is shown without any problems. I did the changes required after installation of Sharepoint Portal Services SP2 ( http://blogs.msdn.com/robcaron/archive/2005/10/07/478336.aspx ). I think I also configured the users like mentioned in the install guide (TFSInstall-v50926.chm - Manag ...Show All

  • Visual Studio Team System Application Diagram

    Hello,     How can I use the settings and Constraints defined in my Application Diagram to deploy my application on a real server Tks, Hi Sidney, I'll try to give you a short answer to this question because there's a lot that can be said about it. The quick answer is that settings specified on applications in the Settings and Constraints Editor are captured in the deployment report generated in Deployment Designer. I'm currently writing topics that explain how to use these settings for deployment by scripting over the deployment report. Unfortunately, those topics aren't available for you to read yet. You can, ...Show All

  • Visual C++ VC++ 8 Show-Stopper?

    Hi, I'm seeing a speed hit of around 2X when switching to VC++ 2005. It's so serious and effects even the most  basic programs that I can only think I must be missing something. Please help! Building the same (trivial) program onVS 2003 and VS 2005 I'm seeing around a 2x decrease in speed. I'm building for release and in 2005 also setting D_SECURE_SCL=0. Can someone explain #include "stdafx.h" #include <windows.h> #include <vector> #include <string> #include <set> using namespace std ; int _tmain(int argc, _TCHAR* argv[]) {     const long dwTime = ::GetTickCount();     {  & ...Show All

  • Windows Forms UserControl basics

    I have an windows application in vb.net. Main is the main form Login is a usercontrol Phonelog is a usercontrol I have 2 user controls a login and phonelog. When I run the application I want to load the login and after authentication of the user is successful I want to hide or close the login contol and show the phonelog control. I have the application&nbs ...Show All

  • Visual Studio Report Name display in the Print Queue

    Hi, I got a problem when using Crystal 11 with .Net 2003. Normally, in Crystal 9, when the report spools to the print queue, I can see the report file name in the print queue when it is spooling to the printer.  I always pause the printer and wait for all reports to spool to the print queue and then print out on the next morning. However, in Crystall 11, when the report spools to the print queue, all report file name becomes "document1" and displays in the print queue.  Is it normal   Can I set something in my .Net code in order to display the report file name in the print queue instead Please advise.  Thanks! ...Show All

  • Visual Studio Team System Team System and Small Business Server 2003

    Does anyone know if Team System (when released) will install on Windows Small Buisness Server 2003.  I have had the Beta 3 running on a development Win 2003 server, but the office server on which we would finally use it is SBS2003. The problem seems to be the sharepoint configuration.  I have removed the default SBS share point install, removed the sharepoint databases as discussed in another thread and installed the sql 2005 (Sept CTP), Sharepoint v2.0 then team foundation as per the instructions, but still get the Sharepoint is not confiured correctly. Has anybody else got TFS running on SBS2003 ...Show All

  • .NET Development NetworkStream.Read performance

    Hi All, a small question about some code we implemented: if ( rxSize > 0 ) { byte [] buf = new byte [rxSize] ; int total = 0 ; int offset = 0 ; int counterRead = 0 ; int counterSleep = 0 ; // put incoming bytes onto the input stream while ( ( !m_Terminate ) && ( rxSize > 0 ) ) { // stream = new NetworkStream ( socket, false ); if ( stream.DataAvailable == false ) { counterSleep++; System.Threading. Thread .Sleep( 50 ); // it was normally 100 but 50 went better ( 10 was to low ) } else { counterRead++; tmrPong.Change( 10000, Timeout .In ...Show All

©2008 Software Development Network