Answer Questions
Zenaku213 Conneting to SQl Server in VB express 2005
Hi I have just downloaded MS Visual Basic Express Version and Also SQL server Express version I want to make a connection to Sql server I am using a BindingSource componeent . My problem is it asking me for *.mdf files . Instead I want to connect to SQl server . I dont see any option where I can select Server . As per help for connecting to database , they mention that in AddConnection dialog box after you select Data Source as ...Show All
Aussie Client information available to server
Hi, I have an remoted object served by IIS. I'm looking to find out what information I can get about the client that has connected or is making a particular method call. I saw an MSDN article saying that I could use System.Web.HttpContext.* to get some information about the client, but I'm unable to use .HttpContext for some reason. All I get available to me under the System.Web namespace is ASPNetHostingPermission, ASPNetHostingP ...Show All
vnapoli ASP.net and XP Professional
Does the .net framework come with Windows XP Professional so that ASP.net can be used right out of the box Scott Glad that I could be of help It looks like I can just download the: Microsoft .NET Framework Version 1.1 Redistributable Package and set the web site to run the dll(s) Any general comments appreciated. Scott The .NET Framework only comes pre-installed on Windows Server 2003, but is available as ...Show All
Martin Flores Itanium compiler error
I am porting a C# project to 64 bit. I successfully compiled in Whidbey using AnyCpu setting and ran the test client. However, after I changed the compiler setting to Itanium and copied settings from AnyCpu, I got this error upon compiling: ------------------------------------------------------------------------------- C:\WINDOWS\Microsoft.NET\Framework\v2.0.50215\Microsoft.Common.targets(1500,9): error MSB3551: Unable to l ...Show All
Ernie Booth ICeeFileGen deprecated
I noticed in the documentation, http://msdn2.microsoft.com/en-us/library/ms404463.aspx , that ICeeFileGen has/will be deprecated in the future. What should we be using, from unmanaged compiler code, to create PE files Dave.Net Have you looked at ICeeGen How are you using ICeeFileGen now Peter, Yes, I looked at it long ago and it is not an option from what I understand ... as there is n ...Show All
johnmurray .NET String Class
Hi folks, I'm just wondering if anyone can point me at a tutorial for using the String class included with the .NET framework I'd like to use it in a Managed C++ Winforms app. The MSDN entry for String class is describing all functionality. http://msdn2.microsoft.com/en-us/library/system.string.aspx Be sure your language filter (top of page) is set to include C++ ...Show All
dlcrawford DataGrid Problem
I have few problems, 1. I am using datagrid with readonly textboxes, i am assigning the null, i could see that null text in datagrid, but when i insert the records through this it is updating null values for the hidden textboxes. 2. How to update the relations created in dataset to the database. 3. I am develping a banking application, in that on of those pages contain datagrid, two users opened the same page with same records at single ...Show All
Al.Vazquez FtpWebRequest question
Can anybody please help me I am trying to write a code to uplode or delete file on ftp server. A problem is that I don't know how to set up Method property for ftpwebrequest class, so sample code like this would work. Dim serverUri As String = "ftp://ftp.contoso.com/file.txt" Dim request As FtpWebRequest = CType(WebRequest.Create(serverUri), FtpWebRequest) request.Method = WebRequestMethods.Ftp.DeleteFile request.EnableSsl = Tr ...Show All
VincentZalzal Displaying the contents of one record on 2 or more forms
I have a database with a customer table that has about 60 columns I want to show the customer contact infomation on the primary form, and then show the account info, transaction info and other bits on seperate forms. I have my main form, which shows the customer contact details, but i can't seem to get a dialogform working to show the correct records. I'm trying to set the accountcode data from teh main form as the filter on the sub ...Show All
MichaelVictoria How to get field values from TableAdapter?
Can I get field values from my database using the tableadapter or bindingsource Like rs.Fields("field1").Value, but then with the BindingSource or TableAdapter or DataSet Thanks! I don't want to go through all tables and records. I just want to get a few fields from the current record af the database. I now use the following code to retrieve the fields from the table based on the selection in a com ...Show All
ZM redirect when session timeout
hi all members, I want to redirect my application to my login page is user session is expired. Is any setting in web.config or globa.asa to perform this, i dont want to put session chk in all the pages. Please help me ASAP Thanks & regards Vipin Yadav well you can add a session using Session.Add() then you can check for a session using Session["sessionName"] and see if it returns null and if it does just redi ...Show All
Erin ASP.NET Won't work
Ok, so I install Visual Studio 2003, and then IIS 5 on my windows 2000 machine. I start up Visual Studio and attempt to create a Web Application. It informs me that I only have asp.net 1.0 and I need 1.1 if I want all of the features. The problem here is, I have the .NET framework version 1.1, so I should also have asp.net 1.1. I click on the thing that says use asp.net 1.0 instead. It then informs me that I do not have the web development stuff ...Show All
crazy jared Store another files inside a EXE file
I'm planning an install application (like InstallShield and many others), so I want to know how can I store all files inside an EXE, and during install, extract them. Does anybody know There is a bunch of tools available. Hopefully that can help you get started. Do you know which special mark is that Or some tutorials about that I need to code this....and not to use a self-extracting tool or a install tool that already exists. ...Show All
Dreambeats Where gets Intellisense the descriptions of methods, properties, ...????
Is it possible to add a discription to my methods so the intellisense can display it can someone tell me how to use the <summary> tag, I can't find any reference to it! Thanks The answer is great if: You are using C# 1.1 or .NET 2.0 Your class is within the same solution. I am using VB.NET 1.1 to access a code library that I wrote in C# 1.1. Is there a way to show I ...Show All
rgparkins How to use System.Net.Mail.SmtpClient via SSL and Authentication?
Below is my code, and is just blocked there. There is no any error message. '=============================================> Dim msg As String = "---" Try Dim strAddress As String = " xxx@xxxx.com " Dim s ...Show All
