Answer Questions
Greg Merideth Urgent: 64 bit Compile for web application at .NET Framework 2.0
I have developed the web site with Visual Studio .NET 2003 Frmaework 1.1. I have deployed website on 64 bit Windows 2003 OS, framework 2.0 64 bit. Then I ran the web application directly from browser. Is this mean my application ran in 64 bit mode or 32 bit mode. Sorry for my DUMPY, What is the difference of building at 64 bit with visual studio 2005 and running with 64 bit framework 2.0 AND building at 32 bit .NET 2003 and running with 64 ...Show All
JJQuinn Best Practice for # of DataTables in a DataSet?
Are there any recommendations on how many DataTables should be put in a single DataSet If you have 20 tables, is there any harm in grouping the tables in different DataSets based on some criteria If there's any documentation on this sort of thing, please provide links. Thanks The only benefit I would ever see in having all of your DataTables in a single DataSet would be a single point to access them. Perhaps useful if you pa ...Show All
Mark Fasano Force a Row to validate
dAdapter.UpdateCommand = commando; dAdapter.Update(( DataTable )DataGridView1.DataSource); Now what happens is that when I edit a row, I have to move to the next row for the one I edited to be validated and updated through DataAdapter. Is there another way of doing this For example, is it possible to force the ROW to validate after one of its cells has been edited Thanks DatSets con ...Show All
Mark Dawson Make a Project Management Forum
I wanted to ask if anyone else runs into the problem of not having a skilled project manager as I posted in this Blog here , but couldn't find a forum here for it. This post went into the wrong forum. I was intended to go here http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=52&SiteID=1 sorry about that. I have reported the bug here. It has happened three time ...Show All
Shimon273 Regex question
Hello, I am new to c# and i am having some problems with regex. Every time i try to "scape" . or ^ or +, etc i keep geting this error: Error 1 Unrecognized escape sequence . I have search the net among other things on how to scape those character and they say i need to use \. or \^ ,but that doesn't help. This is the regex i am using: if(!File.Exists(Regex.Replace(textBox2.Text,"\\.+\.html","").ToS ...Show All
Panaxea SAML assertions
Any tools out there that create SAML assertions that don't cost an arm and a leg. Even if I have to do alot more coding then normal. You could try the saml-dev email alias. See http://lists.oasis-open.org/archives/saml-dev/ and http://www.oasis-open.org/committees/tc_home.php wg_abbrev=security ...Show All
tronn Convert Web services to COM+
Hi Guys, I have an exisiting web services, now i need to convert it into COM+, meaning this COM+ will expose the webservices. How to do that Is there any work around for this Does anyone have the detailed steps to achieve this. Thank You regards... Please consider using the APIs in the System.EnterpriseServices namespace: http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpguide/html/cpconwrit ...Show All
samcneal Tricks for getting asynch completion routines back to an instance method.
There SEEMS to be an uwritten rule that AsyncCallback delegates will be SHARED methods. All the examples show this, but I have never seen it actually discussed or described anywhere. I want to execute a non-shared method on the class, however. My approach has been to use the argument to pass the instance, and then have the shared routine execute the non-shared method m_sckSocket.BeginReceive(m_bReceiveBuffer, 0, 256, 0, New AsyncCallb ...Show All
Chinh Cuong simple udp client sample C# code
Dear all, Can anyone please send me a code for simple udp client in C# using without asynchronous blocking mtds So that I can check if mine is wrongly written.. Thanks so much. Regards, sieweng totally cant pinpoint error in my program.. SDK Samples have this This is a good place to start : http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpguide/html/cpconsocketcodeexamples.asp I belei ...Show All
Espen Gatzschmann I'm sure this isnt the right place for this question but ....
I was wondering if microsoft is ever going to make drivers available for Windows XP 64-bit edition. I just purchaced a fingerprint reader (a microsoft product) only to find it does not work in XP 64. I have searched everywhere I can think of to find out if there was a driver available but it doesnt seem to exist. Then I looked at the microsoft hardware site and randomly looked at driver downloads for their hardware and none NONE were available i ...Show All
MikeJohnson user name and password to IIS
I all, I'm trying to connect to a webservice located on my PC. So, I typed the http://(MY IP...)/WebService/Service1.asmx Then the browser give my authentication window. how can I add a user name and password to be authenticated. Is my way right. I want to attach the web service from anoter computer . Please help me... You must add a local user on your machine. You can do that in the User Accounts control panel ...Show All
fahlen Collection subset
Have can I return a subset of collection by using one class memeber as the filter criteria Ok. That's why I'm not going to do in this way as it makes the code seems too complicated. Moreover, I'm using BingList (Of T) instead of List (Of T). I found that the BindingList (Of T) doesn't provide the FindAll method. You're welcome! Unfortunately (for your interests), setA.FindAll() returns a new List. Or in other words, adding an eleme ...Show All
Jaw9 security issue
dears i have a problem here i have a windows app which synchronize with a web site and get news from the site and save it on the client's pc as xml and also save the user setting as xml the problem here that the xml is readable i don't want the client to be able to read those file so i decided to serialize the file as binary files here's my serialization function public bool Serialize( string fileName, object Object) { & ...Show All
mg0123 how to set the dataset's namespace
hi, I'm use the Dataset Desinger of Visual Studio 2005 to design a dataset. Then, I compile the project. The desinger generate a typed dataset class. But the dataset class is inside the global namespace. How to set to generate the typed dataset class in a customed namespace. The namespace above is C# namespace. Not the XML namespace. thanks. This driving me really crazy. First I can't find properties on right clicking the x ...Show All
Michael Hansen What's a good way to add record to an xml file
Would anyone help me about "How to add record to an xml file" I could add ONLY one record to it using Serialization, but that record will be updated by updating or creating a new instance of the serialized object, i want it to be added to xml file like a log file for exmple. Woth tahnk. Thanks, Would you please give me a short simple serializer (I don't know how to do that) Thanks dear, But The problem is: I ...Show All
