• Member Avatar for gusano79
    gusano79

    Replied To a Post in How can I print name of files with the same month of creation?

    Please post the entire program, not fragments. If it seems too long for pasting into a code block, make it an attachment.
  • Member Avatar for gusano79
    gusano79

    Began Watching How can I print name of files with the same month of creation?

    Hi everyone! I am making a program in C where the user will input a month then the program prints out all the names of files created in that month. …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in How can I print name of files with the same month of creation?

    > Can you help me figure out what's wrong with it? What problem are you having? Does it not compile? ...not run? ...run but not produce the result you expect?
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in To convert dd/mm/yyyy to yyyy-mm-dd

    From the MSDN page I linked: > In formatting operations, custom date and time format strings can be used either with the ToString method of a date and time instance …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in write structer and linked list

    We're trying to help without doing the work for you. Those structs weren't in your original post; how am I supposed to know what you've done? On to the code... …
  • Member Avatar for gusano79
    gusano79

    Began Watching write structer and linked list

    Data structures to be used The program should use two distinct structure-types to store the students’ scores: the 1st type used for keeping scores of 4 quizzes while the 2nd …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in write structer and linked list

    > The program should use two distinct structure-types to store the students’ scores: the 1st type used for keeping scores of 4 quizzes while the 2nd type is used to …
  • Member Avatar for gusano79
    gusano79

    Began Watching Difference between Data Hiding, Abstraction & Encapsulation?

    Please tell me the difference between these three. I know the basic meaning but don't know exact meaning of all of them. Please explain a very good example if possible. …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in Difference between Data Hiding, Abstraction & Encapsulation?

    Google is your friend. http://en.wikipedia.org/wiki/Information_hiding http://en.wikipedia.org/wiki/Abstraction_%28computer_science%29 http://en.wikipedia.org/wiki/Encapsulation_%28object-oriented_programming%291
  • Member Avatar for gusano79
    gusano79

    Began Watching The Root Namespace for a new VB.net application

    I'm making some "cleanup" changes to my 1st VB.net project that I'm publishing. The project has an "Assembly Name". But I've just realized that the Root Namespace has the default …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in The Root Namespace for a new VB.net application

    > Is this going to change anything to my project (where it will now be found, it's "file name", etc.)? No changes to the project file name or location. Your …
  • Member Avatar for gusano79
    gusano79

    Began Watching How can I create a custom setup Project for my C# application?

    hi, I am creating a C# application and I am wondering how can I create a custom setup project. not the conventional one provided by visual studio. I would like …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in How can I create a custom setup Project for my C# application?

    It looks like [Visual Studio has some flexibility, both in UI and custom actions](http://msdn.microsoft.com/en-us/library/vstudio/k2he6h0w(v=vs.100).aspx). I haven't used these myself, so I can't help with specifics, but that should get you …
  • Member Avatar for gusano79
    gusano79

    Began Watching Integer to word.

    Hello all, I am trying to self learn the x86 assembly language and I came across a problem that I can't seem to fix. I want to recieve an integer …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in Integer to word.

    What have you written so far? Is there a specific part of the task you're having trouble with?
  • Member Avatar for gusano79
    gusano79

    Began Watching To convert dd/mm/yyyy to yyyy-mm-dd

    Hello, what can i do to convert a date that is dd/mm/yyyy to yyyy-mm-dd? public static Paginacao<Solicitacao> PaginarParaLote(int paginaAtual = 0, int itensPorPagina = 20, int? TipoId = null, long? …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in To convert dd/mm/yyyy to yyyy-mm-dd

    You already have a `DateTime` object; have a look at [custom date and time format strings](http://msdn.microsoft.com/en-us/library/8kb3ddd4%28v=vs.110%29.aspx).
  • Member Avatar for gusano79
    gusano79

    Began Watching C++ Problem

    How to solve this problem? I'm getting tired thinking abou this. Help me. Write a C++ program to help the master reporter of a traffic centre to analyse the amount …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in C++ Problem

    ...but we can help point you in the right direction. Have you written any code yet? If you have, please post it and try to identify a specific problem you're …
  • Member Avatar for gusano79
    gusano79

    Began Watching C beginner book for Python programmers

    What's a good book to learn C if you already know Python and are comfortable with computer science terminology? I'd like a book that is downloadable as a .pdf free …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in C beginner book for Python programmers

    I've always liked [The C Book](http://publications.gbdirect.co.uk/c_book/).
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in CodeDOM vs Notepad

    I'd say it's worth it just for the reduced risk of making unintentional mistakes while generating code. But if you're working in .NET, the [Entity Framework](http://msdn.microsoft.com/en-us/library/ms178359.aspx#dbfmfcf) already does most of …
  • Member Avatar for gusano79
    gusano79

    Began Watching CodeDOM vs Notepad

    Hi boys and Girls, Quick question I cannot seem to find the answer to: Why use CodeDOM to generate a class over say saving the structure of your code as …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in CodeDOM vs Notepad

    * Prevent syntax errors * Target multiple .NET languages Is this an assigment? Detailed explanation left as an exercise for the reader.
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in Why editing hexadecimal "code" affect programs and certification so much?

    > which didn't look like part of program at all So the lesson here is software is often more complicated than it seems, especially compiled and optimized software.
  • Member Avatar for gusano79
    gusano79

    Began Watching VB.Net DLL External variables

    I am writing a button DLL, nothing too fancy just a way of adding extra properties to the button object in an attempt to keep track of extra info and …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in VB.Net DLL External variables

    Having a control in a separate assembly reach into your main program directly to change values is not good design. A better approach is to have your custom button class …
  • Member Avatar for gusano79
    gusano79

    Began Watching Why editing hexadecimal "code" affect programs and certification so much?

    Recently I opened game with "hex editor". You know, it's kind of program for newbies that makes it able to read program in hexadecimal code and make it able to …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in Why editing hexadecimal "code" affect programs and certification so much?

    > it could break certification because the checksum may be involved in the process when issue the certification This is one of the major reasons to have a certificate; to …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in Special seperating character + Is this function vulnerable to 0-byte expl.?

    > So, there's no way to do anything about user messing up the code using "false" delimiter? I thought someone invented solution for this If you're talking about delimiter collision, …
  • Member Avatar for gusano79
    gusano79

    Began Watching Allegro Game

    I m student of BSCS and i m learning Allegro library for c++ my self and i want to create a 2D-game but there are few problems are occur so …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in Allegro Game

    > there are few problems are occur so can any body help me What problems are you having?
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in Special seperating character + Is this function vulnerable to 0-byte expl.?

    > So, I assumed that \xFFFD is a character that can't be written by anything but system No, it's just one that's highly unlikely to appear in anyone's data. As …
  • Member Avatar for gusano79
    gusano79

    Began Watching Need an idea as to how to get the row if a specific position is given

    Row 1[ item1, item2, item 3, item 4, item 5, item 6, item 7, item 8] Row 2[ item1, item2, item 3, item 4, item 5, item 6, item 7, …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in Need an idea as to how to get the row if a specific position is given

    Loop through the row collection. With each row, look for the value you're trying to find. If you find it, use your iterator (maybe a `for` loop variable) to identify …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in Special seperating character + Is this function vulnerable to 0-byte expl.?

    > does StreamReader or any other IO in C# (in Visual Studio) treat \xFFFD as ONE character, or actually 6? Only one *character*, but many possible *encodings*. When in .NET-land, …
  • Member Avatar for gusano79
    gusano79

    Began Watching Special seperating character + Is this function vulnerable to 0-byte expl.?

    **1.** Is there a character, that can be written/read by system (C#/.NET), but can't be written by any standard keyboard (European, Nordic, Slavic, Cyrlic, Arabic, Mongolian, African, Greek and Mandarin). …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in Special seperating character + Is this function vulnerable to 0-byte expl.?

    > Is there a character, that can be written/read by system (C#/.NET), but can't be written by any standard keyboard Strings in .NET are Unicode, so you have plenty of …
  • Member Avatar for gusano79
    gusano79

    Began Watching Howe to learn

    Who can tell me a way to learn C++
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in Howe to learn

    [Thinking in C++ 2nd Edition](http://mindview.net/Books/TICPP/ThinkingInCPP2e.html) ...one of the most useful C++ books I've ever encountered.
  • Member Avatar for gusano79
    gusano79

    Began Watching read from file

    I want to read from three files, each containing let say name and grade for a student (only using tASM or Emulator)
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in read from file

    If you're writing for a DOS-like environment, you'll have to use a few of the [interrupt 21h](http://spike.scu.edu.au/~barry/interrupts.html) functions. Start there, and if you have trouble, post code and we'll help …
  • Member Avatar for gusano79
    gusano79

    Began Watching memory accessing

    how to access the memory in harddisks?
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in memory accessing

    http://en.wikipedia.org/wiki/C_file_input/output
  • Member Avatar for gusano79
    gusano79

    Began Watching explain this line what does it mean ?

    I find a code that sorting the names and at this program shouldnt be difference Between "a" and "A" and my Question is what does line 20 said ..!? #include …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in explain this line what does it mean ?

    > `if ((s1[i]|32) < (s2[i]|32)) //Set the 6th bit in both, then compare` It's a case insensitive comparison. Have a look at [this ASCII table](http://web.cs.mun.ca/~michael/c/ascii-table.html). The difference between `'A'` and …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in help finding pseudocode of two stacks that sum two binary numbers and print

    > cant you just convert it to a decimal number (e.g. int), add them up, and then convert back to binary? This looks like an assignment intended to illustrate a …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in calculating mean from csv file

    > the csv file contents the weights of 200 oranges so is it really right to count rows? Well, it's not *wrong*... but it's also true that this example is …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in calculating mean from csv file

    > Seems like im supposed to initialize a counter and count how many delimiters that are used in the csv file. There's one orange per row, right? We want to …
  • Member Avatar for gusano79
    gusano79

    Began Watching Postfix Notation

    first class GUI - basically trying to use my stack calculation class to use in my first class GUI in my enter postfix expression actionPerformed area? What is the best …

The End.