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

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

TuscoGrocers

Member List

refaeldakar
TheDoctor30306
Craig Butler
am05
Uttam5555
allkesh
S Burris
DLGrubb
HerbHM
MSpencer
devender 1623
celina
Kashif Chotu
binglehopper
TheMegalomaniac
Stephen Todd MSFT
Toky
uzivatelZPrahy
n4cer
Ian Morrish - MSFT
Only Title

TuscoGrocers's Q&A profile

  • SQL Server Cannot Start SQL Server Database Services - SQL Server Express April CTP

    I am new to SQL Server.  I tried to read as much as possible in newsgroups prior to this post.  I have tried several different ways to install this without success.  The last time I attempted to install as a local service and I unchecked hide advance configuration.  I am running Windows XP SP2 with all the latest updates.  Is there a solution to install this properly   Any help would be greatly appreciated! -------------------------------------------------------------------------------- Machine         : ServerName Product         : ...Show All

  • Windows Forms autocomplete AND dropdownlist combobox

    I want to give the user the functionality of the autocomplete, allowing them to enter one or more letters and receive a list of possible entries, whilst also ensuring that the user can only select an item from the list and not type any old thing. I know that I cannot use the dropdownlist list option along with autocomplete, but how can I make sure that the user does not enter invalid data Basically, at all times during the edit process, I want the data in the combo to be valid, so if a user enters invalid data, maybe the previously selected entry should be selected Whatever works best. I want to have the functionality of both autocomplete a ...Show All

  • Windows Forms strange error when 'using' system.runtime.interopservices

    or in my language - using namespace System::Runtime::InteropServices if i do this then i get this error :\Program Files\Microsoft Visual Studio .NET 2003\Vc7\PlatformSDK\Include\WinBase.h(3139) : error C2872: 'FILETIME' : ambiguous symbol         could be 'C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\PlatformSDK\Include\WinDef.h(354) : _FILETIME FILETIME'         or   ...Show All

  • Visual Studio Team System Publishing to TFS improperly changes Saved property of Project file. Help!

    How can I trick Project to think an enterprise project file has not changed -Or- Publish to Team Foundation Server without alterting the Saved property of the Project file I have a business need to publish an enterprise project plan to both Project Server 2003 AND to Team Foundation Server.(TFS) I have solved most of the problems but one. I have written a Macro in Project Pro 2003 to publish a project to TFS , and it works fine. (I first save the project file and publish to Project Server.) Here's my problem:  Publishing to TFS somehow sets the project "Saved" property to false (indicating that the file has changed since  ...Show All

  • Visual Studio 2008 (Pre-release) Use custom attribute to execute some actions

    Hello All ! I have some questions on attributes. I would like to be able to tag my method so they can behave specially. For example I would have imagined to do something like [TestMethod] [UseDataSource("myConnectionString", "my Dataset file")] public void TestDataSource() {     //do some testing }   I have imagined that so my test code contains only what I am testing and some attributes is specifying which data it has to use in DB. But to make it wokr correctly, I need a way to get some other code being executed when my method is called. So is there a way to have a special method in my attribute to be calle ...Show All

  • Visual Studio Team System Warehouse Troubleshooting Guide

    This will be a living document and as we troubleshoot issues, we will add to the query and document. It will culminate in a consistency checker tool which automates the checking and ultimately other functions like kicking the warehouse etc... Feedback is welcome and I will update this data. Symptoms: The data in the reports is stale and doesn’t seem to ever get updated. The reports error out. An error has occurred during report processing. (rsProcessingAborted) … Background: Data in the operational stores (Work Item Tracking, Version Control, Team Build, Integration Services) is pulled into a relational database (TfsWar ...Show All

  • Windows Forms ArgumentException in DrawString

    I have some code which worked fine in framework 1.1 but is giving me an ArgumentException in 2.0.  The code follows: using ( Font fntDraw = new Font ( "Arial" , 16, FontStyle .Regular)) {    Rectangle rcLayout = new Rectangle (0, 0, _cpixCell, _cpixCell);     StringFormat sfmt = new StringFormat ();    sfmt.Alignment = StringAlignment .Center;    sfmt.LineAlignment = StringAlignment .Center;    g.DrawString( "F" , fntDraw, br, rcLayout, sfmt); } The DrawString call generates the exception.  I can draw pretty much anything else into this Gra ...Show All

  • SQL Server SQL Server 2000 DTS Tools Web Download

    Is the Web Download to install SQL Server 2000 DTS tools available yet If so where Thanks Darren Sometimes happen the same and even only appears the arrows. I had a lot of problems with this messing up my Sql2k Entreprise Manager. ...Show All

  • .NET Development Access Exception to IOleContainer.EnumObjects() !

    Hi, everybody! I want to access IOleContainer.EnumObjects() from c#, so I wrapd IOleContainer Interace with managed code, and get the IOleContainer object correctly. but found the Exception of  "Object reference not set to an instance of an object". Thanks for any help. Here is the code: //interface IOleContainer : c# wrap public enum tagOLECONTF { EMBEDDINGS = 1, LINKS = 2, OTHERS = 4, ONLYUSER = 8, ONLYIFRUNNING = 16, } [ComImport, Guid("0000011B-0000-0000-C000-000000000046"), InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)] public interface IOleContainer { void EnumObjects([In, MarshalAs(UnmanagedType.U4)] int grfFl ...Show All

  • Visual Studio Team System update several places in SCC using TeamBuild task

    Hi, I have a global Toolkit DLL, which is used in different other TFS-Projects and thus is added to a "ressources" folder in each of them. ie: Toolkit   produces toolkit.dll Project1   ressources     toolkit.dll     toolkit.pdb Project2   ressources     toolkit.dll     toolkit.pdb ... now when a special TeamBuild in Toolkit is executed, I want the TB-Script to checkout and update all instances of this dll in all "ressources" folders of the tfs-projects. could someone give me a hint which tasks I must implement in order to be able to do this ...Show All

  • .NET Development Networked Application Scenario (any ideas would be great!)

    I've posted several questions about network streams but as I haven't had many replies I'm guessing I'm going about it in the completely wrong way! This time, I'll try to explain what I need to achieve and hopefully someone out there will be able to help me with a method. I'm building a networked application for use at my college (over a LAN). The server needs to be multi-client enabled, and hold information about each client individually (e.g. IPAddress and some custom information). The server would receive various messages from the clients, including Log In requests. The sever would be able to 'reply' to individual clients after re ...Show All

  • .NET Development XmlElement[] as return type

    I'm coding against an API and have a method which receives an XmlElement[], extracts a subset of data from the XmlElement[] and must return a new XmlElement[] containing the subset of data. I can obtain the data I am looking for however I am at a loss as to how to create and populate an XmlElement[] to return to the caller of the method. Any suggestions are greatly appreciated. You could use a List<T> generic class and then the ToArray() method. List < XmlElement > listElements = new List < XmlElement >(); listElements.Add(element ); // Populate list XmlElement [] arrXmlElem ...Show All

  • Visual Basic get text after first space

    how do i get the text after the first space of textbox1 in the string "lastWords" Thanks in advance. Hi Andre, Try the following code: Dim strOriginalString As String = TextBox1.Text Dim intLocationOfFirstSpace As Integer = InStr(strOriginalString, " ") Dim strBeforeSpace As String = Mid(strOriginalString, 1, intLocationOfFirstSpace) Dim strAfterSpace As String = Mid(strOriginalString, intLocationOfFirstSpace) MsgBox("Location of space : " & intLocationOfFirstSpace & vbCrLf & _ "Text before space : " & strBeforeSpace & vbCrLf & _ "Text after space : " & ...Show All

  • SQL Server TableAdapters and Caching?

    Hello, I am interested in being able to be notified when someone inserts a new row into a table. I have a list of objects bound to a combo box using table adapters in Visual Studio.NET 2005.  I would like for my application to be able to subscribe to this notification and know if the list the app has needs to be updated when the user tries to pick an object. I looked through the vb code created for the tree to find a place to hook in a SqlDependency, however the place where I think I could hook it up may be overwritten when the code is auto-generated. I attempted to copy the Fill command from the auto-generated file tree.des ...Show All

  • Smart Device Development Activesync service provider in C#

    Hi, I must create an activesync service provider in C# How Can I make it Where can i find documentation or example I use VS2005 professional. Chech the RAPI and the especialy the communication library . ...Show All

©2008 Software Development Network