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

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

JEA

Member List

Kento
Farpetrad
Philip Coyner
Sandeep.rao
Ron K.
Andrea Ramacciotti
BatDeveloper
Hugo Batista
Robert A. Wlodarczyk - MSFT
Shan McArthur
alunlee
Ken Cooper
lindah
grouper
ddwinter
Rebecca Karma
AnandDeshmukh
khaleel
Jake Pratt
Nksingh
Only Title

JEA's Q&A profile

  • Visual Studio Team System No workspace exists for the given Team Project

    I get the above error when trying to set up a new Build Type for a Team Project I just created. I was able to successfully create the project and the corresponding source control branch, as well as add a solution to it (which successfully was added to SCC also). All of the workspace mappings between my local folders and SCC seem to be valid and working.  It does not seem that the workspaces it is looking for are the same workspaces as these I suspect that this problem may stem from the fact that I had previously created a project under the same name and deleted it using DeleteTeamProject.exe (successfully, or so I thought). Is the ...Show All

  • .NET Development SQL Server Database Connection

    I posted this question before, but my post was deleted before I got an answer.  So, I'll try again. I have a SQL 2000 database that I access from a web server (IIS)  running on a Windows 2000 Server.  Now that I moved both web pages (ASP) and database to a Windows 2003 Server Enterprise Edition it no longer makes a database connection.  I still have a copy of the web pages on my Windows 2000 server and it opens a connection on the SQL 2000 database on the Windows 2003 Server, but not the Windows 2003 Server web pages . I tried both a direct connect and DSN but no dice.  I can use SQL Enterprise Manager (t ...Show All

  • Windows Forms DataGridView: Prevent CellEnter?

    I want to prevent any cell in a (bound) DataGridView in a read-only column from being selected. The following code works only with the "on error resume next"; the error being: System.InvalidOperationException was unhandled   Message="Operation is not valid because it results in a reentrant call to the SetCurrentCellAddressCore function." which makes a certain amount of sense. Here's the code: Private Sub cGPDataGridView_CellEnter(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles Me.CellEnter    On Error Resume Next    If Me.Columns(e.ColumnIndex).ReadOnly = T ...Show All

  • Visual Basic DataView sort

    If i put the dataview as a datasource of a datagrid the sorting works fine. If i load the records one by one from the dataview the position of these records is the same as before the sort. How can i avoid this Not sure, but: Don't access the dataview directly, if you want to access the rows as the datagrid sees them. Go through the currencymanager' List object ...Show All

  • SQL Server Replication porblem

    Hi everybody, i got this error message while i'm trying to execute my replication job. "error 4813" Expected the text length in data stream for bulk copy of text, ntext, or image data." Does anybody have an idea about it thanks Let me know if the workarounds in the below link do not work for you. http://www.starquest.com/Supportdocs/techSQDR/SQV00DR0013_BCPError.html ...Show All

  • SQL Server Serious limitation in SQL server installation

    I am trying to install the server in a non-system drive.  I have to install the server in a diffferent folder like (E:) instead of the default C: due to existing partition that I have to continue to have (due to reasons that include security). Even though I selected this drive and every thing else (Program Files etc) the same, the install program still asks for over 2 GB on C drive. I checked each of the install options and found that most of this space is required by Books and client services which themselves need 1GB.  So I can do without them for now.  But then how do I get them installed   I can accomo ...Show All

  • Visual Basic Creating a file list

    How would I accomplish the following: Create an array containing the names of all files in a directory. Delete each file contained in that array from the directory. Keep track of the progress with a progress bar. I can guess on the last one but creating a list of files is giving me some troubles. With the BackgroundWorker make sure WorkerReportsPrgoress property is set to true. Here's an quick overview of how it works: 1. You can RunWorkerAsync() on the backgroundworker object, and whatever is in it's DoWork event handler executes in another thread. You can put some data in e.Result, which will be passed to RunWorkerComplet ...Show All

  • Visual FoxPro please interprete this error

    I opened up VFP9err.log file and found a few messages. They are infrequent, I get them about twice a month. They are all the same. What does it mean I think it talks about an OLEdrag. What kind of drag is it Could you explain in detail. Many thanks. Fatal error: Exception code=C0000005 @ 01/11/06 03:21:54 PM. Error log file: C:\Program Files\Microsoft Visual FoxPro 9\vfp9err.log Called from - toolbox.o_1ph0wtk58.otoolcontainer.o_1ph0wtk8t.cmdaction.olecompletedrag line 0 { } It is simply VFP's main error log when the program crashes. It says that you got a C0005 error (the equivalent of the old GPF) and it was caused by the toolbox ...Show All

  • Visual Basic Problem VB6 to VB 2005 conversion

    I used to do this with VB6. Type Record STat As String * 4 PkID As Integer SID As Integer SName As String * 35 Msg As String * 100 End Type Dim Rec As Record Rec.SID = Val(lblTo.Tag) Rec.STat = "M" Rec.SName = lblTo.Caption Open filename & ".log" For Random Shared As #1 Len = Len(Rec) Dim Pos% Put #1, getPos(1, "M"), Rec Close #1 I searched a lot and am unsuccessful. I don't know exactly what to do for doing above task. I will be very greatful if anybody can help in this regard. Thanks. Try defining the structure using the vbfixedstring attribute as in the following ...Show All

  • Windows Forms Designer doesn't generate code for Databindings in an IBindableComponent

    I was raring to use business object data binding in .NET 2. Then I attempted to bind the error property on a text box (provided by the error provider) to a value in my business object. Much to my dismay a run-time error was generated. It appears that the designer does not know to handle extender provider properties differently when binding to them. Given the way that simple data binding works I understand the reason why this is the case. However if MS wasn't going to implement a workaround then extender provider properties should have at least been excluded from the bindings list in the designer! Disheartened but undeterred by this oversi ...Show All

  • Visual C++ VS 2005 Debug Settings

    Years of experience with VS6, VS.NET (v7) and never ran into this: Simple HelloWorld C++ console application. When I try to debug it, I get "Debugging information for 'helloworld.exe' cannot be found or does not match. Binary was not built with debug information." I checked the project options and changed the linker option to generate debug info. Now it executes, but something totally different; going into file crt0.c and gs_support.c, never executing my main() program. Anybody know what's going on TIA Pete P.S. I have a more serious app that was developed with VS7 and that I need to debug. I'm running into the same problem with ...Show All

  • Windows Forms Draw Windows Standard SizingGrip

    Hi, I was wondering if anybody has a sample how to draw the SizingGrip by overriding WndProc Thanks, Tom Tom Frey wrote: Hi, I was wondering if anybody has a sample how to draw the SizingGrip by overriding WndProc Thanks, Tom You'd have to do this in the paint handler. Use DrawFrameControl with DFC_SCROLL and DFCS_SCROLLSIZEGRIP (via P/Invoke). ...Show All

  • Visual Studio Express Editions Some of the registration benefits are missing...

    I don't see the iconbuffet or e-books and articles. Has anyone else been able to access these See the following post: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=202376&SiteID=1 -Scott Currie (DDCPX PM - Microsoft) ...Show All

  • Visual Studio Express Editions How can I programatically create an "Access" Database, Specifying Name, Loaction, and Fields e.t.c.?

    I have a project that gives users the ability to save their results to an "Access" (not sql) Database. I now would like add the ability to create an Access databae to save their results. But first, I need to programatically check first to see if the users PC has a copy of Microsoft Access, then if so, allow them to specify a location to create the needed database... and so on. Mikeeee Hello Mike... Here are a few articles that should clear things up: http://www.vbforums.com/showthread.php t=251384 http://www.freevbcode.com/ShowCode.asp ID=5797 If I may...rather than creating somethi ...Show All

  • Audio and Video Development Help! Installation not working

    I downloaded the HD DVD Programming Guide, installed it, but then couldn't find the program file or document anywhere on my computer. Is it a document or is it a program I went to Start:All Programs on my XP Pro PC and couldn't find it. Is it somewhere else on my computer Thanks, David Hi David, The current download is just some documentation and an object model diagram. You can this in: C:\Program Files\Microsoft\HDDVDProgrammingGuide (Assuming you used the default install path) Stay tuned for more interesting downloads soon... Peter http://blogs.msdn.com/ptorr/ ...Show All

©2008 Software Development Network