Answer Questions
Vegethalia C# express edition
Hi all, I downloaded Microsoft visual C# express edition . I have a problem with the help, I get only help for some things. many types I need help, I get : Information not found. Where can I get a full help of the environment and download it. Regards... This information is missing because you have a beta version. The most recent version of the documentation can be found at http://msdn2.micros ...Show All
Parimal Telling Another Process To Open A File...(???)
Using text files and Notepad as an example... If my application "knows" the path to a file, I can have it opened like this: Process p = new Process(); p.StartInfo.FileName = "C:\\readme.txt"; p.StartInfo.WindowStyle = ProcessWindowStyle.Maximized; p.Start(); Likewise, I know I can search for a currently running instance of Notepad like this: bool pfound = false; Process targetProcess = new Process(); Proces[] runningPro ...Show All
nsLns 'System.EventArgs' is a 'type' but is used like a 'variable'
Whats wrong with my code below Can you correct it private void txtusername_TextChanged( object sender, EventArgs e) { if (EventArgs (e) == Keys .Enter) this .txtpassword.Focus(); } } Try the KeyPressed Event and it will work fine. private void txtusername_KeyPress( object sender, System.Windows.Forms.KeyPressEventArgs e) { if (e.KeyChar == ( char )Keys.Enter) { Console.Write("a&q ...Show All
Mister2zx3 I run vcsetup.exe but nothing happens.
I would like to install C++ Express Edition. I click the download button and get a copy of vcsetup.exe sent to me which I save. I run vcsetup.exe and it seems to run. It gives me a progress bar and popup window re uninstalling old versions. I click OK on the popup window. Progress bar finishes and vcsetup.exe exits. The problem is that nothing more happens after this point! What am I missing I had never installed a previ ...Show All
rickyTH How do I search thru dataset via code?
Hi, I'm new to VB 2005 Express so.... I have a project that allows the user to select 2 items from 2 listboxes. The listboxes are populated from 2 datasets. I capture the 2 items selected as strings. So far, so good.... Here's where I'm stuck: I want to take the two strings and search (query ) a third dataset for a record that contains both strings. I then want to return a value located in this record. I do not want t ...Show All
Danieletor newbie to c++
when i first started programming i wanted to learn c++ so i started reading up on it(this was about 2 years ago). i learned the basics and then i got pulled into the java programming language. though i was new to the java programming language, suns site had a tutorial section(that starts after the basics) and explains advanced features like GUIs and whatnot... im actually quite good in java now and ive hit a problem that i know i can fix in c++. ...Show All
Dennis Persson Obtain files
Hi, I have unintentionally modified the time.h, time.inl, and maybe other files. Don't you know where can I download them Thanks santiago Thanks Dennis. That seems a good solurion. cgraus wrote: Why don't you install the IDE on another computer and copy them, or just reinstall it locally Seems like the easiest way to ensure you have a clean system. ...Show All
Alan Cameron Wills Problem with array
I have this code but it doen't work there is a problem on this huidigegeg = geg(i).Split(("|--|")) Somebody now how this come Dim huidigegeg(7) As String Dim teller As Integer Dim i As Integer Dim geg(i) As String Dim strGegeven As String Dim strAlles As String Dim intNr As Integer = FreeFile() FileOpen(intNr, accijns, OpenMode.Input) Do Input(i ...Show All
cookieCutter Login control failing
I'm having problems with the Login control. I'm testing using a new application with one "Default" page. I've enabled ASPNETDB using "ASP.NET configuration", and set a role and a user. The Login control works when I run it from within Visual Web Developer Express. When I run the app from IIS using IE and try to log in I get: Cannot open user default database. Login failed. Login failed for user 'xxx\ASPNET'. I attach ASPNETDB (in App ...Show All
Fareez Manual Installation without Optional content...
Isn't there a way to download the installation files (manual) without having to download the CD images That seems illogical to me. I have High Speed internet on a different PC than my development PC... I don't want all the optional content I just want the actual installation (the 35-70MB downloads) Is this possible I don't want to have to download these on dial-up. Actually, this is not 100% true. Yes, you will ...Show All
John Patterson Newbie - How to port application from VB Express to Web Developer
Good morning, I have surprised myself by creating a wonderful little app in VB Express Edition 2005 that reads SQL data, allows the user to use various filters, calculates fields, updates the datavaiew/dataset, and exports data to Excel. Between each of the three pages the app creates a xml file of the data. I have now downloaded Visual Web Developer 2005 Express Edition as I would like the application to be available on the web. Am I r ...Show All
James Anderton I need help
Hi my son Brent is wanting to learn how to program he is only 15 but knows alot about computers. What would be the best way and best programming laguage to learn. Also is there ne programming schooled that he could go to and how old do you have to be. Thnx Stacy I am professional game developer,and I will be pleased to teach game programming to your child this summer for free. mail me : directxguy@gmail.com ...Show All
RudyH Getting Computer Login Name.
Hi all I'm using VWD Im trying to get the computer Login Name(Username) in my web application. I tried using HttpContext.Current.User.Identity.Name and alot of other way like the old method servervariables and many other. But cannot rem them no. All of it works IF im working local Host. But it Just Became Empty or Wrong Value if its working on a server/client basis. And ideas how to get it using web Application Thx in adva ...Show All
maxithron MDI - Parent/Child Forms
HELP!!!!! In VB Express 2005 I am try to create an MDI form (parent) and then a form (child) I have searched these forums and it says change the form(child) property the MDIchild=true, i dont have this propery available. any ideas Steve, Set the IsMDIContainer property for form1 to true http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=386751&SiteID=1 hope this helps ron ...Show All
rdtcgriffin Connect to MYSQL database from C# 2005 express IDE
Does anyone know how to add MYSQL to the list of datasources you can connect to in Visual C# express 2005 Right now all that is in there is SQL Server and Access. Thanks. With the IDE there is no way to connect to any other database system using the wizards, this is one of the restrictions on the Express editions. One way that I have seen this done though is to create a Data Layer and use that. By this I m ...Show All
