Robert Kozak's Q&A profile
Windows Forms "Specified <entryPoint> is not valid" while reading Application manifest?
Hi all, I'm trying to deploy a .Net 1.1 application using ClickOnce. All clients have .Net 2.0 installed (on which the 1.1 application runs fine), its just that the client code *has* to be built on the 1.1 platform. Hence, I can't use VS2005 to generate the manifest and deployment files for me, because it will cause the client code to be built for .Net 2.0 before generating the manifest and deployment files. So I figured I should use the Manifest Generator tool (mage.exe / mageui.exe) to generate these files for me, since it doesn't require my code to be rebuilt first. This seemed to work pretty well: just have Mage create a .exe.manifest file that contains all assemblies used by my application, and then have it create a deployment f ...Show All
SQL Server Inscope at Matrix subtotal
Hi, I've a simple matrix with 2 dimensions and on value with subtotals on columns and rows I'm trying to use InScope in order to control the URL on the subtotals. When I create the following expression (that I found in the site), I get only "In Subtotal of entire matrix" in all cells. =iif(InScope( "matrix1_ColumnGroup1" ), iif(InScope( "matrix1_RowGroup1" ), "In Cell" , "In Subtotal of RowGroup1" ), iif(InScope( "matrix1_RowGroup1" ), "In Subtotal of ColumnGroup1" , "In Subtotal of entire matrix" )) Please advice what is the subtotals name I'm using default names for all objects Thanks, Assaf In the ...Show All
.NET Development Error: Could not update; currently locked by user...
To all, I created an application in Visual Studio 2005 using C++ that transfers data from an SQL Server 2000 database to an Access 2003 database. During this transfer, particularly when alot of records are selected, I get the error: Could not update; currently locked by user 'admin' on machine 'GSANTIN' I know I am the only one accessing the Access database. The error occurs whether the Access database is on our network or on the C drive. Let me describe the data transferred. The smallest transfer would involve the analytical data from one wafer. There are 4 tables appended in the transfer. The first table, Lot, will add only one record to the table. The second table, Statistics, adds one record. The third table, Site, adds a ...Show All
Visual Basic Accessing Remote Computer's Information
Okay, I'm creating a Visual Basic .NET 2005 Windows Service. I need it to periodically access some remote servers for their information. Right now, I'm working with drive information, so I'm trying to get the total space and the amount remaining on the drive of the remote server. How do I go about doing that I'm trying to keep this service centrally located so that it can access 3 separate servers without loading and configuring it individually. I tried My.Computer.FileSystem.GetDriveInfo() and System.IO.DriveInfo, but, predictably, they only access local drives. Any help would be greatly appreciated. I hope I wasn't being too mean in my last post... I was just imagining someone asking for advice about b ...Show All
Audio and Video Development Please post your experiences burning discs for testing content
As a community service, can you please reply to this thread with your successful combinations for burning DVD discs for testing Just trying to get a list of options for folks who are trying to get content onto the players. In particular: Which type of disc did you use (+R, -R, etc.) Which software did you use to burn it What options did you have turned on etc. Not so interested in hearing about failed attempts :-) Thanks! You can use any cheap CD-R, DVD-R ...for DVD+R Dual Layer you MUST use Verbatim discs. Use Nero -Select DVD-ROM UDF -Select "No Multisession" -Select UDF v.2.01 -Check the box that says "Xbox Compatibility" -Press the "NEW" button -drag just your finished project into the root of the new disc ...Show All
Visual C++ following error occurs while builiding code in Visual Studio 2005
following error occurs while builiding code in Visual Studio 2005, Can any body help me regarding this: c:\nov 8th 2006\xmlfile.cpp(64) : error C2872: 'CLSID_DOMDocument' : ambiguous symbol could be 'c:\program files\microsoft visual studio 8\vc\platformsdk\include\msxml.h(9589) : const CLSID CLSID_DOMDocument' or 'c:\nov 8th 2006\debug\msxml.tlh(951) : const GUID MSXML::CLSID_DOMDocument' Maybe you have to put "MSXML2::" before your ambiguous symbols See http://support.microsoft.com/kb/316317 . I hope it helps. ...Show All
.NET Development MSSQL table names
hey, i'm getting a table from my MSSQL server, but for some reason it has to have the user name preceding it. SqlCommand getOrgs = new SqlCommand("SELECT DISTINCT Organization FROM phenostream_usr.Affiliations"); why is this why can't i just say "From Affiliations" Hi, In MS SQL 2005, the phenostream_usr schema is no longer considered as a user but as a namespace within the database. More info: http://msdn2.microsoft.com/en-us/library/ms190387.aspx Charles Verdon ...Show All
Visual Studio Team System Another "Which TFS to buy?"
I have to put together for my manager a list of which products to buy for a group of 10 developers, one of whom also does double-duty as an architect. Reading all the product comparisons and pricing is confusing, to say the least. I know I need TFS. That's a given. My issue is with all the VSTS role-versions and the respective cost. What is the best (read: least expensive) combination of products that will give us full TFS functionality How does VS2005 Pro with a TFS CAL compare to VSTS for Developers Do I really need to buy the full VSTS for Developers for each developer Each of those licenses comes with MSDN Premium. Why would I want a copy of MSDN for every developer OK, enough of the stream of consciousness. It would be great ...Show All
Visual Basic Trying to use Winsock control in a Microsoft Access Database Form doesnt work!
I'm trying to create a telnet session within my microsoft access form. I included the microsoft winsocket control and some text boxes to place the recieved data. The problem I'm having is I recieve data but it is all scrambled like yt%yy and it doesn't take any of my data I'm entering. The current telnet software I'm using is using VT101 emulation if that might have something to do with the scrambled info, but I dont want to use this software and Access. I would like to keep it all in one application if possible. I just need some help where I might be going wrong or any other idea's. Option Explicit Const EchoPort = 23 Private Sub cmdConnect_Click() Dim temp As String temp = InputBox$("Enter a server name...&qu ...Show All
Software Development for Windows Vista Best Practices: Deploying new workflow instance
Are there any best practices for deploying new / modified workflows For example, assume that I create a state machine workflow, with version number 1.0.0.0, and I deploy it. Then my application comes along and creates instances of this workflow, and not all instances are complete. Then at some point later, I add a new activity to my workflow and make the version of the containing assembly = 1.0.1.0 and recompile the workflow assembly. How do I deploy this new version of the workflow and what happens to the still running workflows that were created under v 1.0.0.0 of the workflow assembly. When you deply version 1.0.1.0 nothing will happen to the version 1.0.0.0 workflows that are running. They wil ...Show All
SQL Server Passwords in the SSIS configuration file
Thanks to some earlier help from this forum, I have my package running using configuration files and Windows Authentication. However, when I try to execute the package using Sql authentication, login fails for the user i am specifying. When I check out the configuration file, the connection string does not contain the password. I added the password to the connection string, but it does not cone back. I followed the instructions found on the following site: http://www.nigelrivett.net/DTS/SSISConfigurationFile.html After trying what was suggested there, I was still unsuccessful with my login attempt. Anyone know how to set up a package to run using Sql authentication Thanks! Craig At the tim ...Show All
Visual Studio Team System TF30177 trying to create a new project
I've got a new install of wss 2.0 SP2, TFS 1.0 and I can't create new projects. I've walked through the doc and created the TFS accounts and made them members of the local admin on the server. However, I get the error when trying to create a new project. Error The Project Creation Wizard encountered an error while uploading documents to the Windows SharePoint Services server on CHEF. Explanation The Project Creation Wizard encountered a problem while uploading documents to the Windows SharePoint Services server on CHEF. The reason for the failure cannot be determined at this time. Because the operation failed, the wizard was not able to finish creating the Windows SharePoint Services site. User Acti ...Show All
Visual Basic New guy question, how do I do this???
Ok, so I'm fairly new to programming, especially in .NET and VB. Everything before this was in MATLAB for me since I'm an aerospace engineer. I'm trying to build an sizing program for compressors, and I'm building a unit conversion class to take care of the obvious problem of inputs coming in as different units. I've taken care of the basics, ie: length, force, energy, pressure, volume, etc..., but now I want to do combinations thereof. The way my code works is it takes a ByRef value for either a conversion factor (for the combinations, since temperatures aren't always an absolute scale) which is initially zero or whatever, or a ByRef value for what you're trying to convert, and the input units, and the output units. The units were crea ...Show All
Software Development for Windows Vista WaitForSingleObject alwasy Object_0
I have a case where my WaitForSingleObject is used by the root thread and Some other thread started by this root thread signals the Event object which WaitForSingleObject is waiting for. But the WaitForSingleObject seems always signaled regardles of the SetEvent function of the child thread. I have tried Manual or Auto Reset and the case is always the same and my Event is started as Non-signaled. Ye that might also be the case. But because this is the design of a Core Component I rather wanted to use dynamic names because in the future those names might be useful for some kind of Event check from other programs. Because I once realised that same named Events are accessed from also different processes. So I think might use this la ...Show All
Software Development for Windows Vista implementing flickering for camera preview ...
Hello everybody .. This is kumar..I want to create an application for camera previewing using direct show.. For previewing , there must be flickering and i am creating my application on pocket pc emulator...Can this flickering be done using direct show....I am stuck up with this ....So when i press the button ..it should start flickering ..in the sense it should go ON and OFF...indicating that it is ready for capturing.... Please anybody help me out to come out of this problem.... Thanks in advance..... HI , Thanks for the reply...As i am new to direct show , can u explain a bit further on the above code... while(previewing) ....in the sense ...is it a function .....plz can u elaborate more on this if u dont mind.....i h ...Show All
