-
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. -
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. … -
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? -
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 … -
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... … -
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 … -
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 … -
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. … -
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 -
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 … -
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 … -
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 … -
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 … -
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 … -
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? -
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? … -
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). -
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 … -
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 … -
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 … -
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/). -
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 … -
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 … -
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. -
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. -
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 … -
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 … -
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 … -
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 … -
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, … -
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 … -
Replied To a Post in Allegro Game
> there are few problems are occur so can any body help me What problems are you having? -
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 … -
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, … -
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 … -
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, … -
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). … -
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 … -
Began Watching Howe to learn
Who can tell me a way to learn C++ -
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. -
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) -
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 … -
Began Watching memory accessing
how to access the memory in harddisks? -
Replied To a Post in memory accessing
http://en.wikipedia.org/wiki/C_file_input/output -
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 … -
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 … -
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 … -
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 … -
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 … -
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.