- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 3
- Posts with Downvotes
- 2
- Downvoting Members
- 3
13 Posted Topics
Hi all, Im developing a small app that stores information in a database. When I first released, I tried to make sure my DB was future-proofed against any changes. However i'm about to release a new version that requires a change to the DB schema. Currently my terrible way of … | |
Hi All, Been looking for a way to programatically mount ISO files in C#. Im aware I can use daemon tools etc. to do this by starting it with command line switches. Id like to be able to allow the users to mount without installing extra software. MS has provided … | |
Re: Assuming you have this: [code] frmLogin objLogin = new frmLogin(); string UserName1 = objLogin.RetUserName; MessageBox.Show("NAME : " + UserName1); txtUserName.Text = UserName1; [/code] on different form than your first snippet, what your actually doing is creating a new copy of the first form, and getting your username from that, rather … | |
Hi all, XMLDocument.Load("http://ws.audioscrobbler.com/2.0/?method=artist.search&artist=Zlad!); If you open the link in FF it shows the error, IE seems blisfully unaware Its failing due to Last.FM outputting artist names with the wrongly encoded characters into the xml. This causes my C# app to crash. XMLException, invalid character How would I go about making … | |
Hi guys, Im embarking on something new (to me). Im creating a matchign expression system for a music video collection app. Essentially for the program to find the files, the user inputs a mask to help find the files and identify tags in the file name. e.g %artist%\%artist% - %title%.%ext% … | |
Re: Maybe im missing something. However from my experience that message comes up when the item is downloaded to the computer from the net. Running the app, and clicking on dont ask again (or something like that) will prevent it from asking you each time. Alternatively, find a different means of … | |
Re: I have been using the following class to store my settings for an app. [code=csharp] using System; using System.Collections.Generic; using System.Text; using System.Xml; using System.IO; namespace Alarm.Plugins.Speech { class Settings { private string xmlFile; private XmlDocument xmldoc = new XmlDocument(); /// <summary> /// Constructor for xml manager /// </summary> /// … | |
Hi all, Im writing a burglar alarm app, I need it to make a phone call to a specified number via dial-up modem. Thats the start, secondly I would like it to be able to talk to me when I pick up when its ringing me. Using System.Speech.Synthesis would be … | |
Re: [code] System.IO.DriveInfo[] drives = System.IO.DriveInfo.GetDrives(); foreach (System.IO.DriveInfo drive in drives) { if (drive.DriveType == System.IO.DriveType.CDRom) Console.WriteLine(drive.Name); } Floppies will appear as DriveType.Removable, same as USB drives. [/code] | |
Re: You can add the first project to the solution in the second project and then add the second project as a reference to the first. Then add [code]using FirstProjectNamespace;[/code] to the headers of the second.... | |
Hi everyone. Here is my first app, [url]http://code.google.com/p/snippet/[/url] Its a code snippet management program. Would love for people to check it out, offer any suggestions etc. and see if you can break it. Each language is controlled by an XML file in the languages folder, see the included c Sharp.xml … | |
I have the following repeating block of code in a website [CODE=html]<a href="LINK">TITLE</a><br>MANUFACTURER -- YEAR<br>PLATFORM<br>[/CODE] I need a regular expression to parse out the relevant bits in caps Ive been trying txt2re.com and expresso... But nothing generated there seems to do a decent job. I guess I need something that … | |
I have the below code, [CODE=csharp]string txt = "<table SUMMARY=\"Game Match\" border=0 cellpadding=2 cellspacing=0><tr valign=top><td width=25><b>2.</b></td><td width=60><a href=\"/game/gameboy-advance/legend-of-zelda-a-link-to-the-past\"><img alt=\"Game Boy Advance Front Cover\" border=\"0\" src=\"/images/i/36/26/365576.jpeg\" height=\"59\" width=\"60\" ></a></td><td><a href=\"/game/gameboy-advance/legend-of-zelda-a-link-to-the-past\">The Legend of Zelda: A Link to the Past</a><br>by Nintendo of America Inc. -- 2002<br>Game Boy Advance<table SUMMARY=\"Game Match\" border=0 cellpadding=2 cellspacing=0><tr … |
The End.