• Member Avatar for rproffitt
    rproffitt

    Replied To a Post in PhP error can use some help from you good people

    That's over 100 lines. As noted in the link I gave you, well first this is your code so you know it better than me, is to find if you …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Working with mp3 tags

    You need to revisit this. Ready? "Any code written by man can be broken by man." If you want this to be airtight, you lost the battle before it started. …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in PhP error can use some help from you good people

    You only shared a sliver of code and as such I think you have to trace what you are sending from the beginning. The prior I noted looked indepth plus …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in How to scrape a table off a website and put results in datagridview..

    I'm not there to see what's in what variable to craft your if statements. This is basic stuff but I can't write the if statement for you. But you can …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Working with mp3 tags

    While I think you've been a little short on detail, why not put the MP3 directly into your app's resources? If you need to know how, here's the google on …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in PhP error can use some help from you good people

    Yes. I used google to find priors. A pretty good prior is at http://stackoverflow.com/questions/8028957/how-to-fix-headers-already-sent-error-in-php
  • Member Avatar for rproffitt
    rproffitt

    Began Watching PhP error can use some help from you good people

    has anyone you seen this one before... it happens when my users tries to purchase a membership package. When it goes to the billing/payment page it shows this error.. Warning: …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in How to scrape a table off a website and put results in datagridview..

    You are using Visual Studio. Set line 3 to break and examine what's in the variables. Note what you want and what you don't want. Code your if statement accordingly.
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in How to scrape a table off a website and put results in datagridview..

    Sounds like you need to make it smarter. As in after line 2 have some tests to see IF you want to add that element.
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in In c++ string if else functions and || (and) thingymajigs

    @Assertnull. I like my one liner since to add names I don't have to add more tests. Just plonk the name I want in the big string and let the …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Linux books for advanced Windows user and programmer

    I think I gave you my current thought on this. There are books on Linux and sometime about 2010 I stopped buying books since I was getting what I needed …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Linux books for advanced Windows user and programmer

    Is the LSF or LFS? (Linux From Scratch.) Anyhow as each major distro has it's own install methods that the Awesome Company can use or ignore, as it stands today …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Linux books for advanced Windows user and programmer

    I'm not that new to computers. I know couple scripting languages (web, JavaScript, C#, C++). I know hardware terms. I had a taste of Mint, Ubuntu and others. I'm not …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in pseudocode

    The thing is, here's the thing. https://en.wikipedia.org/wiki/Pseudocode tells me that for each target language, the format of the psuedocode changes. HOWEVER for what you wrote, and the tag is "problem" …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching pseudocode

    heyy, i'm having problems with this . can anyone help? i really need help to change this into a pseudocode. Age < 55 Male : 0% tax if annual income …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in c#

    That's what I call a design question. That is, I don't know which design you used but to make it chat across the web you need a server that arbitrates …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching c#

    Hi guys i am busy developing a chat zone but currently it works if users are connected to the same network but how do i make it not run on …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Loudness Equalization on Win7 enabling via GPO

    Sorry not really. But a long time ago I used some neurons about something else. That registry entry may be specific to the sound card or device in each PC. …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Loudness Equalization on Win7 enabling via GPO

    hi, I am fighting around with setting a property on sound device via registry edit. I know its located at [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\MMDevices\Audio\Render\{ab701278-c48d-41cd-b68c-8466465f06e4}\FxProperties] i found that the setting is "{fc52a749-4be9-4510-896e-966ba6525980},3"=hex:0b,00,8f,f0,01,00,00,00,ff,ff,00,00 what changes …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Help with two questions

    First Question: Use the following variables: i , lo , hi , and result . Assume that lo and hi each are associated with an int and that result refers …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in connect scanner to pc from java

    Oh dear. Is that the [Scanner Java Class](http://www.tutorialspoint.com/java/util/java_util_scanner.htm) or another [scanner](http://www.fnal.gov/pub/today/archive/archive_2014/images/pct-detector-schematic.jpg)?
  • Member Avatar for rproffitt
    rproffitt

    Began Watching connect scanner to pc from java

    hi deares Is a person can help me? my problem is: I want to connect Scanner to my pc with codeing by java , so have we a class in …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in In c++ string if else functions and || (and) thingymajigs

    Line 9 is not doing what you think. The compiler would complete the OR before doing the comparison. So that's a complete miss. You should rewrite that to check each …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching In c++ string if else functions and || (and) thingymajigs

    Why wont the if look for both Peter and John? #include <iostream> #include <string> using namespace std; int main() { string Name, Mood; // obvious string cout << "Whats your …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to AndrisP in Dynamic PHP pagination for different queries with different result sets

    Two similar function for different year is irrationally. I would suggest to transform `getYear()` and put year as parameter eg `getYear($year)`. You can set many parameters eg `getYear($year, $page, $refs)` …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Inside edge of a polygon

    Per your picture it looks like you want to [scale a polygon.](https://www.google.com/search?q=resize+a+polygon+c%2B%2B)
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Inside edge of a polygon

    You tagged this with THREE languages. I have to lead with you know how to use the 3 shells (Demolition Man.) So while that's a little misleading not one of …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Inside edge of a polygon

    I'm looking for a way to get the coordinates of a polygon offset x pixels within a known polygon. This seems to be a non-trivial problem, but I thought of …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Restart learning C language

    The C Language as in what is in the K&R book isn't too hard to read and practice what's there. It's when you go beyond what's in that book at …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Restart learning C language

    I have learned C programming several years ago, but I would like to refresh my knowledge so looking for some material, which is perfect for this purpose. I have found …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in How to scrape a table off a website and put results in datagridview..

    Let's change that word scrape to parse. I see that if I do that I can research like this: https://www.google.com/search?q=parsing+html+in+vb.net Parsing is something we get taught almost from the beginning …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching How to scrape a table off a website and put results in datagridview..

    Hi im trying to Scrape a **table** of a website and list it in a **datagridview** wich has a column **Name** and a **Url Link** Please Help!!!! Heres the source.. …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Obfuscating Android app / Xamarin

    I'm going with don't do this. To get your app into the Google store, such a move may trip up the code analyzers or at worst get you banned. I'd …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Obfuscating Android app / Xamarin

    How can I freely obfuscate an Android App that I am creating with Xamarin? Proguard only works for trimming the app size, but not obfuscation. Thanks, John
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to Dan_15 in conio.h not recognize in c++

    > expecting an online compiler to support Windows-based console mode transformations is somewhat unreasonable. sorry. i overlooked that it's online ide. then i'm asking myself why is he can't just …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in I want to convert some c++ with opencv code to python , i need help please?

    Nothing stands out. I'd just compile it. Try http://pypy.org/
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in I want to convert some c++ with opencv code to python , i need help please?

    The thing is, conversion is one thing, efficient is another. And then you have this: https://www.google.com/search?q=python+cs+c%2B%2B+speed I can't guess why the move to Python, that's not revealed yet. I know …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in I want to convert some c++ with opencv code to python , i need help please?

    That's not python. I dumped it into http://pythonfiddle.com/pysomething and it looks like you have a lot of work ahead. You didn't post much detail. Just a post title and code. …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching I want to convert some c++ with opencv code to python , i need help please?

    int* poly = new int[lines.size()]; for(int i=0;i<lines.size();i++)poly[i] = - 1; int curPoly = 0; vector<vector<cv::Point2f> > corners; for (int i = 0; i < lines.size(); i++) { for (int j …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in failed to get xml attribute value ... Annoyed by error "Namespace Manager o

    Let's say you have the XML file. Why all that code when you just want to parse out the url in question? That is, I've found MSFT XML to blow …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching failed to get xml attribute value ... Annoyed by error "Namespace Manager o

    **I have the xml file below from a blogger rss feed** <rss> <channel> <item> <guid isPermaLink="false">tag:blogger.com,1999:blog-000000.post-0000000</guid> <pubDate>Wed, 25 May 2016 18:00:00 +0000</pubDate> <atom:updated>2016-05-25T19:01:58.172+01:00</atom:updated> <category domain="http://www.blogger.com/atom/ns#"></category> <category domain="http://www.blogger.com/atom/ns#"></category> <title> "sorry... google …
  • Member Avatar for rproffitt
    rproffitt

    Gave Reputation to jwenting in Safely sending credentials from client to server

    Correct. If you're not already running on an HTTPS (or FTPS or SSH) connection where the encyption is handled for you, don't even bother trying to implement anything yourself because …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Login issue

    @Dani, I'm going to ask a few I know to try joining and doing a test post here and there. Just in case. And thanks again for not telling me …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Safely sending credentials from client to server

    OK, I'll ask you directly. Are you using https or not? I think the secure http discussion ship sailed a few years back but I guess we can go over …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in Safely sending credentials from client to server

    I think I want to ask you why do all that if you are on a https connection. Yes, we know that certain governments have cracked https but for the …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching Safely sending credentials from client to server

    I am designing an application in Java and it requires networking and for that I am using a framework called Kryonet, now I've been able to learn how to send …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in loop

    I see no code so I'll offer this. VB has an event called "onchange" or similar that you can hang your code to fire (run) when a cell changes value. …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching loop

    how to loop the auto calculation in data grid view column example : 14 32 32 64 11 75 15 90 the calculation is 32 + 32 = 64 64 …
  • Member Avatar for rproffitt
    rproffitt

    Replied To a Post in MODEM DETECTION

    Here's how I work with modems and other things on serial ports. FIRST I use a terminal program and document what I do as the Human step by step. SECOND …
  • Member Avatar for rproffitt
    rproffitt

    Began Watching MODEM DETECTION

    Hi Fellas , please am building a vb application to automatically detect modems and connect it to the internet. A simple form with a combobox to list the detected modems,a …

The End.