-
Replied To a Post in Create Multiple Textboxes and labels in different forms
Good luck getting 200 text boxes on the same form. > txtb.Name = txtb.Name Huh? Why are you setting Name equal to itself? Question 3: What version of vb.net are … -
Replied To a Post in Help Please!
>i didn't handle firstName and id in struct Well, add them to the structure. > And there is no lettergrade in input file. There is in the example you posted. … -
Replied To a Post in help me please
Do the assignment one small part at a time. First write a program that contains a loop which runs from 0 to 5. Then declare an array of 5 strings. … -
Replied To a Post in After making a program, how can I....
Here are [50 Ways To Leave Your Icon](http://www.codeproject.com/Articles/4335/Embedding-Icons-In-Your-VB-NET-Application) Then [how to change the icon on the task bar](http://stackoverflow.com/questions/11581320/change-icon-on-task-bar-for-vb-net). -
Replied To a Post in Self proclaimed
You're the one who called yourself a "love" doctor, not me. google "love doctor" and see what you find. -
Replied To a Post in Help with string parsing
Call find_first_of() instead of just find(), as in the example in [this thread](http://www.cplusplus.com/reference/string/string/find_first_of/). In a while loop keep calling find_first_of() until it returns npos. Each time one of the characters … -
Replied To a Post in How is the weather today in your country?
Some freezing rain again today. -
Replied To a Post in Self proclaimed
Maybe he's bragging about how much sex he is getting :) Young men like to do that, whether it's true or not. -
Replied To a Post in Vector Subscript out of Range
What compiler are you using? Does it tell you what line the error occurred on? The error message is not related to the tt array becuse that is an array, … -
Replied To a Post in How to use BCrypt.Net in VB.Net?
oh, I thought you had just the sourcde code. In that case you should be able to link to it the same way you would link to any other external … -
Replied To a Post in C++ Books
Visual C++ is just c++, any c++ book will do it. Or do you want a book on how to use the Visual Studio IDE? -
Replied To a Post in How to use BCrypt.Net in VB.Net?
Since it was written in C# you can't just simply add it to your existing vb.net code. You might try compiling it with C# compiler into a library, then calling … -
Replied To a Post in Bad Grammar
[This](http://www.usingenglish.com/glossary/indefinite-article.html) seems to be a good source for English grammer. -
Replied To a Post in Development Software
It will depend on the operating system, but for MS-Windows the best program for writing Windows GUI is [Visual Studio](http://www.visualstudio.com/en-us/visual-studio-homepage-vs.aspx). That doesn't mean it's the easiest to learn or use. … -
Replied To a Post in unreachable code with goto
I don't see a goto statement -- where is it? -
Replied To a Post in Bad Grammar
>I think the rule is : Before vowel sound Yes, that's how I was taught. For example "an historian" not "a historian". but I've heard a lot of people on … -
Replied To a Post in How do you find the length of an integer array in c++?
That works only for arrays that are declared in the same function -- it does not work with pointers or arrays passed to other functions (which are also pointers). A … -
Replied To a Post in Time.h
localtime() returns a pointer to a tm structure. Then asctime() is called to convert the structure into something human readable, although you could do this yourself if you wanted to. -
Replied To a Post in New Homepage
Frankly I find the Home Page listing somewhat confusiong when compared to Recently Updated Articles. They both present the same threads, but those on Home Page sho the last poster's … -
Replied To a Post in Bad Grammar
According to one post in the thread I linked to, performant has no clear definition, it can mean almost anything you want it to mean. >The useful thing about a … -
Replied To a Post in error LNK2019: unresolved external symbol "private: void __thiscall CHand::
Those kind of errors nearly always means you didn't implement one or more of the class's methods. If you think you did, then it may be a spelling/capitalization problem. The … -
Replied To a Post in queue with linked list
The instructions are not completely clear -- How are you supposed to determine how much time each transaction takes? Or is that just a random number too? First you will … -
Replied To a Post in go to working
>Can u just expalin that point? It was company coding standards that the goto statement should never be used. Most software companies have coding standards that they expect their employees … -
Replied To a Post in Bad Grammar
Performant -- I had to google that word because I don't recall ever hearing it. That brought me to[ this discussion,](http://boulter.com/blog/2004/08/19/performant-is-not-a-word/) which is on target with this thread, but was … -
Replied To a Post in Reading from .txt a cheking vowel a
Using feof() like that may produce unexpected behavior, such as counting the last line twice. That's why it's better to loop like Deceptkion wrote it. Is there a reason why … -
Replied To a Post in go to working
When I was working a programmer would have been repremanded for using the goto statement. On the otherhand, I saw it used once in Micorosoft source code. -
Replied To a Post in New Homepage
>AD, it's been like that for half a year. :) Actually, this is the first time I bothered to read it, and then only because of this thread. Normally just … -
Replied To a Post in New Homepage
Today's Most Active Members -- fades out so that I can't even read the bottom few lines. Was that on purpose? -
Replied To a Post in How to send and receive data through rs232 in Vs2010
This is c++ forum, not vb.net >when I send file without the received Com, it still send and exit, What part of that program are you talking about -- which … -
Replied To a Post in Access Violation when reading of the location 0x0000001c
But a c/c++ compiler won't look at it that way. It will pass either 0 or 1 as the parameter because it's a boolean expression (true/false). -
Replied To a Post in Access Violation when reading of the location 0x0000001c
>rel(*this,z==res[count]*X1[count1]); It was probably the == boolean operator that caused the problem `rel(*this,(z=res[count]*X1[count1]));` -
Replied To a Post in Wifi Doesn't Have A Valid IP Configuration?
Do you have two computers with the same IP address? -
Replied To a Post in How is the weather today in your country?
Sleet and freezing rain today. I wanted to go shopping, but changed my mind because I'm not in that big a hurry to drive my car into the ditch. -
Replied To a Post in Should I or Not?
Oh no! Not another Elvis nutjob :) I don't know why people are so crazy over that truck-driver-turned-singer. He wasn't all that good of a signer, and a horrible actor. … -
Replied To a Post in Bad Grammar
I don't think they teach huck finn in American schools any more becuse it is rather racist. -
Replied To a Post in Bad Grammar
Besides, I ain't no authority on nuthin :). -
Replied To a Post in Information from a text file into separate elements
You need to post the first few lines of the text file so we can see what the program is to read. -
Replied To a Post in Array to display 6 names the user inputs back to them
Delete lines 17 and 24 -- the variable Count is changed by lines 14 and 21 delete line 6 to 12 because the user is supposed to enter those strings. … -
Replied To a Post in help! inserting data in sql server
It's just a simple SQL statement. If you don't know SQL, then you need to read [a tutorial ](https://www.google.com/#q=sql+tutorial)on it. -
Replied To a Post in Vb.Net - get SSID or this Computer connected to the My Network
The problem is most likely with the Firewall that's on the computer hosting the database. Change a firewall setting to open up the port your program is using. I had … -
Replied To a Post in Bad Grammar
No -- it's just a catchy title, don't take it personally. Just like anything else, practice is the key to success. Read lots of English-written novels, magazines, and newspapers. If … -
Replied To a Post in pattern matching algorithm
If the pattern is allowed to use wild card characters, such as \* and ? then it gets a bit trickier. -
Replied To a Post in map using lots of memory and long run time
Instead of trying to blaim memory leaks on your compiler you should be looking at your own code for them. Most compilers have been tested pretty thoroughly. In 25+ years … -
Replied To a Post in Trying to get file size and inputing it on a int stack
>Read the entire file to a string and use string lenght function. That won't necessarily produce the file size because the file may contain characters that are translated by the … -
Replied To a Post in how print void pointer to string?
Not sure which of these you want, all three have been mentioned before. Here are three possibilities. Maybe the third option is what you are looking for. If ***test*** is … -
Replied To a Post in Bad Grammar
And Dickens lived in a time when most common people were illeterate. Just because a famous author writes something in literature doesn't mean it's acceptable in conversional or otherwise written … -
Replied To a Post in can' t get string keyword in dev-c++ 5.5.3(windows8)
As deceptikon said, C language does not have a string data type. Instead, it uses character arrays. For example if you want it to hold the word "Hello" then the … -
Replied To a Post in printing array of linked lists
I don't see a linked list in the code you posted -- just a couple arrays. Why do you have a two structures that contain circular references? EDGE has a … -
Replied To a Post in How to use getBytes() in VC++
In c++ we use either cin or getline() to get characters from the keyboard, and you have to allocate the buffer yourself Use this if the password contains no spaces … -
Replied To a Post in How to run a command line in windows scheduler
Combine the two lines `"C:\Program Files\SyncToy 2.1\SyncToyCmd.exe" -R > C:\Users\Test\Desktop\logs.txt` The quotes are probably required because of the space in the path.
The End.