User Xesaniel - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T19:19:26Z http://stackoverflow.com/feeds/user/48214 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/392397/arrays-whats-the-point 63 Arrays, What's the point? Xesaniel 2008-12-25T00:56:12Z 2009-11-04T19:17:19Z <p>As I'm programming I haven't seen an instance where an array is better for storing information than another form thereof. I had indeed figured the added "features" in programming languages had improved upon this and by that replaced them. I see now that they aren't replaced but rather given new life, so to speak.</p> <p>So, basically, what's the point of using them? </p> <p>I see then, thank you very much for the clarification. I've got a way to go with this, I do appreciate all the answers. </p> <p>EDIT::<br /> The question was not so much why do we use arrays from a computer standpoint, but rather why would we use arrays from a programming standpoint(A subtle difference). What the computer does with the array was not the point of the question.</p> http://stackoverflow.com/questions/720346/c-access-database-in-use-or-permission-failure 0 C# Access Database In use or Permission Failure Xesaniel 2009-04-06T05:32:15Z 2009-04-07T01:22:37Z <p>Hello, I'm using Access 2007 and C# to learn Databases. So far it's been rough but I've been able to handle things relatively well. What I need to do though is to query a my database table Accounts for the Amount of money a user has based on their pin. I've placed a button on the Windows Form I am using that will query the database on click. When I run/click the button as per normal I recieve the following error. </p> <blockquote> <p>Essentially my question is this: How would I go about setting the permissions up so that my program can freely access the Access Database I have?</p> </blockquote> <p>My Exception Error: </p> <blockquote> <p>Exception: System.Data.OleDb.OleDbException: The Microsoft Office Access database engine cannot open or write to the file 'C:\Users\Public'. It is already opened exclusively by another user, or you need permission to view and write its data.</p> </blockquote> <p>My code:</p> <pre><code> public partial class frmPin : Form { static string connString = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Users\Public;Persist Security Info=True"; static private int pin = 11; //The First Pin in my records, for debugging I inserted it directly. static string selectStatement = "SELECT Amount FROM Accounts WHERE(PIN=" + pin + ")"; OleDbConnection conn = new OleDbConnection(connString); OleDbCommand cmd = new OleDbCommand(selectStatement); public frmPin() { InitializeComponent(); } private void btnQry_Click(object sender, EventArgs e) { try { conn.Open(); OleDbDataReader reader = cmd.ExecuteReader(); // executes query while (reader.Read()) // if can read row from database { txtBx.Text = reader.GetValue(1).ToString(); } } catch (Exception ex) { txtBx.Text = "Exception: " + ex; // Displays Exception } finally { conn.Close(); // finally closes connection } } </code></pre> http://stackoverflow.com/questions/385573/what-languages-have-you-learned-and-how 5 What language(s) have you learned, and how? Xesaniel 2008-12-22T04:35:19Z 2009-02-23T19:19:27Z <p>Currently I am in college to be a business app developer of sorts. We're learning C#, and VB.NET almost exclusively right now. This makes me think as to why we are. I've read that C# is efficient with almost anything you could ever want to do with it, and that's great. We tend to do a lot of those out of the book review projects, which gets tedious fast killing what ambition I might have had for the languages. Again, I thought about how we learn the languages that we do and figured that it might be interesting to know how others have learned the languages they know.</p> <p>My question though, is simply what languages have you learned and how did you learn them? What do you use the languages for(if you know more than one and use them quite often)? </p> <p>If you would be so kind, and if it is available post a link to some material that helped you learn it. </p> <blockquote> <p>Forgot to mention what I know. Doh!</p> <p>I learned HTML in the middle of my Freshman year in high school. I decided that my days of homework and video games where over when my homework was taking up so much time. By chance I had a web course, which then introduced me to HTML. Instantly I fell in love with it, perhaps for the simplicity of it, and haven't looked back since. </p> <p>After that came CSS, of course. I used to know a bit of Javascript, but I haven't used it in forever so really I have no clue anymore. </p> <p>Then came PHP in college. I personally love it and hate it. I want to focus on app development but PHP refuses to let me be especially with database interaction. </p> <p>After that I started on VB.NET which is incredibly... not for me. Which, I hear, is weird as C# and VB.NET are extremely similar. I guess I don't like calling things Dim, oh well though. </p> <p>Now I am working on C#. I absolutely love it. Though I do wish I had started on something for the "fundamentals" of programming rather than the tease of Visual Studio and the drag and drop forms.</p> </blockquote> http://stackoverflow.com/questions/393410/auto-accepting-contacts-using-phpmsnclass/393503#393503 1 Answer by Xesaniel for Auto accepting contacts using phpmsnclass Xesaniel 2008-12-26T05:14:32Z 2008-12-26T05:14:32Z <p>I'm not quite sure of how you would go about this but have you thought of a two part check? One that runs while the program is active, and then while it it active check to see if the feature someone is trying to add the bot. If someone is then proceed to auto accept. This would require a response time though. I hope the pseudo-code below, as rough as it is, helps at least a bit.</p> <pre><code>while (program is running) if (pendingRequest == true){ doSomething } } </code></pre> http://stackoverflow.com/questions/385238/using-objects-across-methods 1 Using Objects across methods Xesaniel 2008-12-22T00:20:01Z 2008-12-23T20:27:58Z <blockquote> <p>Edit again: I think I get it now. All I need to do then is use the current class colon the class I want to be able to access? Person : Student, or person : teacher Is that correct? Thank everyone for the help, I really appreciate it. This will help me learn what is OO and what is not. I really appreciate that. </p> </blockquote> <p>I'm currently trying to learn the ins and outs of object oriented programming. Currently I have a new object that's something like the following:</p> <pre><code>class student { int grade; //0 - 100 as opposed to the characters A, B, C, etc. string teacher; //For the teacher of the class the student is in. } class teacher { int courseAverage; string name; //teacher.name would correspond to the teacher in the student class. } class Program { student Jim; Jim = new student(); teacher John; John = new teacher(); } static void grades() { Jim.grade = 100; } static void teacher() { Jim.teacher = "John Smith"; } static void average() { int average; //For the sake of simplicity I'll leave the average at an int. average = (Jim.grade + Sue.grade + Sally.grade + Robert.grade) / 4; /*A loop would be set before the average variable to ensure that only students of John would be counted in this.*/ } static void teacheraverage() { John.courseAverage = average;//from the average method. } </code></pre> <blockquote> <p>EDIT:</p> <p>What I would like to do is modify the information from another class. However, I would like to modify the information from the Jim student in a method from within the program class. A method to compute the average of grades for the students who have the given teacher. </p> <p>Also, the only reason I use static in these is because that is the only way I have managed to access variables across methods. I tried using static methods to use the methods across classes with no success. Is there another way to do this?</p> </blockquote> <p>I would like to use the Jim student in multiple methods. One that will set Jim's grade, and another that will set the teacher. I would like to use different methods in this case so that I can learn how it is done. </p> <p>Thank you in advance.</p> <p>Okay, it looks like my understanding wasn't correct. I am going to try the methods within the class approach. Thank you all for the help.</p> http://stackoverflow.com/questions/720346/c-access-database-in-use-or-permission-failure/720371#720371 Comment by Xesaniel on C# Access Database In use or Permission Failure Xesaniel 2009-04-06T06:35:21Z 2009-04-06T06:35:21Z Oh, so I have to include the file itself! Thank you very much for the help. http://stackoverflow.com/questions/392397/arrays-whats-the-point/392426#392426 Comment by Xesaniel on Arrays, What's the point? Xesaniel 2008-12-26T04:46:39Z 2008-12-26T04:46:39Z This was a very nice answer, very well thought out and explained. I'm sure I am not the only one who has benefited from this. Very simply, great work. http://stackoverflow.com/questions/392397/arrays-whats-the-point/392917#392917 Comment by Xesaniel on Arrays, What's the point? Xesaniel 2008-12-26T04:44:38Z 2008-12-26T04:44:38Z I'd take a guess as to not too often for &quot;most&quot; people. I also think that it wasn't so much of a &quot;You are going to need this&quot; as &quot;See the value of the array in terms of speed.&quot; http://stackoverflow.com/questions/392397/arrays-whats-the-point Comment by Xesaniel on Arrays, What's the point? Xesaniel 2008-12-26T04:42:46Z 2008-12-26T04:42:46Z The views are incredibly. The problem I had with arrays was that I just didn't see the use of them. I googled up quite a few tutorials and exercises and now grasp how handy they are. While, for now, I don't know if I will use them, I know that in the future they will be quite the asset. Thanks. http://stackoverflow.com/questions/392397/arrays-whats-the-point/392403#392403 Comment by Xesaniel on Arrays, What's the point? Xesaniel 2008-12-25T02:16:18Z 2008-12-25T02:16:18Z Okay, got it thanks. http://stackoverflow.com/questions/392397/arrays-whats-the-point Comment by Xesaniel on Arrays, What's the point? Xesaniel 2008-12-25T02:14:52Z 2008-12-25T02:14:52Z I've programmed in PHP before and never encountered a need for arrays. Perhaps my experience with arrays have been slanted a bit. http://stackoverflow.com/questions/392397/arrays-whats-the-point/392403#392403 Comment by Xesaniel on Arrays, What's the point? Xesaniel 2008-12-25T02:03:14Z 2008-12-25T02:03:14Z O(1) random access, is this the O(N) as described in Holland's reply? http://stackoverflow.com/questions/385238/using-objects-across-methods/389999#389999 Comment by Xesaniel on Using Objects across methods Xesaniel 2008-12-25T01:33:45Z 2008-12-25T01:33:45Z That is incredibly clear, still a little rough on the edges for me but now I get the extremely basic concept. As far as the pop-quiz goes, I would assume that it would be a part of the student as the student would get grades for a course. courses have the student's grades, correct? http://stackoverflow.com/questions/392397/arrays-whats-the-point/392403#392403 Comment by Xesaniel on Arrays, What's the point? Xesaniel 2008-12-25T01:16:07Z 2008-12-25T01:16:07Z Would you care to elaborate please? http://stackoverflow.com/questions/385573/what-languages-have-you-learned-and-how/385623#385623 Comment by Xesaniel on What language(s) have you learned, and how? Xesaniel 2008-12-22T05:51:07Z 2008-12-22T05:51:07Z That certainly is one way of doing it. It would force you to actually sit down and learn everything. http://stackoverflow.com/questions/385573/what-languages-have-you-learned-and-how Comment by Xesaniel on What language(s) have you learned, and how? Xesaniel 2008-12-22T05:26:17Z 2008-12-22T05:26:17Z There, I think I did changed it over. http://stackoverflow.com/questions/385573/what-languages-have-you-learned-and-how/385595#385595 Comment by Xesaniel on What language(s) have you learned, and how? Xesaniel 2008-12-22T05:11:57Z 2008-12-22T05:11:57Z We learn by the books. I'd like to see some syntax and general uses for the languages though. As seeing concepts in action tends to help me, which is why I loved web design work. Click refresh and there you go, all of your changes are there. I program as much I can, not too great yet though. http://stackoverflow.com/questions/385573/what-languages-have-you-learned-and-how/385582#385582 Comment by Xesaniel on What language(s) have you learned, and how? Xesaniel 2008-12-22T05:08:37Z 2008-12-22T05:08:37Z My school taught us HTML, CSS, and PHP-SQL before moving onto C#. I looked into RoR just as this semester began. When I get a longer break I'll look again. JS/JQ might be fun, but Java just gives me headaches when thinking about it. I've never encountered a smooth program running written in it. http://stackoverflow.com/questions/385573/what-languages-have-you-learned-and-how/385585#385585 Comment by Xesaniel on What language(s) have you learned, and how? Xesaniel 2008-12-22T05:01:42Z 2008-12-22T05:01:42Z That's very interesting, I wish I'd started earlier. http://stackoverflow.com/questions/385238/using-objects-across-methods/385259#385259 Comment by Xesaniel on Using Objects across methods Xesaniel 2008-12-22T02:00:34Z 2008-12-22T02:00:34Z I've been working on this for a while trying to wrap my head around it. Could anyone explain this a little bit? I probably only need a little push to get me going.