• Member Avatar for gusano79
    gusano79

    Began Watching Circular buffer please help me

    Hi all, I have implemented a sort of circular buffer in C for embedded system the code is something like this #define BUFFER_LENGTH 25 UINT8_T array[BUFFER_LENGTH]; UINT8_T increment_interrupt; void interrupt(void) …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in Circular buffer please help me

    > But for some test cases it is failing What are the failing test cases? That's important information. A few things I noticed on a quick inspection: `BUFFER_LENGTH` is defined …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in find solution

    Yep, use brackets; they are your friends.
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in System.Data.SqLite Browser

    Hm. Do you need a GUI? [The 'sqlite3' tool that ships with SQLite](http://www.sqlite.org/cli.html) should work well if you don't mind a text interface.
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in System.Data.SqLite Browser

    Well, crap; sorry. It says "Encrypted database support" right on the page I linked...
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in Recent HTTPS Strike Out

    Hm, no... I get the green padlock; identity verified by COMODO. It also reports that the certificate's encryption is obsolete (TLS 1.0), but that didn't register as bad enough for …
  • Member Avatar for gusano79
    gusano79

    Began Watching System.Data.SqLite Browser

    I've been using [DB Browser for SQLite](http://sourceforge.net/projects/sqlitebrowser/) to peer inside database for debugging. It's been very good and simple to use. However it does not support a DB which has …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in System.Data.SqLite Browser

    [SQLite2009 Pro Enterprise Manager](http://sqlite2009pro.azurewebsites.net/) says it supports encrypted databases; I don't have any personal experience with it.
  • Member Avatar for gusano79
    gusano79

    Began Watching Recent HTTPS Strike Out

    Hello Daniweb Community, Would there be a reason why [Google Chrome](https://www.google.com/chrome) is striking out a bunch of HTTPS websites? Even ones that used to be green but are now red …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in Recent HTTPS Strike Out

    Perhaps, by coincidence, all of their certificates have expired. Does Chrome tell you why it's red-ified "https"?
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in find solution

    > any way to call each function in main so as the program run succefuly as well `main` calls `Solution`, which calls both `isEmptyLocation` and `CheckRow`, so those are getting …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in find solution

    > if there is any way to call this functions in main so as the program runs succesfully plz tell me What do you mean by "runs successfully" here? Does …
  • Member Avatar for gusano79
    gusano79

    Began Watching find solution

    plz some one explain in details this code : we have array of 9 cells and 0 present empty locations we want solution of this array (no number will be …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in find solution

    > one more thing plz is it illegal that function return true or false (what i knew is no thing can be performed after return statement ) You can return …
  • Member Avatar for gusano79
    gusano79

    Began Watching Need name and logo for my program

    Im writing a program that keeps track of a bussiness/banks loans and also shows results of the payments recieved and payments not recieved. basicly it's just a program for loans. …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in Need name and logo for my program

    "The Loan Ranger" (domino mask) "Loan Wolf" ('three wolf moon' with a coin instead of the moon) "I Think We're A Loan Now" (Tiffany) "The Loan Wars" (a $ith lord)
  • Member Avatar for gusano79
    gusano79

    Began Watching Initializing a struct?

    Hello, A simple program I am writing uses a struct to store a key and key size variable. However I get an error that states that my struct variable is …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in Initializing a struct?

    "My struct variable" means `key`, right? The compiler message (I get a warning, not an error) is showing up because you declare it and then pass it as a parameter …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in how to insert two or more text into d same field in a database using vb 10

    1. Create a command like the one you wrote already. 2. Add *one* "Years" parameter. 3. Add *one* "Actual_data" parameter (the one that goes with the "Years" parameter). 3. Execute …
  • Member Avatar for gusano79
    gusano79

    Began Watching Retrieving files by name

    I have a folder that contains x amount of files with different extensions, I need a way to retrieve all the files with the name 0000001 regardless of their extension, …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in Retrieving files by name

    Keep track of which number you're looking for in an integer variable, not a string, and use [custom numeric formatting](https://msdn.microsoft.com/en-us/library/0c899ak8%28v=vs.110%29.aspx#Specifier0) to turn that into a file serach spec with the …
  • Member Avatar for gusano79
    gusano79

    Began Watching Xpath issue weird response data

    Have a heck of a time writing XPATH to parse this XML response. Source data is (removed a bunch to save the innocent: `<?xml version="1.0" encoding="UTF-8"?><env> <ProcessResponse> <message> <payLoad> <BillingXMLMessage> …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in Xpath issue weird response data

    Add `/text()` to your query.
  • Member Avatar for gusano79
    gusano79

    Began Watching Very small Algorithm exrcice about Files hlp :)

    Hello Everybody, I was wondering if anyone would be generous to spend some few minutes to work on a silly algorithm about files and structures ; a file named G …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in Very small Algorithm exrcice about Files hlp :)

    We won't do your work for you... have you tried doing this yourself yet? Post some code with a specific question or problem, and we'll help you with that.
  • Member Avatar for gusano79
    gusano79

    Began Watching how to insert two or more text into d same field in a database using vb 10

    ** # i try to insert 10 record under the field year and actual data but only the first text from text1 is entering inside # ** provider = "Provider=Microsoft.ACE.OLEDB.12.0;Data …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in how to insert two or more text into d same field in a database using vb 10

    > i try to insert 10 record under the field year Adding ten parameters to one query (as you coded it) isn't the way to do this. You'll want to …
  • Member Avatar for gusano79
    gusano79

    Began Watching flow control instructions

    if Al < 0 then put ffh in Ah else put 0 in Ah End_iF
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in flow control instructions

    Is there a question here?
  • Member Avatar for gusano79
    gusano79

    Began Watching programe using switch case

    Write a program to find grace marks for a student using switch. The user should enter the class obtained by student and the number of subjects he has failed in …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in programe using switch case

    Try to do this yourself, and post code with specific questions if you have a problem.
  • Member Avatar for gusano79
    gusano79

    Began Watching quistion about function

    how do i write function that accepts unlimited arguments? i know in java we write it in this way `funcName(int ...)` ..so what's the way to write it in C++
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in quistion about function

    [This article](http://nerdparadise.com/forum/openmic/5712/) might be a good place to start.
  • Member Avatar for gusano79
    gusano79

    Gave Reputation to deceptikon in Double Compoarison for range is not working

    Well, one thing that stands out immediately is C isn't so pretty that it allows commas in a large number. In fact, if you're exceptionally unlucky (which it seems you …
  • Member Avatar for gusano79
    gusano79

    Began Watching Double Compoarison for range is not working

    Hello, I am trying to compare a double to be within various ranges, but the comparison is not working correctly. Rounding precision is not a concern, because if the value …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in Double Compoarison for range is not working

    Side note - please indent code so it reads better, *e.g.*: if (fundt[kq-1][ky-1][2-1] < 450,000,000.00) ktti[ky-1][0] = 1; First thing I notice is you're indexing the array every single time …
  • Member Avatar for gusano79
    gusano79

    Began Watching Mystery program not working properly

    I am trying to implement a test program to describe what this function does: int mystery( const char *s1, const char *s2 ) { for( ; *s1 != '\0' && …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in Mystery program not working properly

    What happens when you enter the same string twice?
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in Gauss or Gauss Jordan elimination

    Alright, have you tried writing any code yet? If so, please post it. Starting at the beginning: How are you representing matrices?
  • Member Avatar for gusano79
    gusano79

    Began Watching Gauss or Gauss Jordan elimination

    Hello guy, is here someone who can help me with programme about Gauss or Gauss Jordan elimination? I need it for calculating of system with linear equations. Thank you
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in Gauss or Gauss Jordan elimination

    What kind of help do you need? Problems with [the algorithm](http://en.wikipedia.org/wiki/Gaussian_elimination)? Locating/using [a library](http://www.netlib.org/blas/)?
  • Member Avatar for gusano79
    gusano79

    Began Watching problem can't solved :S "help"

    Write a c++ program to compute Number of visits for salesman per month, where he takes 60 minutes in each visit and 15 minutes to move from visit to other. …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in problem can't solved :S "help"

    Have you tried to do this yet? Show us what you've written so far, and we can help with specific problems you're having.
  • Member Avatar for gusano79
    gusano79

    Began Watching Coordinates of mouse pointer in relation to form?

    Hey there, whoever whose reading this, I'd like to know how to obtain the coordiantes when a user clicks the form **in relation to the form**, meaning if the top …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in Coordinates of mouse pointer in relation to form?

    See the [PointToClient](https://msdn.microsoft.com/en-us/library/system.windows.forms.control.pointtoclient(v=vs.110).aspx) method. In this case, `Main_Window` is the control.
  • Member Avatar for gusano79
    gusano79

    Gave Reputation to deceptikon in Write a code in C# to implement an enumeration of 12 months named YEAR. Als

    > I humbly apologize and throw myself upon the mercy of the court... I find you guilty and sentence you to ten lashes with a wet noodle. After that, you …
  • Member Avatar for gusano79
    gusano79

    Began Watching Problema con programa c++

    1. Total Purchase A customer in a store is purchasing five items. The prices of the five items are: Price of item 1 = $ 12.95 Price of item 2 …
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in Problema con programa c++

    Have you tried to do these yet? Is there something specific you're having trouble with?
  • Member Avatar for gusano79
    gusano79

    Replied To a Post in Write a code in C# to implement an enumeration of 12 months named YEAR. Als

    > gusano79 I think you just gave away the answer. :) The statement in the original post includes: "Also identify that the given expressions will result in True or False." …
  • Member Avatar for gusano79
    gusano79

    Began Watching Write a code in C# to implement an enumeration of 12 months named YEAR. Als

    . Write a code in C# to implement an enumeration of 12 months named YEAR. Also identify that the given expressions will result in True or False. YEAR.May.ToString()="June" YEAR.August.ToString()="August"

The End.