buckwheat88

Members
  • Content Count

    27
  • Joined

  • Last visited

About buckwheat88

  • Rank
    Member
  • Birthday 10/12/1984

Contact Methods

  • AIM
    blim1982
  • MSN
  • Website URL
    http://www.thewonderfullifeofme.blogspot.com
  • ICQ
    0
  • Yahoo
    buck_wheat88

Profile Information

  • Location
    Michigan
  • Interests
    Drums, soccer, Manda, morris dancing, summer vacation, MY PUPPY DOG!!!
  1. Sorry about the late reply, haven't been online since downloading it, but Recuva worked great! Thank you very much!
  2. Hi, I was wondering if anyone knew of any free, free demo, or cheapest software for recovering photos off of a SanDisk SDHC card. All the photos were accidentally deleted. I found one program that was "free". I was able to preview all the photos on the disk, but I would have to pay $40 to save the photos. I tried searching for software but the only things I could find were similar products or links to forums. Figured if all I could do was find forums anyways, I would ask a forum that I knew and trusted. Searched here to see if the question was asked before, but I couldn't find anything.
  3. Ah I'm already a member here, I just like keeping mom in the loop as far as making decisions about my computer, so that if I mess something up I can be like "well you told me to do it".
  4. edit! *Oh gosh, I just noticed after posting this that I'm posting under Buckwheat....Aron must have logged in here and I didn't notice--oh well, this is Liz* LOL, Pat....you were a wee bit cranky, weren't you? That's perfectly OK, by the way! *bighug* I got a big grin from reading your post and thought "sisters in arms"! I should have posted about my day yesterday, but I was TOO cranky and tired! Ton of stuff to do and Hubby sat on the couch all day and never even offered to ask to help (noooo, I won't ask him, he's supposed to notice such things, right?) And today, when I only had a fr
  5. Not sure if this belongs in this forum section, but seemed like the most logical explanation to me... I went to get on my girlfriend's laptop and noticed the zip drive sticking out of it was crooked, pulled the zip drive out and the black strip in the middle of the USB port came out with it. I'm just wondering if I can just slide the black strip back on to the golden metal prongs or if it has to be professionally fixed, or replaced. Thanks for your time, Aron
  6. Nevermind, I fixed it. Once we figured out how to bring the View menu back I knew I could fix it. Figured out the button I pressed was F11
  7. A little game manual was dropped on the keyboard and a couple of shortcut type keys were pressed and now IE is abnormally large. The file, edit, help, etc menu area and address bar are gone and the taskbar on bottom automatically hides only when IE is open. I'm sure it's something easy like pressing alt-m or ctrl-z or something, just don't know which one's were pressed, wasn't really paying attention when the manual was dropped. If anyone knows which keys were pressed, and which keys will reverse it I would greatly appreciate any response. I'll add a pic on bottom to see what it looks like
  8. Sorry about not responding sooner, have either been busy or forgeting about this, but thank you all for the help! Thanks to everyone who helped with any of the questions that I had, it was much appreciated. Got the program working, don't know how I did though, as it was due on the last day of class. Ended up getting an A- overall in the grade though. Wouldn't have been able to do it (well without pulling out patches of hair out of frustration) without you guys. Thanks again! -Aron
  9. I am now also working on decode.cpp. I believe I have everything right up to the last step. I have some pseudocode written out, but don't know how to code my pseudocode... My pseudocode is for the do while statement at the end. This is what I have: do Read from the odd file if the end of file has not been read for the odd file, write into the write file Read from the even file If the end of file has not been read for the even file, write into the write file While(you have not read past the end of file for odd and even) This is the code I have written out so far: // stdlib required
  10. Ok, figured out the counter shiznit, the way he put it confused me. "Integer counter variable" confused me, if he would have said an "int counter" I would have known what to do. Did that step, and also added in the date and time, and this is what I have up to now: // stdlib required for the exit() function #include <stdlib.h> #include <stdio.h> #include <time.h> #include <string.h> int main() { long int sec_since_1970; char date_time_string[26]; char read_filename[65], write_filename[65]; FILE *read_file_pointer, *write_file_pointer; int input_value, C;
  11. Ok, I've hacked through it a little bit, have this for encode.cpp: // stdlib required for the exit() function #include <stdlib.h> #include <stdio.h> int main() { char read_filename[65], write_filename[65]; FILE *read_file_pointer, *write_file_pointer; int input_value, C; FILE *myfile; // Get filenames from user printf("Enter the read File Name "); gets(read_filename); // Open files in binary mode if(read_filename[0] !=0) read_file_pointer = fopen(read_filename, "rb"); else read_file_pointer = NULL; if(read_file_pointer == NULL) exit(1); myfile = f
  12. Ok, now that I'm working on this and not finding answers in my notes, I'm becoming confused. I'm writing encode.cpp, under his hints he has "Delete the write-file prompt, filename input, and fopen()," I'm assuming it's these lines, "if(write_filename[0] !=0) write_file_pointer = fopen(write_filename, "wb"); else write_file_pointer = NULL;" but I'm not sure if it's exactly these two lines, more or less. (Already removed the line that changes case, this is what I have written so far, not very far as you can see) // Encode.cpp by Aron 12/05/2002 // This program demonstrates the use of singl
  13. Don't really have a question yet, I'm just sure I will have one eventually. Writing out what I have to do so I can save myself that step when I actually have a question... Encode.cpp Your company is concerned about the security of data shipped through the mail or the Internet. It is your duty to devise a program that will read a file and creat two encoded files. Read the file to be encrypted and alternately place the character read into one of two files opened, one called odd.txt and the other called even.txt. Decode.cpp You are also requested to write a program that will recreate the origi
  14. Great! Didn't think that would help, because it confused me at first. Started thinking about it more, before asking and looking like a fool. Figured it out and got it to work for all my programs. Thanks for the help