-
Replied To a Post in need help ASAP
They way you calculate your tax is wrong. Multiplying by a number less than one is analagous with dividing. So multiplying by 0.05 will give you the same answer as … -
Replied To a Post in codes for this OOp
Which bit are you struggling with exactly? -
Replied To a Post in need help ASAP
If you're still getting into the "C" options, it means you're missing a break after the "T" section. To make life a bit easier, you can surround your case statements … -
Replied To a Post in codes for this OOp
The most striking problem I find with your question is that it *tells you how to answer it*. It even gives you instructions... There's is *nothing* here that is difficult. … -
Replied To a Post in Help
You only need one loop :) -
Replied To a Post in need help ASAP
You're missing several `break` statements which cause the code to 'fall through' from one case to the next. `break` essentially tells it to stop executing instructions in the current switch … -
Replied To a Post in How to download Artifactory from .NET
I'm with ddanbe on this one, sounds like whatever runs your network is picking up "suspcious activity" and disconnecting you. Unless you can get us a clear error code or … -
Replied To a Post in Add Reference in Class Library (for external use)
Because a library only needs to link what it uses. So if you have a library which uses another library.... Library 1: namespace MyNamespace.People { public class Person { String … -
Replied To a Post in Unable to move object after it s rotation
If you apply standard graphics programming concepts in things like OpenGL and DirectX you have a concept of matrices which control the location and rotation of your objects. (Sure you've … -
Gave Reputation to tinstaafl in What's wrong with my Vigenere cipher code?
A few things with your code: As was pointed out using unsigned char gives you more predictable results Using the `islower/isupper` methods to set the appropriate offset to the character … -
Replied To a Post in need help ASAP
The hint here is that you need to draw a flow chart. Rather than thinking of a straight line, you will need to break off and create two parallel flows. … -
Replied To a Post in What's wrong with my Vigenere cipher code?
The maximum value of char is 127. On the third pass of j in the third pass of i, the value of massentence[j] *should* be 140, but the max value … -
Replied To a Post in Reversing your vote doesn't remove the rep given
Did you try unrepping and neg-repping without refreshing the page? That's pretty much what I did (although I'm pretty sure I hit F5 before neg-repping because of the caching issue … -
Created Reversing your vote doesn't remove the rep given
When you upvote or downvote someone with a comment, if you reverse your vote it doesn't reverse the score you gave them. In my case, I accidentally upvoted someone because … -
Gave Reputation to Ravneet_1 in output of program of c++
#include<iostream.h> void main(void) { int x=0,y=2 ; x=y*4 ; cout<<x<<endl<<y<<endl; } -
Gave Reputation to Ravneet_1 in output of program of c++
#include<iostream.h> void main(void) { int x=0,y=2 ; x=y*4 ; cout<<x<<endl<<y<<endl; } -
Replied To a Post in What's wrong with my Vigenere cipher code?
I took your code and translated it into C#. The only problem I had was with your white spacing... Once I deleted your string literals and re-wrote them, the program … -
Replied To a Post in Slowing down Comport Output
Unfortunately that wouldn't fix anything. Is the problem that your buffer is filling up too quickly or that when you get the read there is only 2 lines available and … -
Replied To a Post in Defining Schema for Neo4J Using Neo4JClient in C#
I don't use Neo4j but it looks like a relational Entity style database. So, I would go with the idea that each table in the database should be modelled on … -
Replied To a Post in Deploying lightswitch web application on the server: HTTP Error 500.19 - In
Does your account have permission to use WebDeploy? It could also be that your remot IIS is configured incorrectly. Is your `<uri>` tag inside the `<configuration>` tag? -
Replied To a Post in WebService Issue
What exactly is it that isn't working? How do you want it to work? WebServices aren't WinForms applications so you should not treat them as such. I notice that the … -
Replied To a Post in unreachable code with goto
There is nothing that you've posted that will cause an "unreachable code detected" error. The only problem I can see is the same that other people have mentioned; the loop … -
Replied To a Post in Slowing down Comport Output
You need to bypass the event listener and construct your own loop code that reads from the port. The problem is that the event you have won't fire fast enough. … -
Gave Reputation to deceptikon in Input string was not in a correct format - autonumber
> I'm here to ask a help because I am not a Expert like you I'm a newbie on C# program. I'm happy to help, as evidenced by my posts … -
Replied To a Post in AutoVue ActiveX
I'm pretty much at a loss now as I don't know the module in question. It might be possible to hook into the OpenGL draw events and override the clear … -
Replied To a Post in DESSERTS
You can have a fillet steak for dessert, right? ... Right?? :S On a serious note, warm chocolate cake, with chocolate sauce inside with cornish ice cream on the side … -
Replied To a Post in AutoVue ActiveX
Are you wanting to change the background colour of the control or the background of a window *in* the control? -
Replied To a Post in AutoVue ActiveX
I would have thought this information would have been available in Object Explorer, perhaps not. Essentially, if the property is now private, you can use reflection to set a value … -
Replied To a Post in AutoVue ActiveX
Does the property still exist as a private field? -
Replied To a Post in AutoVue ActiveX
I imagine this goes off and hits DirectX/OpenGL underneath. If the control itself doesn't have a property to set the background control it might be more of a "hack" than … -
Replied To a Post in Encrypt and Decrypt a file via rc4
RC4 is insecure and has been marked as "avoid" by CISCO. You should choose a different algorithm. Additionally, is there any particular reason you chose a stream cipher rather than … -
Replied To a Post in Proxy Server
Find out what the error is and decide yourself how to handle it. It may be recoverable, it may not be. If it isn't, you'll have to decide what to … -
Replied To a Post in creating a process monitor
Not that I'm aware of, so if you've looked at the WMI documentation on the MSDN and not found one, I guess there isn't one. In this case, you would … -
Replied To a Post in Drag and Drop
The easiest way is to set up a proxy list. In your drag drop event, move the items that you've "dragged" into a secondary list and cancel the entire dragdrop … -
Replied To a Post in Game Designer / Programmer
Agree with most here. First, you need to start small. *Very* small. Space invaders is a good example. Build it, learn from it, go back and continually improve it. Gradually … -
Replied To a Post in Importing XML file
If I were in your position and re-writing the entire file everytime, I wouldn't bother trying to modify the existing one. Just create a new one from scratch an over-write … -
Replied To a Post in RTP in C# for Streaming Webcam feed
Is [this](http://www.codeproject.com/Articles/85763/C-NET-RTP-MJPEG-Player) what you're looking for? -
Replied To a Post in C# Transaction
Unless you're using distributed transactions, you need to share the connection on which you create the transaction. The better way in my opinion is to use `TransactionScope` outside of your …