- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 3
- Posts with Upvotes
- 3
- Upvoting Members
- 3
- Downvotes Received
- 3
- Posts with Downvotes
- 3
- Downvoting Members
- 3
29 Posted Topics
Re: change your scores from a double to a struct. You need two types, one for quizzes and one for exams. | |
Re: You should investigate the singleton pattern (http://www.oodesign.com/singleton-pattern.html) | |
Re: The game functionality should be seperate from the graphic representation of the game. Try to write the game in a command prompt mode only. Then you can represent the board as a 2-dim array and each array item contains a class of type official or is empty You shoould have … | |
Re: Best is to try for hands-on experience. Down load and install MySQL, then you have all the resources and tutorials online. Google 'MySQL tutorial' and take your pick | |
Re: You need to supply a bit more detail about what you are trying to do | |
Re: The idea of a "short" variable name only made sense when memory was very expemsive and the maximum was only 640K RAM. Giving it a meaningfull name is more important and helps with self-documenting e.g. [CODE]int lstr_this_variable_will_only_be_used_under_certain_conditions;[/CODE]makes more sense than [CODE]int maybe;[/CODE] | |
Re: A flat file is a file that contains a set of records. The records are normally seperated from each other by a space, a comma, or a new line. You could export a spreadsheet file to a comma seperated list i.e. a text file where every item is seperated by … | |
Re: One of the classes I did was called "System Analisys" which teaches all about determining the exact requirements of a software application. You use things like 'use cases' to seperate the 'must haves' from the 'nice to haves' to determine the core functionality of an application. Somewhere along the process … | |
Re: My guess would be there is something wrong with your .NET installation, such as a missing or corrupt component. You can spend days hunting for the faulty component or just reinstall Visual Studio. | |
Re: I had similar problems even while connected directly to the router (no WIFI), so I called the ISP. They tried very hard, even replaced the underground wiring from their box outside the house to the next point after confirmiong the wires from their box to the house was fine. I … | |
Re: If you use the * in your search staement, you ask for and get everything. Remove the * and only list the columns you want. e.g. SELECT Batch_Number, Medicine_Name, Mfg_Company FROM | |
Re: When matching the computer hardware with the OS you should consider the avaiability of hardware drivers in the chosen OS. If the system video or sound hardware is not recognized by the OS, you have to perform magic to get it to work. Try to be more adventurous and experiment … | |
Re: Here is the blind leading the blind...(I have never worked with touch screens) With any touch screen, the hardware drivers should be installed. This will result in an event being generated if you touch the screen. You should be able to trap that event in debugging mode and see what … | |
Re: If you look at the value of 'insert' the statement will read: [CODE]INSERT INTO userInfo VALUES(John,John1,0,1)[/CODE] [B]John[/B] and [B]John1[/B] is interpreted as column names since they are not integers. Try placing the values inside ''. e.g. VALUES('" + username + "',etc will be read as VALUES('John', | |
Re: If you need a Computer Science degree to operate a CNC lathe, no lathe would ever be sold. If I were to write the system to control a lathe I would make it "money-see-monkey-do", like generating a keystroke macro. The operator would make a cut and the machine would learn … | |
Re: I agree with CrisHunter: If you want to bring religion into it, we would much rather teach you to fish than give you a fish. | |
Re: Try this: [CODE]dlg.panel7.Visible = true; dlg.panel7.BringToFront();[/CODE] | |
Re: for line 24, try: [CODE]this.Location = new Point(deskWidth, 0);[/CODE] | |
Re: More like a one-way relationship: Network admin do not need programming skilles except to write some small scripts Programmers need networking skills because they might be required to write a networking application | |
Re: [url]http://www.infoworld.com/d/applications/25-free-open-source-projects-it-pros-will-love-180638[/url] | |
Re: The best way to learn it is by doing it. Start by writing a "Hello World" program. Then start refining it by adding bells and whistles. You will need to read a lot. | |
Re: I suppose the 4 classes is a hint to use a two-dimentional array. Visualize 100 shoe boxes places on four shelves, 25 per shelf. So your class(0) would refer to one shelf. Now, how would you refer to any one of those boxes on that shelf? (0,x), (1, x), etc. … | |
Re: This thread resulted in me discovering the name of the paradigm I have been using for the past two years: "Prototype-based programming" as applied to PowerBuilder. | |
Re: In my opinion Computer Science teaches you to code (anything from a ‘hello world’ to your own operating system) Then when you know how to code you get into Software Engineering where you learn how to develop and maintain large systems, topics such as the most efficient life cycle, most … | |
Re: The question should be "How to study Programming" Relying only on one (unwiling/ignorant) teacher is the same as Googling a problem and then only read the first link. | |
Re: You are asking the wrong question to the wrong people. Ever heard of the term "Outsourcing" ? | |
Re: I suggest you re-arrange the labeling of the input. If you compare this circuit with the circuit of a normal full adder then B and C are the standard inputs (A, B) and D is the carry. I am not sure what A does, except to act as a carry-enable. … | |
Re: Two choices, copy the content of the file to an array or convert the content of the file to a stream. You can discard the first line when you process the array or stream |
The End.