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

Software Development Network >> CSpahn's Q&A profile

CSpahn

Member List

MarkL1976
Moandal
mliesmons
Bloke
miniBill 90
WolfgangB
C#2006
Per Nilsson
anina79347
mabraham1
lemonsito
Ashkan
blanc
Lou Searles
anoo
Jing Fan
von_Keks
KevinKing
jam123jam123
Phillip Jackson
Only Title

CSpahn's Q&A profile

  • Windows Search Technologies Items indexed so far = negative number

    I have WDS build 2.6.5.5401. It has been installed (this time) for over 3 weeks. Everything seems to work fine, that is, I can find files and documents and emails. The only odd things is that when I click on "index status", it always shows a negative number. Like right now, its at -189,438. Last week it was -1,292,702, It also will show something like "323" left to scan, then get down to 1, then go back to some other number like 411, then back down to 1, then...well you get the idea. I'm using Outlook 2003 on exchange 2003, with 2 archive folders also being indexed that are on my local hard drive. Most of the document fil ...Show All

  • Windows Forms Datagridview complaints editorial issues

    Datagridview complaints at EditOnKeystrokeOrF2 Mode once press key in cell find two Letters ,why How to resolve I am sorry, my English is not good I do not know the meaning has not made clear ...Show All

  • Visual Studio Team System How can I get project list in VSTS Beta3 !!

    I used the following code to get project list in vsts beta 2. But in beta 3, I can't find the 'BisProxyServices'. BisProxyServices bps = new BisProxyServices();           ICommonStructureService iss = bps.GetTfsProxy(Tfs, typeof(ICommonStructureService)) as ICommonStructureService;    ProjectInfo[] projects = iss.ListProjects(); Is 'BisProxyServices' renamed or moved to different assembly What is the best way to get the project list in beta 3 To follow up on Brian's reply, James Manning posted a little app on his blog that will list the team projects on a server.&nb ...Show All

  • .NET Development control XML serialization

    hi, Do u guys know how to control the XMLserializer, any attributes or methods to get the XML output like shown below <root> <abc id="1" name = "john">123456</abc> </root> Thank you Your class will need to implement System.Xml.Serialization.IXmlSerializable. Add code to read and write Xml in the manner that you desire. In the WriteXml method you'll have something like the following: writer.WriteStartElement("abc") writer.WriteAttributeString("id", "1") writer.WriteAttributeString("name", "john") writer.WriteValue("123456") wr ...Show All

  • Windows Forms missing storage-class or type specifiers error

    i have declared a child form in the parent form 'Form1' . ' public: static Form2* childform; ' but in the line of ' public: static Form2* childform; ' where i ve defined the pointer, i receive the error 'missing storage-class or type specifiers' . i ve already included Form2.h in Form1.h and i create an instance of Form2 in Form1's constructor with 'new' operator... so why i receive this error... regards. I created a new winforms project in VS.NET 2003. I then add another form, Form2. Form1 header include Form2 header. I compiles without problem. public __gc class Form1 : public System ...Show All

  • Visual C++ is it x64 (?)

    Hi,    I have a AMD opteron machine on which i have installed Windows 2003 server. The systems information displays it to be a X86 Based PC!. Also programs compiled on visual studio 2005 Beta2 for x64 fail to run on the same machine. Message from one of my test programs.. "C:\MntFSWin64\Hex_dump2\Hex_dump2\x64\Debug>.\Hex_dump2.exe The image file C:\work\imk\MntFSWin64\Hex_dump2\Hex_dump2\x64\Debug\Hex_dump2.exe is valid, but is for a machine type other than the current machine." The dump of my machine configurartion is " C:\Documents and Settings\khani>systeminfo Host Name:      &n ...Show All

  • Visual C++ could you tell me the result of this code?

    I hold the idea that the current result of this code is 0,but in vc6 and vc2003,it's result is 10! could you tell me why btw,the result if this code is 0 with java compiler. int main() { int a=0; for(int i=0;i<10;i++) { a =( a++); } cout<<a<<endl; return 0; } Can you explain why you expect it to be zero You have initialized a to 0, then you increment it inside a for-loop that loops 10 times. The expected output is 10. I've never done Java, but I'd be truly surprised if the output will be 0 in Java. ...Show All

  • Visual Studio uninstalling vs 2005 beta 2 fails

    Hi! I'm trying to uninstall vs 2005 beta 2 in order to install the team suite and to clean up other things since I get some unexpected behaviour when working with it. However, uninstall precedure stops responding. In the dialog with the options add/remove, repaire, uninstall I select uninstall. The next wizard page displays the message 'Uninstalling Microsoft Visual Studio 2005 beta 2...' and it stops responding, while the progress bar remains clear. Any ideas Dimitris ... is is just me, or am I talking by myself here ... ...Show All

  • Visual Studio Express Editions How to create a sort of login?

    Hello I want to make a program for certain people and I want it so that they need to enter a code the first time they run the program. The codes would need to be programmed into the program and a certain code would need to show certain info in the program ( for example: if someone entered code 12345 on the first startup the program would show 'welcome name'). If you need some extra explenation just ask. I would like to know how to do this. Bye and thanks in advance. You have a login form dialog as a template form type. So add one to you project. You need to instantiate an instance of this log ...Show All

  • Visual Basic Visual Basic 6 Reload

    Hello World !! La Cuestion es que creo Firmemente que Visual Basic 6 es MUY superior al VBasic NET, ademas Pregunto: 1. Que se Puede Hacer con NET, que no se pueda en VB6 2. Que sera el Futuro de los OCX 3. Que seran de la Bellas Apis 4. Vale la pena el Cambio Realmente soy de los que cree que es mas facil programar en Visual C++ que en NET, o que NET se parece mas a Delphi que a Visual. Parece que la Filosofia de Una Programacion orientada a Objetos Sencilla "NO" existe en NET Hely Rojas http://www.sysmaya.com/themis/themis.htm     Hi, welcome to the MSDN forums. I'm afraid I can't tell w ...Show All

  • .NET Development Beta exam 71-536

    I just got an newsletter from Microsoft Learning talking about "Participate in Free Beta Exam 71-536: TS: Microsoft .NET Framework 2.0 - Application Development Foundation. Where can I find preparation information What type of questions is in Thanks,    David. Hi, Take a look at this link for preparation information: http://www.microsoft.com/learning/exams/70-536.asp Regards, Vikram ...Show All

  • SQL Server SQL Express Minimum Requirements Warning on Windows 2000 Professional???

    The computers here at work run Windows 2000 5.00.2195 SP4. Everything checks out with the minimum requirements at http://msdn.microsoft.com/vstudio/express/support/sqlreadme/#_3462_setup_issues_238p However, one of the "Reports" from the installation says the machine does not meet the minimum requirements, but provides no details. It installs and I have Admin rights on this machine, but I can't even connect to the Northwind database that I downloaded. Is this due to our logging process where the "system" is actually in another country (ie, "CITYNAME/Username" Any help is appreciated! Jason ...Show All

  • Software Development for Windows Vista Conexant Audio Drivers for x64b2

    Anyone have a generic that'll work with the failed conexant audio driver Microsoft, I know you guys can take 10 minutes and code one. ;p download SP30305 from HP. This is the driver for Realtek AC97 Audio D...(5.10.00.5800-A-1 It took me almost a week to find, hope it works. ...Show All

  • Visual Studio RTM version - SQL Express failed

    Hi I ran the uninstall tool - everything went fine. Ran the VS setup, SQL Express did not install. From dd_vsinstall80.txt [09/30/05,10:15:04] Microsoft SQL Server 2005 Express Edition x86: CreateProcess launched with cmd linez:\vs\setup\..\wcu\sse\SQLEXPR32.EXE "z:\vs\setup\..\wcu\sse\SQLEXPR32.EXE" -q /norebootchk /qn reboot=ReallySuppress addlocal=all instancename=SQLEXPRESS SCCCHECKLEVEL=IncompatibleComponents:1 SQLAUTOSTART=1 ERRORREPORTING=2 /watsongenman=SQL .mft [09/30/05,10:15:38] Microsoft SQL Server 2005 Express Edition x86: z:\vs\setup\..\wcu\sse\SQLEXPR32.EXE exited with return value 70032 [09/30/05,10:15:38] InstallReturnValue ...Show All

  • Visual J# Need help

    I don't really get how to use J#. I kind of use Qbasic, but this is completly different. Could someone make a very simple program for me that will teach me how to do the basic things like type to the screen and using variables Eventually I want to make an RPG with 3D graphics and I was told that this was a good language to do this on. Can anyone help What on earth made you choose J#, the least used .NET language If your background is in a BASIC type language, you'd find VB.NET far easier, and better supported, although I'd say C# has the best support overall. Certainly, I don't think there are J# samples i ...Show All

©2008 Software Development Network