• Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Common procedure

    In VB.net you can assign a handler at run time with AddHandler. I think the c# equivalent is to assign it using `New EventHandler(handler)`. Just loop through your textbox controls …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Increment / decrement (x++, ++x...) not producing expected output

    That's one of those questions they like to put on the exam to see if you know the inner workings of c/c++ even though no sane c/c++ programmer would ever …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in runtime error on voting system

    536 lines of code and not one useful comment in the lot.
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in How do you sharpen your java skills?

    >Don't use Java! That may be good advice (or not) but it doesn't in any way help the OP. That's like reading "how do I change my oil" and replying …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Input text pattern for telephone number

    Try ^(\+\d{1,2}\s)?\(?\d{3}\)?[\s.-]\d{3}[\s.-]\d{4}$
  • Member Avatar for Reverend Jim
    Reverend Jim

    Marked Solved Status for What is the difference between 127.0.0.1 and 0.0.0.0

    I have been using my HOSTS file for years to dummy out ad sites by adding entries like 127.0.0.1 www.ukbanners.com A while back I installed [Unchecky](https://unchecky.com/), a program which automatically …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Gave Reputation to rproffitt in What is the difference between 127.0.0.1 and 0.0.0.0

    While we could go on and on, consider this ping result. C:\>ping 0.0.0.0 Pinging 0.0.0.0 with 32 bytes of data: PING: transmit failed. General failure. PING: transmit failed. General failure. …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in What is the difference between 127.0.0.1 and 0.0.0.0

    I just heard back from Michael Maltsev (Unchecky author) and he said that they are now using 0.0.0.0 because of a change to the TCP loopback interface in Windows 8.1. …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Created What is the difference between 127.0.0.1 and 0.0.0.0

    I have been using my HOSTS file for years to dummy out ad sites by adding entries like 127.0.0.1 www.ukbanners.com A while back I installed [Unchecky](https://unchecky.com/), a program which automatically …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in How do you sharpen your java skills?

    The same way you get good at any skill like dancing or playing a musical instrument. You just do it. Practice makes perfect. Also, read about good programming techniques because …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in users Idea approval system

    That's not how Daniweb works. If you are having a specific problem you can post a question (with code, if appropriate) and we will try to help you find a …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Comparing Codes

    Try [WinMerge](http://winmerge.org/). It is a worthy successor (same company) to PMDiff, originally written for OS/2 (which I still miss). But not as much as my Amiga OS (totally off-topic plug)
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in C++ Program for Printing number of Space

    Judging by your post it is likely that you have not read the Daniweb [Posting Rules](https://www.daniweb.com/welcome/rules) and [Terms of Service](https://www.daniweb.com/welcome/tos). Please give these a read. You might also want to …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Edited The model item passed into the dictionary is of type 'System.String', but t

    The model item passed into the dictionary is of type 'System.String', but this dictionary requires a model item of type 'BetGuns.Web.Models.Home.VM_HotGames'. How to fix this error @foreach (var c in …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in D drive was deleted

    Are you asking how to make the drive visible again as D? Or are you asking how to recover the files from the deleted drive? If you just deleted the …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Connect 2 PC, 1 monitor & Router

    We used to use a KVM switch to use one monitor/mouse/keyboard on multiple servers. Staples has one for $35.
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Things I hate about TV shows

    At least shows like The Voice and Project Runway give exposure to people to possibly help launch a career. Big Brother might as well be called America's Top Douchebag. I'm …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Things I hate about TV shows

    Still catching up on all the shows I missed during the summer. We just finished the latest season of American Ninja. All through the season the repeatedly referenced that the …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Do while loop not returning another transaction

    What is happening is that when you read a char for "do you want to do another transaction" it is returning the next character from the last scanf. You can …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in How to filtering datagridview based on days and month only [VB.NET]

    You will have to change the `WHERE` clause to something like WHERE DATEPART(month,TanggalLahir) = 9 AND DATEPART(day,TanggalLahir) BETWEEN 1 AND 15
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Messed up by Win 10 Automatic update, summer 2017

    Now that you have upgraded, your computer is registered with Microsoft and you will no longer have to validate it. What I suggest is that you do a full backup …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Edited Is there a function in c# that returns x times of given char or string. Or

    Is there a function in c# that returns x times of given char or string. Or I must code it? Thank you Saanvi sharma
  • Member Avatar for Reverend Jim
    Reverend Jim

    Edited SEO Tactics for SME

    As a small business owner, it is difficult to understand where you are on the search engine result pages. SEO is complicated and it is constantly changing. Every company wants …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in 10 update deleted ALL my music.

    Here's another example of MS idiocy. There is no way to change the size of displayed text in Skype. The given font apparently only comes in micro which is murder …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Edited Draw n sided polygon

    I have to draw an n sided polygon using an isosceles triangle function. It should be only 3 lines inserted under def draw_pie(n, r). Can you help me figure out …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Edited Need Help with Database project

    Hello all members, I am new to this this website. I am working on an assignment and I have a scenario where I have to find the key attributes, entities …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in 10 update deleted ALL my music.

    If I might suggest something, I use a great free tool called [Everything](https://www.voidtools.com/). I find it very useful to instantly find things when I don't know exactly where they are. …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Huge # of folders renamed with Windows update

    I suspect the "hide extensions" option in Explorer has been turned back on. Go to folder options and deselect it and see if that fixes the problem. Yes, it's MS …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in 10 update deleted ALL my music.

    Care to elaborate so we can all avoid the same fate?
  • Member Avatar for Reverend Jim
    Reverend Jim

    Edited 10 update deleted ALL my music.

    ALL of it. <rude words>. Linux, here I come. .
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Giving connection string data source during run time in VB.net

    You don't have to upload a picture. Just post your code and tell us what isn't working. You've told us what you want to do but not where you are …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Giving connection string data source during run time in VB.net

    Show us what you have tried so far.
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Change Calculator

    I follow good and accepted practices and principles, just not blindly. But you are correct in that it's better to develop the habit early. One can relax it later when …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Change Calculator

    In this case I think that using constants is unnecessary. It adds nothing to the code simply because the actual values are so obvious that the constants add only to …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Trump

    A suggestion... There is a possibility that there will eventually be a presidential library bearing Trump's name. I propose that it be mandated to contain no books above a grade …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Change Calculator

    Use an `if` statement as in if (dollars > 0) { cout << "Dollars: " << dollars << endl; } In this case I think it would be acceptable to …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in US Open Tennis

    Remember, this is a country that pronounces Favre as "farve". Then again, the British gave us "FEN-shaw" for Fetherstonehough and "CAR-key" for khaki so who am I to judge?
  • Member Avatar for Reverend Jim
    Reverend Jim

    Edited VB.Net Me.Close not working and a Break Mode window appears

    newbie question. i have a class where i will get the value of username and password of my login form and pass it to admin form Public Property getUsername() As …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in US Open Tennis

    Read what I posted. His name is four simple syllables. No "silents". It was just explained how to pronounce his name, and they still got it wrong. And how many …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Don't You Just Love...

    >In the United States, high taxes are enough to fully reimburse all damages from hurricanes from the federal budget I'm waiting to see who gets reimbursed and who doesn't. You …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Edited Php attached multiple excel files in email codeigniter not working

    I want to attach two excel files (sealing_production.xls & sealing_assembly.xls)to my email using php,but I have no idea on how to do it. **Problem** When I click on my send …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Don't You Just Love...

    I read something recently about how eating vegetables raw rather than cooked could be slightly healthier. The author lamented that his findings would likely be reported on TV as ##The …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Don't You Just Love...

    >Wasn't that already a problem? Roundup-resistence isn't a novel thing It's not so much Roundup as Dicamba. And it's not a problem with resistance. The problem is when the pesticide …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Don't You Just Love...

    ... that almost all public washroom doors open "in" so that even if you fastidiously wash your hands you still have to grasp the pull-bar to open the door to …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Don't You Just Love...

    I went to his website. I'll definitely be doing some browsing there. Thanks. Another good read is An Apple a Day by Joe Schwarcz. Mostly good but I disagree with …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Using the internet without WiFi signals

    If you've done a factory reset you might try looking it up on [router default passwords](http://192-168-1-1ip.mobi/default-router-passwords-list/)
  • Member Avatar for Reverend Jim
    Reverend Jim

    Gave Reputation to ddanbe in Don't You Just Love...

    ...that with statistics you can prove almost everything.
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in my modem is not detected

    Modems can just stop working for a number of reasons ranging from a power spike to shorting out due to water, or catastrophic failure due to being crushed by a …
  • Member Avatar for Reverend Jim
    Reverend Jim

    Replied To a Post in Don't You Just Love...

    ... how every six months "a new study" comes out that claims that the stuff that was killing you is now considered healthy.
  • Member Avatar for Reverend Jim
    Reverend Jim

    Created Don't You Just Love...

    ... how the same politicians who said that New Jersey should just man up and take care of themselves after Hurricane Sandy hit, are now calling for federal aid from …

The End.