Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+4
Strength to Decrease Rep
-1
100% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #4K
~17.1K People Reached
Favorite Tags
c++ x 31
c x 4
Member Avatar for jigglymig

I’m having an issue with the barcode reader only being able to scan 1 of the 2 scannable barcodes. Both barcodes are the same number, but one is slightly larger. The gun is used for shipping and manifest. I am using 1 gun on the dock with multi interface connection. …

Member Avatar for rproffitt
0
234
Member Avatar for jigglymig

The goal of this project is to create a dll that will take in employee and employer information then return W2(s) in pdf form. Then the main program will cycle through them and email/print. Currently, the program is adding the SSN and the edited pdf to a dictionary and returning …

Member Avatar for jigglymig
0
259
Member Avatar for jigglymig

Is there a way to change the font size per line. say something like an array of strings for(i=0;i<10;i++) { if(i > 5) myRichBox.AppendText("<size=30>" + mystring[i] + "</size>"); else myRichBox.AppendText("<size=20>" + mystring[i] +"</size>"); }

Member Avatar for Reverend Jim
0
239
Member Avatar for jigglymig

Is there a way to resize controls, such as a button, instantaniously with the window being resized? Currently, I am using a button click method to resize using this code: UpdateLayout(); addButton.Height = this.Height / 30;

Member Avatar for rproffitt
0
293
Member Avatar for jigglymig

I am trying to figure out how to read/write to a file without knowing it's exact path. I was using resources and was only reading in the files, but now I need to write to them and there doesn't seem to be an easy way about this. I was looking …

Member Avatar for rproffitt
0
564
Member Avatar for jigglymig

I downloaded visual studio 2013 and added xna to it so that I can run a game I made in vs2010. However I am having an issue in which it is not allowing me to start debugging or start without debugging. The xna I downloaded is from here https://mxa.codeplex.com/releases/view/117230 if …

Member Avatar for jigglymig
0
209
Member Avatar for Narue

When you want to remove extraneous characters from an input stream in C++, it's usually because you mixed formatted and unformatted input methods. The formatted method would leave a newline in the stream and the unformatted method would consume it and terminate successfully, but fail completely to do what you …

Member Avatar for Smn
18
13K
Member Avatar for jigglymig

This is not an assignment, teacher wants us to do this as a prereq for an assignment and his instructions are not clear enough for me to follow. I am using C: instead of E: I made the directory C:\sql and coppied the cmd.exe and pasted it. When I right …

Member Avatar for deceptikon
0
133
Member Avatar for jigglymig

I have been looking on the internet for how to do a save as on my form, but can't seem to figure it out. All I know is you can do something with the saveFileDialog, but I don't even see it pop up. I want to incorporate 8 Different SaveAs …

0
77
Member Avatar for jigglymig

I am having trouble making the link open a web browser and going to the website can someone please show me what to do in the linkClicked. private void agricultureLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { }

Member Avatar for lxXTaCoXxl
0
107
Member Avatar for jigglymig

I think I am comparing something incorrectly since it does take in my input and tells me no shortest path.. here is example input and output... 5 7 0 1 1 0 2 2 1 3 6 1 4 4 2 3 5 2 4 7 3 4 3 you …

Member Avatar for jigglymig
0
199
Member Avatar for ayershuja

using circular link list by using class Class Employee { Eid integer ; Ename string; Esalary real ; Edesignation string ; } how we can do following operation: Create a link list Insert a node after a specific node with a given Eid Insert a node before a specific node …

Member Avatar for jigglymig
0
113
Member Avatar for jigglymig

I am trying to make the heapSort function I wrote work with the heapRebuild I was given. If someone could please tell me what exactly I am doing wrong or help point me in the right direction. [CODE]void Heap::heapRebuild(int root) { // if the root is not a leaf and …

Member Avatar for jigglymig
0
234
Member Avatar for jigglymig

I need to create ever possible binary tree and then count the comparisons an example is if I had a binary tree with 1 and 2 then there are 4 possible binary trees... root = 1 LChild = 2 root = 1 RChild = 2 root = 2 LChild = …

Member Avatar for mrnutty
0
169
Member Avatar for ItsAdZy

I would like the user to be able to see the sales total for any given month when they input a valid month. Everything works other than what I stated above. I am completely stumped on how to store the salesTotal values inputted by the user into an array (monthSalesTotal). …

Member Avatar for WaltP
0
170
Member Avatar for jigglymig

[COLOR="green"][B]I already have counting the number of elements programmed, which was fairly easy, but now I am confused with the comparisons. how exactly would I program this exactly? please help me understand what exactly to do bc the wording is really confusing me[/B].[/COLOR] Problem Statement In order to compute the …

Member Avatar for jigglymig
0
160
Member Avatar for jigglymig

my problem is that when I try and run it it says 'SortedList' : cannot instantiate abstract class due to following members: 'bool BasicADT::isEmpty(void) const' : is abstract ...and... 'int BasicADT::getLength(void) const' : is abstract can someone please tell me what I am doing wrong with my getLength and isEmpty. …

Member Avatar for BlueSky2
0
122
Member Avatar for jigglymig

my problem is the Point plus(Point). how should I declare it and all that. [CODE]// point.h -- This creates a point with both x and y of type integer #include <iostream> using namespace std; template<typename T> class Point { private: T x; T y; public: Point(T,T); Point(); void set_x(T); void …

Member Avatar for jigglymig
0
107
Member Avatar for jigglymig

I am trying to make a circular linked list and I think I am not linking it properly in the middle area because I can print the last and first node, but not the rest... [CODE]#include <iostream> #include <new> using namespace std; struct node { int Item; node* Next; }; …

Member Avatar for Lerner
0
104
Member Avatar for jigglymig
Member Avatar for jigglymig

I am having trouble with the program not pushing the strings and only part of the characters from the file. I really hope one of you can help me because this is due in the morning here is the actual assignment Learning Objectives: The purpose of this lab is to …

0
65
Member Avatar for jigglymig

need some help with the friend function that overloads the << operator heres my code thus far.... [CODE]#ifndef PRODUCT #define PRODUCT #include <iostream> using namespace std; class CProduct { private: int productID; // 5-digit product ID number int manufactureID; // 4-digit manufacturer's ID double price; // wholesale price double markup; …

Member Avatar for jigglymig
0
237
Member Avatar for jigglymig

need some help turning this single linked list into a circular linked list. I am completly lost on how to get the first node and link it to the last one [CODE]#include <iostream> using namespace std; struct node { int Item; node* Next; }; // end struct node* Head; typedef …

Member Avatar for raptr_dflo
0
211
Member Avatar for jigglymig

havn't programmed in c++ in well over a year and taking a new class at a different college. So I completly forgot how to work with linked lists. we are doing review so notes in book/slides don't include too munch information and is all in pseudo code. at the moment …

Member Avatar for jigglymig
0
104
Member Avatar for jigglymig

everything works except I need it to give me the max and min month (i.e. 1,2,3..12) instead of the number entered into the array. #include <iostream> using namespace std; int main() { const int SIZE = 12; double months[SIZE]; int count; double sum = 0; double totalRainfall; double averageMonthlyRainfall; double …

Member Avatar for donaldw
1
120