mamathathunga's Q&A profile
Windows Forms Length of Deployment URL too long?
I receive an error when trying to install my CLickOnce application at the client which does not occur on any other internet connection I have tested. I suspect the issue is that the client uses internet monitoring software that inserts a lengthy path in front of all URLs. As you can see below, it inserts http://10.10.0.175/ cfru=aHR0cDovL3d3dy5kc................(etc ...) in front of all URLs Is the fact that this URL ends up being over 100 ch ...Show All
Visual C++ VC2005 %50 Slower then VC2003
I just migrated a graphics application from VC2003 to VC2005. After building it, I ran a small benchmark & found that VC2005 code was about %50 slower. The Application does a great deal of floating point and integer calculations. It also converts doubles to int quite a bit (the VC2003 version used SSE to handle this). The VC2003 version used /G7 and /Ow (which are not available in VC2005) Compiler Switches Used: (vc2003)/arch ...Show All
Visual C# How to get the Name property of an Image Resource?
Is it possible to access the Name property of an Image resource from my application resource For instance, I'd like to do something like this: { ImageList il = new ImageList(); Image myImage = Properties.Resources.MyImage; String myImageKey = Properties.Resource.MyImage.Name; //doesn't exist il.Images.Add(myImageKey, myImage); il.Images.ContainsKey(Properties.Resource.MyImage.Name)... } In other words, I don't want to ...Show All
Visual Studio VSS Lan Service working randomly
Hi, The Lan Booster service works randomly here. Sometimes everything is ok, and sometimes, for the very same operations, for the same database/project and on the same system, I get the following message: Unable to use SourceSafe LAN service, performance of SourceSafe operations will not be optimal. The service is running on the system hosting the database. Known problem I'm not very familiar with DFS, but I think that you're access ...Show All
Windows Forms fullscreen with drawing
So I want to program a winform in c# thats comes up in fullscreen mode. I dont want any of the outside frame or the toolbar to be visible. Pretty much I want to have the fullscreen form to come up, then be able to draw lines on the fullscreen form. Can anyone give me any help, or point me in the right direction thanks in advance Are you sure you want to use Windows Forms for this It seems to me that DirectX in ...Show All
Visual Studio export each page on different pdf file
Hi! I have a dataset containing two related tables. The parent table contains many rows. Each of them normally creates a page in my report. Is it possible to export each of these pages into separate pdf files The most simple thing to do would be to loop through each row, copy it to a new dataset, copy also the child rows and then perform the export to the new dataset. Can you think of a more elegant way to do that Thanks Dimitris ...Show All
SQL Server Rerun only certain containers ?
Hi There I have a package that has many containers that execute in sequence. If any container fails the package does not fail as the subsequent containers must run. However if containers fail i do not want to rerun the entire package. Checkpoint restartibility only allows you to start from where your package failed, however my package will not fail and i do not want to start from where it failed but only rerun the containers that failed ...Show All
SQL Server Dimension Processing Error
I am using following configuration Server:-SQL Server 2000 Database :-Oracle MSOLAP :-Cubes But while processing dimension We are getting follwing error Analysis Server Error: Processing error [Attempt to delete member that is in use] '27-08-2005' ; Time:3/17/2006 1:04:01 PM The mentioned date is already there in database ,Pl let me know what causing this error Thx and regards Pankaj ...Show All
Windows Forms Avoiding the use of a Class
Hello all! I am developing a class in VB to use in my windows application(alsoin VB), but I want to make sure my application is the only one to use it. Anyone knows how can I do this Thanks Frank, but I am using VB.Net.& ...Show All
SQL Server Returning top 2 results from each different data in a row and inserting into new table
Hi All, I'd much appreciate any help with the following problem. I need a statement, cursor, anything.... I have a table in MS SQL Server containing the following (simplified version of course :)): PID DATE OTHER INFO aaa 31/05/2005 blah blah blah aaa &n ...Show All
Visual Studio 2008 (Pre-release) Use IndigoListener.exe in Non-Vista OS?
In the SDK Documentation, in section "How To: Host a WCF Service in WAS", it is said "The WCF mechanism for receiving requests over non-HTTP protocols is hosted inside of IndigoListener.exe." Is it supposed to use IndigoListener.exe in Non-Vista Operating System If I want to build a windows service to activate services in diferente protocols (including non-http) what is the best approach for non-vista Than ...Show All
Windows Forms Looking for Tutorial
Hi, I'm trying to embed my cutom windows control in asp.net pages. If anyone can point me to some good tutorial for beginer and intermediate C# programmar, it'll be great. thanks a lot. Furqan Thanks colt... The tutorial is exactly wh ...Show All
SQL Server Execute SSIS package from asp.Net
Hi, I am a newbie to SSIS. I am trying to execute a simple package that I created from my ASP.Net application. I get the error 'DTSER_FAILURE'. Can anyone help Thanks Turn on logging, or supply an implementation of IDtsEvents interface to Execute() method to find out some information about the error. By the way, the most common problem: security, the package is executed under ASP.NET service account, not your domain a ...Show All
SQL Server OLE DB error - TCP Provider: No connection could be made because the target machine actively refused it.
All, -> SQL Server 2005 Standard set as a named instance, runs as a local system -> SQL Server protocol enabled: TCPIP (configured to listen on port 1433 with use of dynamic ports disabled) -> Remote connections through the SQL Server Surface Area Configuration. Server starts successfully. But, I received the following error on trying to process a cube from BI studio is - OLE DB error: OLE DB or ODBC error: Login timeout exp ...Show All
Visual Studio Express Editions Tab pages- enabling and disabling (or mimicing as seen in C# thread)
I had a search for this and found something about mimicing the enabling and disabling of tabpages but unfortunately couldn't convert it from C# (im a beginner and only with vb). I have a shared variable called op as a string. It has three states, "Add", "Edit" and "Delete". When i open the form (with three different buttons) it changes the variable as required. I have three tabpages add, edit and delete and i wan ...Show All
