SOTY_Programmer's Q&A profile
Software Development for Windows Vista VS2005 project build manifest error
When attempting to build a project in Visual Studio 2005 (with VS2005 SP1 and the Vista patch) on Vista Home Premium, I am running into an error when it gets to the manifest file. C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets(2071,9): error MSB3113: Could not find file 'Microsoft.Windows.Common-Controls, Version=6.0.0.0, Culture=*, PublicKeyToken=6595b64144ccf1df, ProcessorArchitecture=x86, Type=win32'. Has anyone else experienced this Is there somewhere I should be looking as to why it can't find this file EDIT: oops, in my haste to get this message out I forgot to include the contents of the manifest file. Here it is: < xml version = " 1.0 " encoding = " utf-8 " > < as ...Show All
Visual Studio Tools for Office Microsoft Office Access 2003 Developer Extensions and Visual Studio 2005
It's truly unbelievable that there appears to be no solution to this issue. After searching countless hours and getting caught in endless iterations following MSDN links, I still have no answer to the question that really shouldn't be that difficult. Microsoft advertises that the Microsoft Office Access 2003 Developer Extensions are part of Visual Studio 2005. I talked with a Microsoft representative who confirmed this before making the purchase of their product. I received the product and installed it, but there is nothing in the documentation that talks about the extensions. I simply need to deploy an application developed using Microsoft Office Access 2003 to a computer that doesn't have Microsoft Office Access 2003 installed on i ...Show All
SQL Server SSIS package listing by name
I have 100s of packages under one project and finding it difficult to locate a package since it is not in any order. Is there a way to list packages by its name - alphabetically sort Thanks Sorting SQL Project Files in SQL Server Management Studio ( http://www.sqldbatips.com/showarticle.asp ID=78 ) ...Show All
Visual C++ tcscpy_s Assert with no useable stack trace
I am porting a unix app to VC++ and now I have got all the libraries to compile the application is asserting in tcscpy.inl with the message Expression: (L"Buffer is too small" && 0). When I break on this line there call stack does not show where in my code this call has originiated. I am not calling tcscpy_s any where in the code but the call stack indicates the original call was strcpy_s. The output window tells me the exe was built without debug information "Binary was not built with debug information." but it is compiled with the /ZI option. I have tried rebuilding with the /Zi flag Does anybody have any ideas why the IDE thinks I have no debug information I have tried commenting out al ...Show All
.NET Development Possible bug in ServicePoint
Hi. I've found very strange problem while using HttpWebRequest objects. If I set ServicePointManager . MaxServicePointIdleTime = 0 ; and don't use keep-alive connections, e.g. connection is closed after request execution, and I use many parallel threads that execute different URLs, I run to a very strange problem when one or more threads hang, using VS I can say that they are hanging because of raise condition. There are some locks that are used in Connection object. It seems that when I call Abort on request because of timeout in the same time there is a timeout event from ServicePoint so I got that raise condition. I've solved problem by setting MaxServicePointIdleTime to 30 sec. ...Show All
Visual C++ how to get rid of 0xc0150002 error?
Hi all, I have this 0xC0150002 error when I tried to run my client.exe. I am making use of log4cplus.dll and have put it in system32 folder. What else must I do to make my program run I have been trying to run my program in a different pc. My client program was created using VS2005 with the log4cplus.dll in system32 and the include headerfiles of log4cplus placed in VS8/Common7/Include folder. It compiled nicely. Ok trying the Profile of depends.exe, I found out that the program successfully hooked up NTDLL.DLL. And later, it threw a 0xc0150002 exception. Any suggestions how I can go about it thx Atiz ...Show All
Community Chat Registry cleaners
Can someone tell me where I can get a free registry cleaner that is compatible with XP Home edition that is as good if not better than Registry Mechanic ...Show All
Visual Studio 2008 (Pre-release) Imaging::CreateBitmapSourceFromHBitmap() bug?
Hi, When beta2, I use Imaging::CreateBitmapSourceFromHBitmap() to create BitmapSource, it works. But after I updated June CTP runtime, I get a transparent bitmap. Is it a bug or the behavior changing CreateBitmapSourceFromHBitmap will use the alpha channel. If you are expecting an Rgb24 bitmap, then you should format convert to that pixel format. ...Show All
SQL Server Errors Deploying an SSIS package
Hi All, I hope someone can help becuase this problem is issue us several headaches. We are currently trying to deploy an SSIS package to a production server. The deployment goes fine, the package runs ok when executed manually. The issues start when we try and execute it under the SQL agent. Having gone back to the drawing board and spent much of the day reading various articles and applying the various options (especially those within the MS KB article 918760 ), we are still no closer to a resolution. The SSIS package was created under an Administrator, and the SQL agent runs under a different Domain Admin account. When we set up the Schedule to read from SQL Server or the SSIS Store the standard "Executed as user: D ...Show All
.NET Development listen port
hi please help me. I have a question about ports & sockets . I am trying to write a program that cans listen to the port 80/8080 and deagnose pdf or zip files from other files(html,...). then recive this files from port . I know how resice the file by c#.net but I do not know how deagnose files type . thanks. If you're reading the file over the TCP (i presume) port then you will have to read the first few bytes to determine the file type. That is pretty simple: for instance, the every PDF file starts with the byte stream: %PDF-<version number> where <version number is something like 1.3 or 1.5. Zip files start with the byte stream: PK Hope this helps. ...Show All
Visual C++ Sequence Class
hello, I have to implement a sequence class, however the header file is predefined [code] class sequence { public: // TYPEDEFS and MEMBER CONSTANTS typedef double value_type; typedef std::size_t size_type; static const size_type DEFAULT_CAPACITY = 30; // CONSTRUCTORS and DESTRUCTOR sequence(size_type initial_capacity = DEFAULT_CAPACITY); sequence(const sequence& source); ~sequence( ); // MODIFICATION MEMBER FUNCTIONS void resize(size_type new_capacity); void start( ); void advance( ); //set the current_index to the next number in the array void insert(const value_type& entry); //insert before the number with the current index void attach(const value_type& entry); //inser ...Show All
Visual Studio One or more rows contain values violating non-null, unique, or foreign-key constraints
Hi. i was Trying To read report and i got this error through reportviewer I'm No sure of wats wrong. I tried Searching the net it seems to be the Dataset Prob. But im positive Dataset is working as im using VWD dataset to bind data. even had a preview Which get the data i want. So it means its working. Which then shows that its Reportviewer thats gibing me this error. Appreciate any help thx "An error has occurred during report processing. Exception has been thrown by the target of an invocation. Failed to enable constraints. One or more rows contain values violating non-null, unique, or foreign-key constraints. " I love this forum... I just spent half a day chasing t ...Show All
Visual Studio ReportViewer
(Using VS2005 C#) -I have created a report using ReportViewer -Not connected to a datasource How do I assign values to the fields on the report.rdlc Right now I am just testing to see how I can assign values to the fields on the report at run time, no luck as of yet. Any suggestions how to access the field names in the coding form I have tried accesing the fields through reportViewer1.LocalReport() PLEASE help, I'm not sure how to do this at all...! Thank you Kt In a previous application using SQL reporting services I added the report parameters to the report header - this would give the user an indication of the filter ...Show All
Visual Studio Tools for Office Adding Panel or UserControl to document host item
I don't see Panel in the toolbox when customizing a host document (Excle Sheet). Is there a way to add my own panel and/or a User Control to the host document If I can add listboxes, textboxes, buttons, etc. why not allow to add a Panel as well. VS has created an additional class over my user control class that inherits from user control class. what is the best way to get that re-generated - other than deleting it from sheet designer and adding back again ...Show All
SQL Server Passing Parent configurations to child
Hi All, How can I pass configurations from Parent Packages to a child package I am using Execute package task to execute a child package but am unable to configure a variable to pass configurations to a child package. Thanks Not sure what you mean by this. What exactly do you mean by "pass a configuration". A configuration is defined in a single package and cannot be shared by other packages. The external resource that is used by a configuration CAN be used by as many packages as you want. note the subtle difference here. -Jamie ...Show All
