-
Began Watching Thread read from file and put words in array not in arraylist.
I have problem to understand threads. Can someone help me to know how i can do rest of this program. Here is program text first: The program will read a … -
Replied To a Post in Thread read from file and put words in array not in arraylist.
I am going to take the hints from everybody else in the forum, and not give away homework answers, but I coded something like this in C# just now, and … -
Began Watching Inheritance problem in C#
Is it possible to let an overridden method from a base class to return the type of the derived class? What I mean is: namespace test //with some "pseudo" code … -
Replied To a Post in Inheritance problem in C#
I am reading a book right now, called "C# in depth" (3rd ed.), the author mentions contravarience, and covarience in places, but I am not finished yet, so I don't … -
Marked Solved Status for Convoluted Fibonacci
So the other day I was just experamenting with some code, just for fun, and I ran into some difficulties. So I suppose my question is why the following code … -
Replied To a Post in Convoluted Fibonacci
That would be a good fix too. Thanks. -
Replied To a Post in Convoluted Fibonacci
So I figured that a loop might be better than calling recursive methods or something, am not sure. But I wrote this program using 3 big integers to see how … -
Replied To a Post in Convoluted Fibonacci
Thanks for the help. I am really just messing around with this code now, I acutally am not very dumb. -
Replied To a Post in Convoluted Fibonacci
Wait a sec, is the + operation returning a new big integer object? Oh. I shoulda seen that. -
Created Convoluted Fibonacci
So the other day I was just experamenting with some code, just for fun, and I ran into some difficulties. So I suppose my question is why the following code … -
Began Watching Convoluted Fibonacci
So the other day I was just experamenting with some code, just for fun, and I ran into some difficulties. So I suppose my question is why the following code … -
Began Watching New Programmers - What resources are available to you?
## Why am I Here? ## This question is not as philosophical as it sounds, but it's one worth answering. I am here because I want to help people understand … -
Replied To a Post in New Programmers - What resources are available to you?
MSDN is a good resource for getting information on the C# classes, and other aspects of the .NET framework. Didn't see anybody mention it here, but just glanced over the … -
Replied To a Post in How do I get my email off the bounced list
Thank you. -
Created How do I get my email off the bounced list
Hi, so this has been bugging me for a while about Danni Web website. I seem to have neglected my email account for a while, and now it is on … -
Began Watching How do I get my email off the bounced list
Hi, so this has been bugging me for a while about Danni Web website. I seem to have neglected my email account for a while, and now it is on … -
Replied To a Post in Nested Loop
So when reading my code, take into account that I am essentially using delegates (callback functions) to make one loop act like two. I have a bachelor's degree. I am … -
Replied To a Post in Nested Loop
P.S. whoever came up with this code requirement is evil, don't trust them. -
Replied To a Post in Nested Loop
Ok, so I figured out that in my code I had to take into account the fact that when you go half way through the numbers, the logic for the … -
Replied To a Post in Nested Loop
So, whether the start value increments in the loop seems to hinge on whether the current line number is even or odd, so you get the pattern 1, 1, 2, … -
Replied To a Post in Nested Loop
Why did you put @overwraith? This isn't my thread? -
Began Watching Nested Loop
Write the nested loop that causes this output below: *It can only use one if statement ( I'm having issues solving it I never solved a nested loop like this … -
Replied To a Post in Nested Loop
Are you entireley sure that the sequence isn't supposed to look like this? 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 1 2 … -
Began Watching Passing array as const
I have a function that counts the commas in each item of an array of string. public int CommaCount(string[] sarray) { int count = 0; int commas = 0; for … -
Replied To a Post in Passing array as const
You would essentially need a deep copy clone of the array. Array only has a shallow copy though, so you would need to find some code that allows for deep … -
Began Watching Pick the closest number out of dictionary
Hi guys, I am trying to write a program which picks the closest number possible out of a dictionary. The dictionary contains 50 doubles values, and I use a random … -
Replied To a Post in Pick the closest number out of dictionary
Just curious what kind of application needs to choose one of 50 doubles without going over? Is this some kind of guessing game? -
Replied To a Post in Big O notation
Ok, thanks. None of the school cirriculum books I have read broach the topic. I heard it mentioned in a C class but never substantially. I have had some Calculus … -
Created Big O notation
Have any of you ever done big O notation? I found some websites that describe it, but not many professional ones. Are there any books that describe it too? -
Began Watching Big O notation
Have any of you ever done big O notation? I found some websites that describe it, but not many professional ones. Are there any books that describe it too? -
Began Watching Project Idea for presentation?
Hi I am a senior at high school. The school is making us create a product to present and I want to create a Java computer program for my product … -
Replied To a Post in Project Idea for presentation?
Once I coded a C#/ASP.NET citation generator. You can code it in any language however. Involved a database where the citations would be stored (you may be able to get … -
Created Question concerning protocol development
So I am kinda new to developing client and server sockets (protocols), and am developing something just for fun on my own network. This program basically will send all files … -
Began Watching Question concerning protocol development
So I am kinda new to developing client and server sockets (protocols), and am developing something just for fun on my own network. This program basically will send all files … -
Began Watching Extracting Phone numbers from Documents(Word, PDF)
Hi Friends, I want to do a project for Parsing Resume in C#. i.e when we upload resumes(More than 100), it should extract Name, email id, phone no, skills. **Please … -
Replied To a Post in Extracting Phone numbers from Documents(Word, PDF)
The following is java, for extracting text from files: import java.io.IOException; import com.itextpdf.text.pdf.PdfReader; import com.itextpdf.text.pdf.parser.PdfReaderContentParser; import com.itextpdf.text.pdf.parser.SimpleTextExtractionStrategy; import com.itextpdf.text.pdf.parser.TextExtractionStrategy; public class PDFToText { public static void main(String[] args) { for(int … -
Began Watching Help with Code
so i need help on Modifying the source code to sort on the Title (in ascending order) and display the book title, comma space, author’s first name, comma space, author’s … -
Replied To a Post in Help with Code
The toString method does not get overridden enough, and is good for displaying your books. Just override your own version which displays the variables you want displayed. Then you can … -
Marked Solved Status for Linq Exception trouble
So, I am trying to get a query working that finds a certain flash drive attached to my computer and selects it's DriveInfo object. I am having trouble because on … -
Replied To a Post in Linq Exception trouble
Now I know that you all said that it was bad form to use multiple where statements in a query, but my compiler says it is ok, and it seems … -
Replied To a Post in Linq Exception trouble
If you don't check the VolumeLabel, then yes it does work, but that means it only does half the job. -
Replied To a Post in Linq Exception trouble
Right, but there are no CDs in the drive, I think it could be some other software on the system emulating something in the background, so I need to be … -
Replied To a Post in Linq Exception trouble
Am still getting the IOException however, "The device is not ready." var exfil = from drive in DriveInfo.GetDrives() where drive.DriveType == DriveType.Removable && drive.VolumeLabel == "EXFIL" select drive; -
Replied To a Post in Linq Exception trouble
Am new to Linq, is kinda my first line of it. You shure it needs it? ok. var exfil = from drive in DriveInfo.GetDrives() where drive.DriveType == DriveType.Removable and drive.VolumeLabel … -
Edited Linq Exception trouble
So, I am trying to get a query working that finds a certain flash drive attached to my computer and selects it's DriveInfo object. I am having trouble because on … -
Created Linq Exception trouble
So, I am trying to get a query working that finds a certain flash drive attached to my computer and selects it's DriveInfo object. I am having trouble because on … -
Began Watching Linq Exception trouble
So, I am trying to get a query working that finds a certain flash drive attached to my computer and selects it's DriveInfo object. I am having trouble because on … -
Began Watching how to get the file signature in java?
how to get the file signature in java? for example a pdf file has signature 25 50 44 46 ..how to get it using java? -
Replied To a Post in how to get the file signature in java?
Do you mean the first few bytes of a file, or the hash of the file? If you mean the hash, you will need to use a **hash algorithim** which … -
Replied To a Post in libnet troubles
So how would I go about doing this?
The End.