• Member Avatar for deceptikon
    deceptikon

    Replied To a Post in deceptikon C webcast

    I was thinking about starting with how the C standard library works under the hood.
  • Member Avatar for deceptikon
    deceptikon

    Created deceptikon C webcast

    Howdy all. I've recently been considering doing an online meeting or webcast on certain subjects for which I have a lot of experience or knowledge. The idea being that something …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Interfaces, The Basics. Have I Got It Right?

    > I think you can still change Items in the list. You can. Though it's situational whether changing the type to `IEnumerable<>` is appropriate as it's not a comparable solution. …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Can you help me guys ??

    Yes, of course. But for homework questions we require some substantial proof of effort on your part.
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in C++

    You won't find it here, Daniweb is not a homework service. We'll be happy to help you with specific problems in *your* code, but we won't do your work for …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in CVs on DANIWEB

    > Its like censorship. Except not at all. Notice how none of your posts have been deleted or modified? Notice how you're still welcome to continue posting? Rest assured, I've …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Interfaces, The Basics. Have I Got It Right?

    > My main focus of this question is the use of objects within Interfaces, is this common practice, or even acceptable? Your interfaces contain properties rather than objects, which is …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in scanf() errors

    There's insufficient information. Please post the relevant code, the relevant part of the file if you're using one, and the exact error as Visual Studio reports it.
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Inheritance problem in C#

    > As far as I know covariance and contravariance exist in C# at least as of version 4.0. This is true, but not for return types from methods.
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in need help creating score calculator with array

    > We were taught about the var property but for some reason were told to try amd stay away from using it, ironically. Not really sure of the reasoning behind …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in fill DataGridView without form load event

    There's no requirement that a DataGridView be initialized in the form Load event. Obviously you need to do it *somewhere*, but where kind of depends on the design of your …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in CVs on DANIWEB

    > insead of talking, Dani should sit and rewrite it That's not how professional software development works. First the requested feature is discussed for viability: * Is this feature necessary? …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Inheritance problem in C#

    > Tried different things myself, but as I'm a still a learner and could find nothing useful on the web, I'm a bit stuck. It may help your search to …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Why does Windows XP refuse to die?

    Because Microsoft hasn't *ever* bent over backward to support ancient software/drivers, or shoddy coding practices for the sole purpose of avoiding breakage as Windows and hardware evolves. :rolleyes:
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Why does Windows XP refuse to die?

    > That's not the fault of Microsoft. But why think about it when you can just blame Microsoft for everything bad that happens in computing? ;)
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in c++

    Um...what?
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in binary file

    If the sample of the file you presented is accurate, then it's not a binary file, it's a variant of CSV. `fread` with that structure won't work since the file …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in StackOverflow stole all our search traffic!

    > Forum technology is outdated. And what's the 'modern' technology? Heavily policed Q&A that discourages meaningful discussion? 140 character brain farts that are devoid of intelligence? Useless videos flooded with …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Dequeue with a linked list

    It works okay for me in Visual Studio after fixing two bugs. First you never initialize `listA` in `main`, so the `top` and `bottom` pointers are unintialized. A quick fix …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in software for all gemes

    ...
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Opening .tiff and .tga files in vb.net PictureBox

    > i dont wanna use Third Party Image viewer control Then your two options have become one option. You'll need to use a third party library to convert the image …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in filter data grid view

    `BindingSource` is your friend: private BindingSource _bs = new BindingSource(); ... // Initialize DGV _bs.DataSource = ds.Tables("Customer"); dataGridViewCustomers.DataSource = _bs; ... // Filter DGV _bs.Filter = string.Format("customerID LIKE '%{0}%'", customerID);
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Dequeue with a linked list

    Your dequeue logic has two major problems: 1. It does not take into account updating the `bottom` node. 2. Wherever the node is deleted, the list is terminated with NULL …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Opening .tiff and .tga files in vb.net PictureBox

    You've encountered one of the most irritating things about .NET (at least for me): image processing is quite wanting. I don't work with TGA much, but I work extensively with …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in How to check if value exists in database or not, on message

    That code is definitely C#. Since the question did not ask about conversion to C, I've moved the thread to the C# forum so that the resident experts have a …
  • Member Avatar for deceptikon
    deceptikon

    Edited How to check if value exists in database or not, on message

    private void btnSearch_Click(object sender, EventArgs e) { if (searchtext.Text == "") { MessageBox.Show("Plese Inter Employee's ID you are searching for"); searchtext.Focus(); } else { OleDbConnection con = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\\Employees.mdb"); …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in MySQLi & Escape Strings

    > What does it exactly mean to "escape" a string and where does the code for this go? Escaping a string means converting characters that would be treated as special …
  • Member Avatar for deceptikon
    deceptikon

    Edited Hi, Everybody..

    Hello everybody how are you? I hope everyting well . I am Heavenisbeth small business man, business type gifts product accessory.
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in No deletion of post/articles/reviews whatever

    > You seem not to get the point Dani The point is not lost. I understand exactly what you want, and I'm sure Dani does as well. > why not …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Tab error

    > no dev window is closed. Why? It's called troubleshooting. I'm asking potentially relevant questions to pinpoint why your browser isn't exhibiting normal behavior. Last night I tested the top …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Automation of things

    > I disagree with the part abut quoting. Then we'll have to agree to disagree for now.
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Automation of things

    > Quoting; add quote button to post/article header, so it stays there at all times, This would only serve to quote an entire post, which in many cases would be …
  • Member Avatar for deceptikon
    deceptikon

    Gave Reputation to Wojciech_1 in Sending shortcut do not work

    No. I will not repeat myself - look clsely on other thread (article as its called here).
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Tab error

    [Mozilla](https://support.mozilla.org/en-US/kb/keyboard-shortcuts-perform-firefox-tasks-quickly#w_windows-tabs) disagrees with you. Ctrl+Tab navigates to the next tab, and Ctrl+Shift+Tab navigates to the previous tab. If your behavior is different, that could be something about the dev edition, …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Tab error

    What browser and version are you using?
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Tab error

    > what software this applies to? All major browsers that support tabbed pages. When we're talking about Daniweb, it's fairly safe to assume that the hosting browser is the most …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Sending shortcut do not work

    Alt+s works for me, no shift necessary. I'm also on Windows 8.1. What browser are you using?
  • Member Avatar for deceptikon
    deceptikon

    Gave Reputation to ddanbe in Fibonacii at its best

    Hi Mayukh_1, welcome at DaniWeb! :) For fibonacci, I never use any storage. static unsigned long long Fib(int n) { double sqrt5 = sqrt(5.0); double phi = (sqrt5 + 1.0) …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Automation of things

    > Why you dont want to introduuce new features suggested by me (and not only me)?? You're sending mixed signals. First you want the bugs fixed before adding new features, …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Will Windows Server become a zombie OS?

    > So are you one of the 11 million and will you still be on July 15th? In my experience working with a number of companies as customers, Server 2003 …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Values to ASCII Characters

    The problem is that a naive `atoi` like conversion won't work directly with hexadecimal characters because you need to take into account that a-f represent 10-15. That too requires a …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Nested Loop

    A continuation would help in identifying a pattern. Presumably, it might look something like this: 1 1 2 2 3 2 3 4 3 4 5 3 4 5 6 …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Tab error

    Markdown itself is just a text format, it doesn't regulate how web elements work together that I'm aware of. That said, I wouldn't be surprised if a number of Markdown-compatible …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Tab error

    That's by design. The editor isn't a mere text field, it's an actual text editor supporting Markdown where indentation is significant. If tab moved to the next page element, creating …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in OOP development problem

    Hmm. Of the top of my head, I'd say it really depends on what features you plan to support. If there's a huge amount of intersection between the two, I …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Input random numbers

    > i mean the output should be vertical direction Which means what, exactly? Show us an example, because right now each number is output on a separate line, and that …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in knight tour c# need help here

    What have you done so far?
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Doubly Linked List

    Your `else` clause is missing braces. That only works when the body of the clause has one statement, yet here you have (presumably) three.
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Need help with my C code please.

    > can you please tell me which are those `newarr` in `main` and `newarr` in `extend` are two completely independent variables. They contain the same value originally, but then you …
  • Member Avatar for deceptikon
    deceptikon

    Replied To a Post in Need help with my C code please.

    There are a few problems, and most of them stem from misunderstanding pointers. On line 12 you have this: while(i <= cnt) That's an off by one error. Arrays are …

The End.