GreatEscape's Q&A profile
.NET Development SignedXML Object creation
I want to create my own signedxml object. The current object does not handle many things that I need it to do currently. Inheritance unfortunately still hides much of what I need to do modify. So how does the inner workings of the signedXML object actually work Articles or tutorials in making it work would be very helpful. I do not need the standard signedxml stuff as I have already tried these. I am still having trouble with the namespace prefixs and a need canoncalization algorithm which is not supported byt the 1.1 version of the signedXML. If you know an easier way of doing the follow please t ...Show All
Visual FoxPro I have a corrupted table. Is there a simple, FREE way of repairing or recovering the data?
I have a corrupted table. Is there a simple, FREE way of repairing or recovering the data Thanks, Jim Jim, (Make sure you have adequate backups before you proceed!) What version of VFP If you know what you are doing and it's just a mismatch between the number of records in the file and what the table header says there should be the hexedit() app will let you modify the header. You might want to check some of the items listed in this FoxWiki topic http://fox.wikis.com/wc.dll Wiki~TableCorruptionRepairTools ...Show All
Visual Studio Error 1305
While installing VS Professional Edition 2005. I am encountering Error:1305, cannot read from the file " file path" make sure files exists and have a access to it.. can you please suggest what is the cause of this error. Thanks Ravi Thapliyal It is sounding as though you may have a bad file on the media. Here's something that should help us determine the problem: Can you go to another machine, load the CD, and see if you can just copy the file in question to your hard drive Please be sure no virus scanners are running, same test as before. Thanks- ...Show All
.NET Development Application updating itself
Does anyone know what technique(s) programs like EverQuest, Norton AntiVirus, etc. utilizes to update themselves They certainly are not using ClickOnce, and unless you are an administrator or power user, programs don't normally have write permission to the Program Files path. Richard Rosenheim EQ and NAV indeed do not use ClickOnce. Basically, the applications poll the server to see if an update is necessary. If so they download the patch and apply it. In the case of NAV, when you install the application, the auto-update service gets installed to run as System so it has the rights to write to any f ...Show All
Visual Studio Team System All tests failing with "Can't save results of the run since ResultFilePath is null."
Has anyone else run into this problem My unit tests were fine yesterday, then today VS kept hanging while trying to the load the tests in the Test View. In the past, I removed then re-added a new Unit test project with success. However after doing that, I get "Can't save results of the run since ResultFilePath is null" for every test I try to run. Little help Thanks, Peter I need some more information to understand the problem. can u tell me if there is connection string for the result data store you can go Test/Administer Test Controller Then check under the Load Test Result St ...Show All
Windows Search Technologies We're sorry, but WDS has detected a problem...
wiwth your desktop index and cannot continue. Please reinstall WDS here: ... So I goes to the toolbar.msn.com site - download it, and it (the installer) tells me that it is earlier than the WDS I have installed. WDS is not indexing Outlook (I have a connection to Exchange Server - but store emails in a pst file). I also have an archive pst file. Nothing in Outlook is, nor has been, indexed. I would like to remove WDS - but can't!!! It's not in Add/Remove programs - and I'm gettin somewhat brassed off everytime I log on, seeing the dialog "We're sorry, but..." etc. I just want to remove it please. I was looki ...Show All
Visual Studio Team System what about config-files
for my application I use a config-file with custom configsections (that is: my business layer-dll is using the config-file in the GUI-exe folder). I tried to add my app.config-file to the testproject, but this does not do the trick. What must I do so that my Business-layer can read his config Puil, Which version of Visual Studio Team System are you using In RTM (shipped) version we should pick App.Config file from your test project automatically. This is RTM behavior: - Create new test project - App.Config is automatically created and we set Copy to bin directory = CopyAlways. - When you run tests from IDE this file is copied to bin\d ...Show All
Visual Studio Orchestration Features
Hi Gareth, Thanks for your response to the text templating query. Can you please provide an overview of what the is planned to be included in the orchestration feature area Cheers Susan As program manager specifying these features, Gareth asked me to respond to this. We expect that for serious projects there'll be many, many text templates generating even more files. There will likely be dependencies between templates. For example templates can be chained, so that the output of one template may provide the input to another; the order in which templates are applied matters. In addition, the same template ...Show All
Visual Studio Express Editions Help with TextBoxes
Hi, I'm a Newbie. Suppose I have 20 Text Boxes; say TextBox.1 to Textbox.20. How can I access or add data to these Text Boxes by using a variable (e.g. put 5 in Box 5, put 9 in Box 9, etc.) I don't want to write a separate piece of code for each individual Text Box. Thanks, David. Hi Mattias, Could you give me a hint about how to create such an array Something like : Public MyTextBoxes (20) ... I'm familiar with simple numeric arrays but I really have no idea how to create an array of textboxes. Thanks, David ...Show All
Windows Forms Server not responding error on login
I set up the application, but get the error "Server Not responding. Please try again." I successfully installed everything and can access the database on my local SQL Server. SQL Server authentication is enabled. What did I miss If you're stumbling on this error at this late date (VS2005, IE7, etc.) you may also have to fix one more thing to get up and running. After registering ASP.NET you may sti ...Show All
SQL Server Merge Replication - native exception
Hi! Here are the details: - Merge replication is set up between SQL Server 2000 SP3 <-> SQL CE clients - It is expected for the system to have 100-150 PDA users - About 80-90 tables are being replicated. About half of the tables are for documents that PDA users create. These tables have to be filtered by SUSER_SNAME() to minimize data transfered and not to allow users to see each others documents. For filtering we used join filters (now there is about 30-40 join filters) - Tables shared by users have GUID primary key, while other tables have identity columns. System seemed to work fine when number of tables ...Show All
Visual Basic I need help fast!!!
OK....I have been plinking with VS2005 for about a week..... I have a very extensive app I wrote in VB5 then 6 so now I am transferring it to VS2005. Things going great until I did the following..... 1 form....11 panels.......MANY controls throughout the panels. I also have three toolstrips. I decide to cut some controls from one panel into another..... The code no longer worked for them so I figure ok....hmmmm......I noticed when you cut and paste it truncates the event so you have to add back to the end the event.... so button1_click (balah lahaladakj) handles button1.click no biggie right Well now most of my controls ...Show All
Windows Forms Help with a DataGrid
ow do I bind a dropdownlist to a multiple table query that is SET QUOTED_IDENTIFIER ON GO SET ANSI_NULLS ON GO CREATE PROCEDURE [dbo].[Users_Select] AS SELECT tbl_Users.UserID, tbl_Users.FullName, tbl_Users.UserName, tbl_Users.ReportToID, tbl_Users_AccessLevelID.AccessLevel, tbl_User ...Show All
Windows Forms How to resize controls on my windows form with changing form size
Hi, In my windows form I have a tab control with a few tab pages. Each tab page has some user controls and some .net controls such as datagrid, labels e.t.c When I resize the windows forms the controls dont change their size and position. So if I reduce the size of window it hides half of the controls on my application. How do I make my application or controls such that they relocate and resize themselves when size of the window changes. Thanks, You have to DOCK them on your form to top, bottom, or center depending on ur requirement. ...Show All
Windows Forms MDI Maximized children forms without controlbox?
MDI Maximized children forms without controlbox I have been searching the web and everywhere I asked the question, the answer is that it is a Microsoft Bug. Well instead of telling me that it is a bug, how do I fix this My situation: I have a parent form (frmMain), a welcome/startup (or background) form (frmWelcome) and other child forms for data capturing. The idea is that when the program runs, the welcome form is displayed and stays displayed as a type of "background page", displaying outstanding jobs and other system info. All forms, when opened, must be maximized, thus eliminating the need for the minimize box or maximize box but s ...Show All
