Software Development Network Logo
  • Visual Studio
  • VS Team System
  • Visual C++
  • Visual Basic
  • SQL Server
  • Windows Forms
  • Visual C#
  • .NET Development
  • Visual FoxPro
  • SharePoint Products
  • Windows Vista
  • Audio and Video
  • IE Development
  • Game Technologies
  • Microsoft ISV

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

cplusplus1

Member List

Will George
Anonymous X
Christopher Bernholt
mabster
laserbeam
piers7
Sideout
Daticus
Larrybird02744
Jason D. Camp
roy_b
weirdbeardmt
Benjamin Coats
FassaBortolo
laboremus
kuntushi
remedios_
fiNAL.Y
ACHawk
afshar
Only Title

cplusplus1's Q&A profile

  • SQL Server An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue

    Hi Guys, Can anyone help me with this error An OLE DB error has occurred. Error code: 0x80004005. An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80004005 Description: "Protocol error in TDS stream". An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80004005 Description: "Protocol error in TDS stream". An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80004005 Description: "Protocol error in TDS stream". An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80004005 Description: "Communication link failure". An OLE DB record is available. Source ...Show All

  • Visual Studio Team System Team Foundation Server vs SubVersion

    Hi, Did any one has done comprehensive report comparing Team Foundation Server vs SubVersion vs VSS The comparison will be toward business decision. - Cost analysis. How much saving if using TFS compare to others - Efficiency & Productivity - Quality Assurance. - etc Thanks, John Thank's for all the feedback, look's like Team Foundation Server still new. Not too many business decision being make yet. Correct me if I am wrong. I am trying to find out how to convince top level management to use Team Foundation Server. However, thanks anyway for all the feedback. ...Show All

  • SQL Server Limiting Results from MDX query

    Is there any way to specify that I only want the last 16 rows of an MDX query Thanks. What I actually need is to have my results only return values that fall within a certain date range. It's kinda complicated. First I need a cumulative running total of hours charged, then after that I need only the last 16 weeks of data. I was thinking of something like this, but it's not working. WITH MEMBER [Measures].[CumulativeTimeCharged] AS 'SUM({NULL:[Date].[Week].CurrentMember},[Time Charged])' SET [SixteenWeeks] AS 'Filter( [Date].[Day].Members, [Date].[Day] >= STRTOMEMBER(@graphStartDate, CONSTRAINED) AND [Date].[Day] <= STRTOMEMBER(@ToDate, CONSTRAINED))' SELECT NON EMPTY { [Measures].[CumulativeTi ...Show All

  • .NET Development "Not enough storage to complete operation" Exception

    Hi, I am using the Excel object from Microsoft Excel 11.0 Object Library version 1.5 to export data to Excel. I received the error "Not enough storage to complete operation". Below is my source code. The error is thrown by the line "excel.Cells[rowIndex + 1, ColumnIndex] = row[col.ColumnName].ToString();" Does anyone know the potential causes and possible fixes Thanks Excel.ApplicationClass excel = new Excel.ApplicationClass(); excel.Application.Workbooks.Add(true); Excel.Worksheet ws = (Excel.Worksheet)excel.ActiveSheet; ws.Activate(); int ColumnIndex = 0; foreach (DataColumn col in data.Columns) { ColumnIndex++; excel.Cells[1, ColumnIndex] = col.ColumnName; } int rowIndex = 0; foreach (DataRow row in data.Rows) { row ...Show All

  • Software Development for Windows Vista .net 2.0 can't delete files on VISTA

    When attempting to run a .net 2.0 application on VISTA Ultimate Edition, the program contains the following logic: if ( Directory .Exists(currentDrive + Utility .FOLDER_APPLICATION_OLD)) { di = new DirectoryInfo (currentDrive + Utility .FOLDER_APPLICATION_OLD); foreach ( FileInfo fileDelete in di.GetFiles()) { try { fileDelete.Delete(); } catch ( Exception exCantDelete) { } } } It is always indicated in VISTA that the application can't seem to delete files of type *.exe, *.dll, etc. Is there a restriction that VISTA won't allow this to occur I am logged in as administrator when I run this program. The exception is ...Show All

  • Visual C++ Any memory issues using VS2003 dll's in VS2005 applications ?

    Are there any issues with compiling VS2005 applications using dll's built with VS2003 The application appears to run fine in release build, however when run in debug we see a breakpoint hit in _malloc_base() with a popup warning that there may be a corruption of the heap. I answered a similar question in this thread: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=716799&SiteID=1 see if it helps. ...Show All

  • Smart Device Development program output string to textbox on WM5.0

    After highlight a textbox on a webpage, users go start then select a program which will automatically enter a string text on the textbox. Can this be implemented with visual studio 2005 I am using a Imate jasjar which is running WM5.0 Many thanks Let me try and understand your question. You have a webpage open in Pocket Internet Explorer. A particular textbox has focus on that webpage. At this point, you want some other app to insert some text into the textbox. It would help if I knew why you want to do this - we could try giving you an alternate mechanism Now, this is not going to be directly possible or easy but you could try finding the handle to PocketIE and then to the textbox using ...Show All

  • Visual C# Window message without creating a form?

    Hello, Do I need to create a form just so I can have a handle I want my application to listen to window messages but it actually has no forms. It seems a bit wasteful to create a form just to listen for window messages, cant I give my entire application a WndProc function I'd like to use the bare minimum resources to do this. The form will have nothing on it so I think the best way would just be to use CreateWindow() but I'm not sure what else I need to use this, or how to create a WndProc function for it. Is there any basic code examples for creating a window using purley the API IsshouFuuraibou wrote: One thing to note is that the form itself is not what caus ...Show All

  • Commerce Server Another error when trying to use catalog or marketing manager refersh site cache option

    hi, Error message from event viewer listed (below): System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> There was an error generating the XML document. ---> Instance validation error: '0' is not a valid value for System.Net.HttpStatusCode. at Microsoft.CommerceServer.ServiceAgent.TryHandleWebMethodException(Exception ex, SoapHttpClientProtocol serviceProxy) at Microsoft.CommerceServer.Internal.Marketing.MarketingServiceProxy.AuthorizedInvoke(String methodName, Object[] parameters) at Microsoft.CommerceServer.Internal.Marketing.MarketingServiceProxy.RefreshCache(String cacheName) at Microsoft.CommerceServer.Internal.Marketing.AgentMarketingSystemImpl.RefreshCache(String cacheName) at Microsoft. ...Show All

  • Visual C# native types

    Hello. I created a simple dll which export a single, simple, unmanaged class using C++ and VS2005. The class contains only simple data types (int and float). I compiled this class with /clr flag. Now I want to use this class in a C# application. After I added a reference to this dll in C# application I'm able to instantiate an object of this type but I can't call any method of this class. (Error: the class dose not contain any definition for methodName). Using ObjectBrowser I can see all methods of this class. I written a simple managed wraper class, and this works. There is any way to work around without writing a wraper class I'm wonder way I can instatiate the class but I can't call its methods. Thank you. ...Show All

  • Windows Forms this.BringToFront(); doesnt work

    in my C#.net 2005 winform app, i have formA and formB. there is a buttonA on formA which opens formB. by default, when formB is opened, if i click on formA again, it sould be brought up to the front. However, it didnt happen in my case, i tried to code into the Click() event of formA: this.BringToFront(); it didnt help. I also tried this.Focus(); it didnt work either please help other forms all work fine, only this one. I actually declared the instance of this formB in the application.settings, i think this caused the problem. but i have to use this reference anyway, is there still a way to bring formA to front ...Show All

  • Windows Search Technologies Introducing the WDS help forum

    Thank you for visiting the Windows Desktop Search Help Forum. This forum was created so that we could better serve you - our customers. This is the place to ask general questions, seek trouble-shooting advice, or simply learn more about Desktop Search. Members of the Windows Desktop Search team will be monitoring this forum regularly and we'll make our best effort to answer your inquiries in a timely fashion. Please keep in mind, however, that we are not support staff and it may occasionally take a little while to get you the answer you need. In such cases, we'll try to let you know when you can expect to hear from us. Paul Nystrom - MSFT Thanks for starting this forum. Now on with the reasons why I am here: 1. Why isn' ...Show All

  • SQL Server Parameters in named queries

    Hi, I try to build a named query that would either take a parameter or run a procedure to get a value. The idea is to have a named query used by the cube partition. The named query must limit the lower boud time item according to a complex logic build in a stored procedure. First I am not sure if it will work even if I can get the named query to behave this way, however I would rather avoid to alter the view behind the cube. If possible, how can I create a parameter in a named query, something like this in pseudo-code = (EXEC up_FirstCrawl_Qtr) SELECT * FROM dbo.V_ST_Crawl WHERE (RSD_QRTR = ) Or SELECT * FROM dbo.V_ST_Crawl WHERE (RSD_QRTR = (EXEC up_FirstCrawl_Qtr) ) Thanks, Philippe ...Show All

  • Visual Studio Team System Baseless merge No Content changes not auto merging...

    We are trying to do a baseless merge and the conflict resolution comes up and when we select a file that has not conflicts it is not giving us any auto merge option. If we try to do the auto merge all, it fails because it says we cannot merge them because the two files have changes but we verified that they don't. Now if this was one file it would be no big deal but we are talking about thousands of files and there is no way we are going to resolve each file manually....if this is how baseless merging works, how useful is it  Also, when I execute "tf resolve /auto:acceptmerge" I get the following error TF10010: Source control unexpectedly encountered the end of the stream: The char acter was incomplete at stream offset 3841. ...Show All

  • Visual Studio Team System Questions about Load Test??

    Hi I have been doing load test on My Pc having WIN XP and i have not added up any other computer as agent.My local PC is the controller.I just go and make the setting in Load test simulate load and i get the results. Now my concern is Is this effective Load Testing because it only happeningon my local pc with a normal configuration and not that of sever also i recorded some requests in fiddler and then imported them to VSTS and simulated load i got Avg Response time how ever the page details table in LOAD TEST shows null so how do i reflect Avg response time ,Avg wait connection time via reports as i generated reports also but found them of no use.Rest all other table were having data expect those with page details etc.WHY ...Show All

©2008 Software Development Network