- Strength to Increase Rep
- +7
- Strength to Decrease Rep
- -1
- Upvotes Received
- 4
- Posts with Upvotes
- 4
- Upvoting Members
- 4
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
How do you test an Android app on different devices and screen sizes (not emulator)? So far I'm just assuming that the XML preview I get in design mode means the app would function, obviously this isn't enough. I don't want to ask friends/family, at least not yet. So I'm … | |
Re: I don't know any function that can do that but you can write your own like this!! [code=cplusplus] #include<iostream> #include<string> #include<iomanip> #include<algorithm> using namespace std; string urwelcome(string input) { begining: for(unsigned int i = 0; i <= input.length(); i++) { if(input[i] == ' ') { input.erase(i, 1); goto begining; } … | |
Re: Why do you need to use this many functions do write such a simple program?? Take a look at what I did, [code=c++] #include<iostream> #include<string> using namespace std; int main() { int hours, minutes; string ampm; // stores AM or PM depending on the value of 'hours' cout << "Enter … | |
Hi guys, I'm working on a side project for a friend and I'm looking for a C++ library that allows me to put bunch of paragraphs in a PDF format. Anyone know any good libraries that can do this as simply as possible? It will be just paragraphs and paragraphs … | |
Hi guys, I'm trying to make an app for iOS, Android and BlackBerry 10 that allows users to add frames to pictures. This is suppose to be a learning experience kind of thing for me! Anyway, I'm wondering what the best image editing libraries are for each platform.. Basically, I'm … | |
Re: Your post isn't very clear, are you trying to change the visiting user's IP after the person visits 10 pre-defined links?? | |
Re: Use the textcolor function (it's not standard compliant) from conio.h library: [code=cplusplus] #include <conio.h> int main() { textcolor(RED); cputs("Red text in console!"); return 0; } [/code] [url]http://www.ousob.com/ng/borcpp/ng6c57c.php[/url] try using google next time!! | |
Re: https://www.google.ca/#hl=en&safe=off&output=search&sclient=psy-ab&q=creating+thumbnail+php&oq=creating+thumb&gs_l=hp.3.1.0l4.706.2437.0.3977.14.12.0.2.2.0.341.1809.1j9j1j1.12.0...0.0...1c.RRpkDD0arPw&pbx=1&bav=on.2,or.r_gc.r_pw.r_cp.r_qf.&fp=ee7e1412ea6db892&biw=1920&bih=1062 | |
I was just wondering what the standard web design projects cost. Level of difficulty: Low Languages: HTML + PHP the most complex requirement is the payment processing capability. | |
Re: Are you setting something to `position: fixed;`? | |
Re: https://www.google.ca/search?q=Left+to+Right+Image+slider Next time please try Google first. | |
Re: > P.S. There are a lot of variables.. Like: > > > int one; > int two; > int three; > int launch; > int one_1 = 1776; > int two_1 = 1999; > int three_1 = 2012; > int launch_1 = 138974; > Couldn't these be in some kind … | |
Re: Okay so first off you need a table - use the `<table></table>` tags to create one... CODE: <tablet> </table> Now you want 13 rows - use the `<tr></tr>` tags! (I'm only going to make a table with 3 rows, you do the rest) CODE: <table> <tr> </tr> <tr> </tr> <tr> … | |
Re: Take a look at following piece of code and adjust yours accordingly: <script type="text/javascript"> if (screen.availWidth<=800) //if screen width is 800px or less //do soemthing here else //do something else here if (screen.availHeight<=800) //if screen width is 800px or less //do soemthing here else //do something else here </script> | |
Re: Not sure what kind of customizations you want on Facebook but I've seen ways of injecting your own code in some existing websites' code and re-load the page with your custom code... so it sounds like it's possible - do some research! | |
Re: <form method="post" id="some_id" action="process.php" onSubmit="alert('Thank you!');" > EDIT: Sorry I realized you wanted something on the reload and not before leaving.. What you can do is in the PHP script, add small code to change the content of a file to 1 from 0 after you do the saving of … | |
Re: Look up ASCII values and then `if (ASCII_value_of(some var) == 30) then set the element of an integer array to <soemthing>` Also, https://www.google.ca/search?q=convert+these+char+arrays+into+integer+arrays | |
Re: <?php $serverdir = "http://localhost:8080/core/data/"; include($serverdir."file_name.txt"); ?> Is that helpful? | |
Re: It's not recognizing it as "time" so what's happening is it's taking the 14.45 (which YOU understand to be 14h45m) and adds 0.15 (which YOU understand to be 15m) to give a 14.6. This makes sense if it's a base 60 number system... Anyways, this will be helpful to you: … | |
Re: Every programmer should know the difference between Google and Forums... -__- | |
Re: <?php $search = $_GET['input']; echo "<a href=\"http://www.google.com/search?q=$search\" target=\"blank\">Results</a>"; ?> and then when you call the page, go like this: `www.blahblah.com/index.php?input=php script to search all of the interwebs` | |
Re: <?php $input = "<p>This is an example of random input you might encounter! :)</p>"; $output = strip_tags($input); $output = str_replace (":)", "<img src=\"https://www.google.ca/intl/en_ALL/images/logos/images_logo_lg.gif\" alt=\"\"/>", $output); echo $output; ?> Remember that you need the slashes infront of the quotes so that PHP ignores the quotes (because they're not really the end … | |
Re: Find a problem at your university/college/teaching school and address it by making a website and make it look pretty since you want it all girly (no sexism intended towards fellow men who like to make their websites good looking) | |
Re: First link from Google when typing out your entire question as is: http://stackoverflow.com/questions/5349716/how-to-make-youtube-embed-code-video-auto-start | |
Re: To create what you want, you should create a PHP script that adds one to the number existing in a text file somewhere. 1. In the HTML file, you simply echo the contents of the file where needed. <small>This page has been visited <?php $count = file_get_contents("INSERT_PATH_TO_THE_TEXT_FILE"); echo $count; ?> … | |
Re: Find the nearest FRC/FTC team and ask them, they'll be very happy to show and teach you. www.usfirst.org | |
I have a form that takes in information from the user and saves the info and then displays it in the form field.. . . Form: <form method="post" action="/core/process2.php" name="step2_form" target="_blank"> <div class="float_left"> <table class="form_step2"> <tr class="form_step2"> <td class="form_step2 title"><p class="form_text">File Date</p></td> <td class="form_step2 input"><input type="text" class="box_form" name="file_date" value="<?php include($datadir."file_date.txt"); … | |
Re: > s India the 1st 2 columns of next page should contain the names n id of all the Indians from the database). The 3rd n 4th columns should be textboxes where user can enter data n that has to be stored in the database. plz help me with this.. … | |
Re: > Hi, As I know the barcode scanner is just like a keyboard. I want the barcode scanner scan the user ID before it enter to the system. May I know how to hide the textbox field but still able to handle the input from barcode scanner? Use IDs: `<input … |