Answer Questions
Imtiaz .NET Assembly Security
Hi all, just a quick question. Since there is a .NET Reflector written by LR which disassemble an exe/dll file, i can't find anything nor a better solution to get secure. How are we suppose to write a secure .NET app since it can be disassemble Is there a way to do it or perhaps possibility Or what's your recommendation / suggestion Regards, David [.NET NEWBIES] Hey all, I think I found something. http://www.aspose.com/Products/A ...Show All
HungSolo Removing a Relationship in a Microsoft Access Database
I am a C# developer, using a Microsoft Access Database for data storage. How can I remove a relationship between two tables from within my C# program Well, I didn't find anything in the COM Microsoft Access X.X Object Library that'll let you programatically delete a relationship in Access. Have you tried the solution I posted on 21 December 2005 -- Brendan Reynolds Access MVP wrote ...Show All
CraigInGeorgia 407 Proxy Authentication Required
Hi All, We currently have an old Win32 (unmanaged) app out there written in VB 6.0 . This is a shareware app that has been around for a couple of years and has been downloaded by a number of users all over the world. This application talks to a managed DLL (a proxy of sorts), which communicates with a Web service . In other words, the managed DLL is really a proxy for the VB client to communicate with the Web service. The Web service is r ...Show All
Jon Beschen IIS not installed what will not work?
I am in a corporate invironment were they will give me VS .net but are willing to have IIS installed on my development machine, they prefer me to use a remote server. Doing this what functions will I not be able to use Debugging Thanks. hi, withouthaving installed IIS you cannot run asp.net pages on you machine. My conclusion is that you won't be able to debug those pages on your local machine, but I didn't ...Show All
xbeanx Writing to CD
Hi, How can I enable the Windows 'Send to' method in my program, so that customers can send write their data to a CD Thanks. You can use the wizard if all the requirements are met: OS > XP, cd burner drive installed, burning allowed on the drive, IMAPI service running... Given all that, you need to get an ICDBurn interface which can talk to the MSDiscMasterObj that deals with CD burning. For this you ...Show All
Dania151638 databinding with inner classes
hi i want to iterate my datagrid for inner classes too..plz go thro below code 1) Address class public properties : string Address1, string Address2,string City 2) Branch class public property : Addreess BranchAddress (property that returns above class) 3) Branches class extends from ArrayList 4) BranchData public function GetBranches - fills Branches arraylist with proper data new Branches().Add( new Branch ( new Addr ...Show All
manguyus long to DbType and SQL parameter type
I need to calculate and store the size of volumes of Documents using FileInfo.Length, which returns a long. If I'm inserting this into SQL Server with a stored procedure, which System.Data.DbType do I use in my .NET code, DbType.Int64 Which datatype do I use in my SQL Server stored procedure Yup - that's right. Use DBType.Int64 since that represents a 64-bit (8 byte) data type and 'long' is a 64-bit data type. ...Show All
Ravindra Vyas Got a problem with authentification. WindowsPrincipal .isInRole Method.
Hi... I've got a problem with the .isInRole Method from the WindowsPrincipal object. it's not an error, my code works... but there is somthing i don't understand... somethimes (mostly the first time i debug it, but not only) the method needs like 1 minute, till it returns true... othertimes, the method need just like a few seconds, like normal... i started the TaskManager, the process devenv.exe (visualstudio) needs like 98% o ...Show All
consultutah Transaction for two database connections
I am not sure if this is possbile. I have a request to develop a 'method' to do transaction over two database connections. Basically the requirement is, one connection updates a database and the other updates another database; but they have to a transaction. I know COM+/DTC may be the the solution to this problem, but I do not have any experience with COM+ except some basic understanding of COM+ concept. Can someone please give me some ideas on ...Show All
AdriaanDavel SUb MAIN in forms application using VB.NET
Hello All, I have this simple question. When you write a application in VB.NET. The application begins to execute from SUB MAIN. When you develop a form application using VISUAL STUDIO.NET, I dont see the SUB MAIN in the FORMS1.VB or anywhere else in the project. Is this SUB MAIN something created automatically by VB.NET and then compiled Thanks Prashant H. K. Thanks Silken. In VB.NET when I create a simple fo ...Show All
Jenska XSLT != does not work when using XslCompiledTransform
Hi, I'm using XSLT to transform an XML document into another XML document. I use the XslCompiledTransform class to perform the transformation. My problem is that it does not work to use != to compare data values in elements e.g. <when test ="/Patient/History/Diabetes != 'TYPE2' "> does not work. However, it does work to compare data stored in attributes when using a function e.g count(@StatusCode != 'RED'). Has anyone got any idea ...Show All
Lino&#33; Newbie Problem
I get permission denied 0x800A0046 when trying to install a ASP hit counter that reads and writes from a text file on the server. Here is the entire default.asp to see: <%@ Language = "VBScript" %> <% Response.Buffer = true %> <head> <meta HTTP-EQUIV="Content-Type" Content="text-html; charset=Windows-1252"> <title>Green Relations Group</title> </head> <b ...Show All
foxjazz2 Required Permission Caanot be Acquired Error
Hello - I get this error when I try to run web applicaiton. I checked the trusts and full trust has been given. This is running on Windows 2003 server with .net 2.0 with Sept CTP / RC1 and Team foundation beta 3 I have reporoduced the error below. __________________________ Required permissions cannot be acquired. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for ...Show All
Angela from Colombia Dataset Merge Duplicates
I gotta be doing something wrong: i'm Using the SqlClient namespace I need to detect changes in a SQL SERVER 2000 database.table I am, initially, setting a DataSet with the table (ds as Dataset) Then, at specified intervals, i'm setting another (different) dataSet with the Live data with the same SQL connection, and SQL query as the initial (dsLive as Dataset). I then MERGE the newly created dataset with the saved, "cached" dataset: ds.Merge(d ...Show All
chen_k DropDownLIst
I am having trouble with my dropdownlist. How do you link the dropdownlist items to another page In other words i want it to where when the user clicks on a item in the drop down list it auto posts back and takes them to another page. Make sure that the AutoPostback property is set to true. Also, given that this is an ASP.NET question, I’d suggest directing future questions to the official ASP.NET forums as they tend to live and b ...Show All
