Posts
 
Reputation
Joined
Last Seen
Ranked #184
Strength to Increase Rep
+11
Strength to Decrease Rep
-2
93% Quality Score
Upvotes Received
122
Posts with Upvotes
107
Upvoting Members
73
Downvotes Received
9
Posts with Downvotes
9
Downvoting Members
6
37 Commented Posts
10 Endorsements
Ranked #180
Ranked #175
~306.61K People Reached
Favorite Tags
Member Avatar for Realitiez

I recommend using some useful names so it is easier to follow your code. Use something like "height", "startWeight", "endWeight" instead of "t1", "t2", "t3". I suggest that you use the following form of the for loop: double startWeight = 60; double endWeight = 125; double weight = startWeight; for …

Member Avatar for Rawand_2
0
2K
Member Avatar for savedlema

Store all of the menu names that will require access permissions in a table. **Create table: Menu** Column: name (PK) or Column: id (PK) Column: name **Create table: Group** Column: name (PK) Column: menuPermissions (PK); FK references Menu.name **Create table: UserPermission** Column: id (PK); FK references User.id Column: groupName (PK); …

Member Avatar for Reverend Jim
0
6K
Member Avatar for fuzebox40

If this only happens when using under battery power, it could be a bug in the video driver, the video chip, or a bug in the OS. You may consider opening a case with HP, although there may be a fee involved. You can download the latest Intel video driver …

Member Avatar for Pierre-Henri
0
3K
Member Avatar for TheMightySpud
Member Avatar for Xavier_5
0
1K
Member Avatar for Isky

Just change the delimiter. [code] Scanner in = new Scanner(System.in); in.useDelimiter("\n"); [/code]

Member Avatar for stultuske
0
21K
Member Avatar for infiniteloop56

Reading URL: [Click Here](http://docs.oracle.com/javase/tutorial/networking/urls/readingURL.html) Reading and writing to URL: [Click Here](http://docs.oracle.com/javase/tutorial/networking/urls/readingWriting.html) Programmatically click a web page button [Click Here](http://stackoverflow.com/questions/16589417/programmatically-click-a-webpage-button) Selenium video tutorials: [Click Here](http://qtpselenium.com/selenium-tutorial/selenium-training-java-part-1/)

Member Avatar for ajahar
0
365
Member Avatar for .millz.

There doesn't seem to be a mechanism for changing the question (such as a button). As is, it always loads the first question from the table in the database `dt.Rows(0)...`. To change the question, change '0' to another row number. A basic way to do this is to use two …

Member Avatar for rproffitt
0
554
Member Avatar for IconiCxPimp

After line 126, add the following (for troubleshooting purposes): string msg = string.Empty; msg += "x: " + x.ToString() + System.Environment.NewLine; msg += "y: " + y.ToString() + System.Environment.NewLine; msg += "SHOT: " + SHOT.ToString() + System.Environment.NewLine; msg += "GOALIE: " + GOALIE.ToString() + System.Environment.NewLine; msg += "picPlay Length is …

Member Avatar for IconiCxPimp
0
336
Member Avatar for Darth Vader
Member Avatar for Vignesh Kumar
0
2K
Member Avatar for Xethiro

Have you considered using an int array of size 10 and initializing each element to 0? Index 0 would keep track of the number of times the number 0 occurs. Index 1 would keep track of the number of times the number 1 occurs...etc. Break what you are trying to …

Member Avatar for Xethiro
0
215
Member Avatar for Reverend Jim

First of all, I'd re-install the OEM drivers from the manufacturer's website. Then you could try the following: [How to Fix Slow USB 3.0 Problems in Windows 8.1](http://wind8apps.com/windows-8-1-usb-3-0/) Article references [MS Windows USB Core Team Blog](http://blogs.msdn.com/b/usbcoreblog/archive/2013/11/01/help-after-installing-windows-8-1-my-usb-drive-disappears-or-file-transfers-stop-unexpectedly-r-a-post-title.aspx) which shows some images for the steps described in the article. To get latest …

Member Avatar for jwenting
0
762
Member Avatar for LibraryCode

In "Main.cpp", line 63 should be `cout << "Number inserted:" << num << endl;` In "Main.cpp", there are multiple problems with "ProcessMenu". * No "do" for the while statement * `case1` should be `case 1` (you need a space between the word "case" and the number 1) * In "ShowMenu" …

Member Avatar for LibraryCode
0
291
Member Avatar for Ahmed_65

It's been a while since I've written anything in Perl, but one way of doing it would be to use two arrays--storing all of the "rsId" values in one array and all of the "buildId" values in the other array. Then print all of the "rsId" values separated by a …

Member Avatar for 2teez
0
289
Member Avatar for Saboor880

There is an interface for creating databases. If using the Express version: * Click "View" (in menu) * Select "Object Explorer" * Click the "+" sign next to your database instance (or double-click your database instance name) * Click the "+" sign next to "Databases" to expand Databases (or double-click …

Member Avatar for cgeier
0
319
Member Avatar for zehdekiel

What do you mean by "internal port for the mini usb detatched from the board"? What is the model number of the broken drive?

Member Avatar for mindmergepk
0
412
Member Avatar for cgeier

The Community Center Chat window keeps appearing (opening) after I close it which is rather annoying.

Member Avatar for Dani
0
263
Member Avatar for vapor162
Member Avatar for vapor162

[Do I need to dispose/close XDocument.Load(string)?](http://stackoverflow.com/questions/3680288/do-i-need-to-dispose-close-xdocument-loadstring) *"No, you don't - it doesn't even implement IDisposable. The XDocument and XElement classes use XmlReader under the covers and handle the disposing of the underlying reader for you."* [Using Statement (Visual Basic)](https://msdn.microsoft.com/en-us/library/htd05whh.aspx) *"...Managed resources are disposed of by the .NET Framework garbage collector …

Member Avatar for cgeier
0
2K
Member Avatar for tnd2491

There is a tutorial on how to use BackgroundWorker here: [How to use BackGroundWorker to Create Threads](https://www.daniweb.com/software-development/vbnet/tutorials/477520/how-to-use-backgroundworker-to-create-threads) It is for VB .NET, but can easily be converted.

Member Avatar for cgeier
0
1K
Member Avatar for divinity02

You prompt the user for the number of courses taken (numcourses), but don't use that information. Instead you hardcoded a value of "3". Look at every place you've placed a "3" and ask yourself if perhaps that value should be replaced by "numcourses". Also, what is the purpose of a …

Member Avatar for JamesCherrill
0
250
Member Avatar for Darrenleesuona
Member Avatar for cgeier
0
201
Member Avatar for Nuno_1

Please post your code for "Form1.cs". It looks like it should contain an instance of "VEntradas" and something that sets the value of "entradas" for the instance. example code in Form1.cs: VEntradas myVEntradas = new VEntradas(); myVEntradas.entradas = "Armazem"; myVentradas.ShowDialog(); Also, if you aren't going to set an initial value …

Member Avatar for Nuno_1
0
206
Member Avatar for cgeier

I will be showing how to pass data between two forms in VB .NET. I will be using two forms, two classes which we will define, a delegate, an event, and an event handler. It is my first tutorial and is a bit long because I wanted to make it …

Member Avatar for kplcjl
4
5K
Member Avatar for flebber

An instance constructor is used to create an instance of a class. In C# it isn't necessary to create a default constructor that is empty. What do I mean by "a default constructor that is empty"? Let's look at some of the code from above: class MyCalculations { public MyCalculations() …

Member Avatar for cgeier
0
297
Member Avatar for TnTinMN
Member Avatar for Jim_8
1
3K
Member Avatar for no123

Have you considered using a database? Are you trying to store all of the objects into a single file? How many records (entries) do you anticipate having for each object?

Member Avatar for cgeier
0
291
Member Avatar for Wuhoo

Do something like this is only appropriate in a business setting on computers the business owns and only when this has been specified as a requirement. Whereas, only allowing a single instance of an application to run is appropriate on any computer.

Member Avatar for cgeier
0
300
Member Avatar for David_54

Are there any beep codes? Since you've replaced parts it may or may not be the same issue, but rather giving similar symptoms. Double check that you properly connected the wires from the case to the mb--check the diagram in the mb documentation. Ensure the processor is properly seated. Ensure …

Member Avatar for MadeIT
0
249
Member Avatar for Metalvoice

See the tutorial [How to pass data between two forms in VB .NET](https://www.daniweb.com/software-development/vbnet/tutorials/475628/how-to-pass-data-between-two-forms-in-vb-net)

Member Avatar for Mr.M
0
476
Member Avatar for zalax

Maybe next week's lesson from your professor is how to fix it? You might try researching the following: -WinPE -bcdedit -bootrec

Member Avatar for Little Relhok1
0
723