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

Software Development Network >> Carter Medlin's Q&A profile

Carter Medlin

Member List

Roman T
Monique2005
dataMonkey
grandyeti
Guillermo Leal-Collazo
jyabc168
George Longmire
virnoche
john.d
Luther Smith
JorgenL
Jason Pricket - MSFT
epion
Todd Bannar
Dan Bunea MSDN
shahji
SteveJ
Grant Hodson
WIPIT
Jurek
Only Title

Carter Medlin's Q&A profile

  • Visual Studio Team System Deleted Project Successfully.. Recreated the project with same name/Problem is that the reports run but are all blank..

    I want to use the same name for a project that I deleted. I deleted the project because the reports were not working. After noticing that TFServerScheduler was not running, I quickly fixed that problem. All the services are now running and the problem exist for projects that were created when TFServerScheduler was not running. I create the project with the same name successfully without any errors. Reports display for new projects that hasn't been created before with the same project name. How can I get the reports to show for these projects that I created with the same name as previously deleted projects Warehouse is updated also. ...Show All

  • Visual C# Windows program startup

    Just want to know how can my application can start before anything is displayed i.e taskbar .........i want my application to run first before any service or another program runs........i know we can place program in start up folder (this is not solution for my problem).......just want to take control over windows by my application .......thax Hi! Why do you need such system-controlling application Hope you not going to try to write some virus Anyway, you can do this by many ways: create driver, create service add to registry information to start application at system startup time... All depends on what do you need... And one ...Show All

  • Visual Studio Team System How do i set the order in which to execute my unit tests?

    I tried setting the 'priority' of the unit tests so that they would be executed in the order i wish (i.e. priority 1,2,3,..etc.). However the unit tests are always executing in some random or unknown order which i cant figure out. Each of my unit tests has a dependency on the previous test that ran, so the order is very important to me. thanks, Craig Hi Craig If order of your tests is important, then you should use an Ordered Test. 1. Add an ordered test to your project 2. Add all your unit tests to the ordered test, in the order that you want them to execute 3. Run the ordered test That is the wa ...Show All

  • Visual Basic Help with managing processes

    Hi, i have started to build a antispyware program. Now, i want to make the resistant shield that stops spyware running at a process. Then i want to make something that detects sort of processes ex : istsvc.exe(istbar) and shows an alert and stop the process. Can someone help me with that code Yes, good spotting Dustin. GetCurrentProcess will return YOUR applications process, not all processes. Change your definition as follows; Dim currentProcess () As Process = Process. GetProcesses() That should fix it...  ...Show All

  • SQL Server Getting exception on executing ExecuteCellSet on AdomdCommand object

    I'm trying to execute an mdx query in C# and getting exception on calling ExecuteCellSet() on AdomdCommand object, This is the code snippet // initialize a new adomdcommand object for the specified connection objCommand = connection.CreateCommand(); // supply the command text for the adomdcommand object objCommand.CommandText = queryString; // attempt to run the command on the cell cellset try { objCellSet = objCommand.ExecuteCellSet(); // return the retrieved cellset return objCellSet; } catch (Exception ex) { Console.Write("Exception: " + ex); objCellSet = null; return objCellSet; }   Exception: S ...Show All

  • Visual C# newbie question : I have to use a C library in a C # project...

    hi I have to use a library written in C language but I can not use the old "# include file.h". What is the simpliest way to use this library Do I have to make a C++ class with my C library in it, and add it to a new C++ project in my solution or do I have to make a dll Or ... C # is great but I do not find it very easy to use with classical code like C... Thanks for helping me !!   iznogood wrote: I have to use a library written in C language It isn't really clear what you mean by 'use'.  Are you trying to combine the source statements in the C file with your C# program &n ...Show All

  • Visual FoxPro object is not defined but uncatchable

    It is a very strange situation and I have tried various combinations to beat it for a few days--to no avail. The code kept getting more complicated so bear with me please. The issue here is that there is a treeView and an outside button that is supposed to trigger some action. This action (search) needs TreeView.SelectedItem.Text and Tag properties. If I forget to make a selection beforehand the Type (" SelectedItem") is Undefined ("U") and I hoped to catch it and issue a warning. It turns out I cannot . I do not understand why. It seems in many other situations similar traps work fine. In desperation I began using two co ...Show All

  • Visual Studio 2008 (Pre-release) Use the queues to intercomunicate two WCF services in IIS

    Hi I have two WCF services hostedin IIS in two separates Windows 2003 server. A WCF service (A) makes oneway request to another WCF service (B) I would like A could make request even when B is down, to do this I suppose that I need queues. It is possible to use NetMsmqBindings in services hosted in IIS Like I use 2003 server could http.sys solve my problem without the necessity to use queues bindings Thanks Javier1 We can't host 'net.msmq' apps in IIS 5.0 or IIS 6.0 If we try to host MSMQ binding apps in IIS,we will get this error message Exception: =========== [InvalidOperation ...Show All

  • Windows Forms Stop DataGridView from re-drawing itself?

    Hey everyone. I know this is probably a stupid question but it's been bugging me for several days now and I could really use some help. OK. I have a DataGridView on a windows form listing student names, majors, etc. If the user double-clicks on that datagrid, a separate form opens up with the fields for the user to be able to edit that record. Here is the code I use to fill the datagridview (on the main form): Public Sub GetStudentList() Dim builder As New SqlConnectionStringBuilder() builder.ConnectionString = strDBConn dsStudents.Clear() Using connection As New SqlConnection(builder.ConnectionStri ...Show All

  • Visual Studio Team System TF31002 with beta2 on VSTS and VSTF

    I have an install of the August CTP for VSTS with the TFC client, and an install of VSTF running beta 2. The TFC client cannot connect to the server, getting the following error: TF31002: Unable to connect to Team foundation server... I have verified that the connection information, my credentials, account status, etc. are correct, and I can see via netstat I have an open connection with the box. Any ideas as to what is going on I can hit the http://servername:8080 and get the usual 403 error, so I know IIS is functioning. If it is a versioning issue, can someone tell me what versions will work Thanks! Ryan Get TFS Beta 3 along with t ...Show All

  • SQL Server connect to web service?

    Is it possible to connect to a web service from Analysis Services to populate a cube Can someone point me to sample code or documentation ...Show All

  • Visual Studio Express Editions another novice question

    I'm a civil engineering graduate student wishing to learn how to program in VB.NET so that I could develop an application that extracts data from ms visio, ms excel, and ms project. Can Visual Studio Express Edition help me or is VBA adequate It seems to me that using VB.NET create a more streamline application, plus, I'd like to get into developing as hobby. Any advice will be gladly welcomed. Thanks. All Office applications expose a clearly defined and well documented object model that you can exploit in your .NET applications. There is plenty of information available on MSDN about doing so, under ...Show All

  • Visual Studio Helpful tips

    Am moving crystal reports to reporting services in anger. Am discovering the following points as I go along that may be interesting to others doing the same. If anyone knows something I have said is wrong, or wants to add a useful tip please feel free to comment as I am hoping other new RS users will find this thread useful. Multi-column reports dont show up in preview mode, excel or html, only pdf, print preview and print. Multi-column reports dont work in subreports. If you needed a multi-column report dont worry, just break up your rows of data into a new dataset with n*2 columns and put them into a normal table in your report. ...Show All

  • Visual C# jump in between reading XML

    hi.. im reading a XML file using XMLTextReader, after reading some contents i want to jump back to first statement og the XML file...Is it possible .if yes plz help me out.. thanks an XMLTextReader provides a FORWARD-ONLY, read-only access to streams of XML data. you can use the XMLDocument class that will enable you to navigate the XML stream. ...Show All

  • Visual C++ Code used to clear text boxes

    im new to c++, and i would like to know the code that you need to use to clear text boxes. regthesk8r wrote: thanks.its a start.but now the problem i have is that the code that has been suggested does not work.keep getting a message saying 'Property Value is not Valid'. the code im trying is: textBox1->text = ""; It's T ext - the first T is in uppercase. ...Show All

©2008 Software Development Network