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

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

SpliCEd

Member List

Sice
Mister3957
Rich M Turner
Jitu
THumphr
S2
Mahesh Hegde
TomyJack
yaaaar
Raf Franco
Richard Berg MSFT
iammai
Arnaud Weil
Mark Cann
AlexMil
allenbc
JEFFKIM
don1234
GaryBROE
Sarat Gollapudi
Only Title

SpliCEd's Q&A profile

  • .NET Development SQL Cache invalidation across server farms

    Hello, I plan to cache our user objects (and maybe some others) on our system. We have a large web farm and users are "stuck" to a web server for the duration of the session by the load balancer. My questions are surrounding SQL Cache invalidation. Firstly, from what I have read so far, you can set it up for one or more tables in a database. Does that mean that if one user's data changes it will invalidate EVERY user object in th ...Show All

  • .NET Development Detecting SQL Server database existance

    I'm a beginner at using Visual Studio 2005 pro & SQL Server 2005 Express Edition and have just learned how to create a database file by issuing SQL Server commands through C# programming. I just want to find out what is the best way to detect if a database already exists on the system. My application currently creates my database, but I want to add in the ability to check if it is already present so that I can bypass the creation of the ...Show All

  • Visual C++ AssemblyInfo.cpp

       when I'm creating a new Console Application, My VisualStudio.net does not load the AssemblyInfo.cpp file.  What should I do   It loads all of the necessary header files but not assemblyinfo.cpp.  Or can anyone tell me how co create one. No repro here also. One comment. Win32 Console Application does not create assembly info. CLR Console Application wizard does generate assemblyinfo.cpp. Try this on another c ...Show All

  • Visual Studio IExtenderProvider the GAT way...

    Hello GAT Team! I have written an Extender for C# projects and for Solutions using the IExtenderProvider.  Specifically the extender is going after prjCATIDCSharpProjectBrowseObject (4EF9F003-DE95-4d60-96B0-212979F2A857) and vsCATIDSolutionBrowseObject (A2392464-7C22-11d3-BDCA-00C04F688E50). Based on which object is selected, it provides one of two seperate Extender Objects from the IExtenderProvider::GetExtender met ...Show All

  • Windows Forms do not allow change of text or deletion of a checkbox control

    I'm making a custom checkbox control, to which I'm going to give default text after the designer creates it.  I do not allow the use change the text.  Also I do not want allow the use delete it if its parent is not deleted.  What should I do to enable the rules Thanks for any suggestions.  Ok, I figured out the first part by overrides the text property and set it ...Show All

  • Visual Studio Express Editions libc.lib

    Does anyone know what replaced libc.lib An SDK i purchased requires libc.lib but I would like to use VC++ 2005 Express edition to program with, and I must link to libc.lib. What lib / libs have replaced libc You can not replace LIBC! There is no longer a single theraded CRT support in VC 2005.  You have to recompile the sources and use the multithreading CRT! In this case the correct library LIBCMT wil ...Show All

  • SQL Server Database recovery freezing server?

    I'm currently running Windows Server 2003 and just recently installed SQL 2005. I had a few databases that I was attaching from the old SQL 2000 server. I encountered a hard error and when I restarted Management studio, I found 4 of my databases were in recovery. Thinking this would be a short process, I let it run and did work on one of my other machines. Nearly 2 hours later, the databases are still in recovery and nothing appears to have chan ...Show All

  • Visual C++ ATLComTime.h and alignment

    Hello! I have the following problem: ATLComTime.h file breaks an alignment somehow. Steps to reproduce: Create an EMPTY Win32 Console project in Visual C++ 2003/2005, without precompiled headers. Add new .cpp file with the following code: #include <ATLComTime.h> #include <comdef.h> #include <activeds.h> int main() { // Compile time assert: fails to compile if alignment of ADSVALUE struct differs from 8 ...Show All

  • Windows Forms open login form like in taskvision

    hi, i see that in the taskvision application the login form open simultaneously the main form.. how i can replace it with my application i see the code on the main form and it call the DisplayLoginForm() on the load event.. if i try, my mainform not open first i've closed (with cancel or ok dialogresult) the loginform.. how i can thanx ...Show All

  • Visual Studio Frequent incorrect build results - projects skipped that are out of date

    Re-posting here at the suggestion of the Team System folks... The below was observed using Visual Studio Team Suite 2005 RC version. I have a solution with 17 C# projects - two .EXEs and the rest DLLs, including a number of unit test projects. I can't begin to relate how often I run into problems due to incorrect build outcomes - one or more projects were not built even though clearly out of date. I see this sort of thing when running ...Show All

  • .NET Development System.Web.Mail Help Please...

    Hello, I've tried searching and searching, but I've had no real luck. I'm working on sending an email via an external SMTP server (I'm trying to use Gmail.com, could this be a problem ) and then send to another email, which also happens to be a Gmail.com address. Now, before posting my code, I'd like to say, what I'm developing this for is basically a plugin for a program based on .NET 1.1, so I don't believe that System.Net.SmtpClient ...Show All

  • SQL Server Tool from SQL 2000, Missing in SQL 2005?

    My favorite tool ever in SQL 2000 was a little utility, a front end if you will for querying the system tables. It was under the tools menu and if you typed say 'account', you could find all objects containing the name 'account'- stored procs, tables, columns, etc. A GREAT little tool that few people seemed to use. Now I have 2K5, can't remember its proper name to google it by, and can't seem to find it anywhere, though I suspect it is burried s ...Show All

  • Visual C# creating a Word document

    I opened a New Project as a Window Application, added a COM reference to a Microsoft Word Object Library, then added "using Word;" to my Form1.cs and then attempted to open a document with Word.ApplicationClass oWordApp = new Word.ApplicationClass(); When I compile, I receive the following error: "The type or namespace name 'Word' could not be found (are you missing a using directive or an assembly reference )" What else do I need to do to ge ...Show All

  • Visual Studio Team System Where to download MSFWinBuild?

    I'm in the process of customizing the MSF Agile Process Guidance.  I have been using the Process Guidance Customization Guide from the Visual Studio October SDK. This guide mentions that the MSFWinBuild Tool is useful to pre-render the HTML files.  The guide says that this tool can be downloaded from http://msdn2.microsoft.com/en-us/library/ms243893.aspx . However, I can't find the download.  Where can I download t ...Show All

  • Visual C# How to handle events of Buttons created at run time

    Hi, I am creating buttons at the form load event of a form, Caption and ID of these buttons come from a database, I want to handle events of different buttons where each button perfirms different operation. Thanks and regards, kapil... Check out this MSDN Link, hope so this might help you http://msdn.microsoft.com/library/default.asp url=/library/en-us/vbcon/html/vbtskCreatingEventHandlersAtRunt ...Show All

©2008 Software Development Network

powered by phorum