148 Posted Topics

Member Avatar for joshl_1995

Hello Community, I was wondering if there is a way to transfer saved app data from one user account to the other? The saved data I want is from a game callled Mortar Melon and I want the data to work on the same game but on the other account. …

Member Avatar for joshl_1995
0
304
Member Avatar for zobadof

Did you notice the quotation marks are double around the script type you'll need to change those to single quotes (') or place a backslash before each double quote (\") Original $recipient = "jadon.mayhew@me.com<script type="text/javascript"> /* <![CDATA[ */ (function(){try{var s,a,i,j,r,c,l,b=document.getElementsByTagName("script");l=b[b.length-1].previousSibling;a=l.getAttribute('data-cfemail');if(a){s='';r=parseInt(a.substr(0,2),16);for(j=2;a.length-j;j+=2){c=parseInt(a.substr(j,2),16)^r;s+=String.fromCharCode(c);}s=document.createTextNode(s);l.parentNode.replaceChild(s,l);}}catch(e){}})(); /* ]]> */ </script>"; So this is what it should …

Member Avatar for zobadof
0
500
Member Avatar for ashwinshenoy

Hello ashwinshenoy, What you can do is download a program called "[Inno Setup](http://www.jrsoftware.org/isinfo.php)" then you'll just need to gather all the information you want, such as your program files. As an example in Visual Basic 2008 make it so when you build your project send it the "Release" folder located …

Member Avatar for joshl_1995
0
2K
Member Avatar for joshl_1995

Hello Community, I would like to know if there is a way to get the corresponding list index of another list like below: Dim panelTitle As New List(Of String) panelTitle.Add("First Panel") panelTitle.Add("Second Panel") panelTitle.Add("Third Panel") Dim panelName As New List(Of Panel) panelName.Add(Panel1) panelName.Add(Panel2) panelName.Add(Panel3) So when I choose "Second Panel" …

Member Avatar for joshl_1995
0
259
Member Avatar for joshl_1995

Hello Community, I was wondering if there is a way to get only the visible section of the image from picturebox1 and place it in picturebox2. So what I have is picturebox1 set to a certain size, and the image size mode is set to center. Picturebox2 is also set …

Member Avatar for joshl_1995
0
1K
Member Avatar for saibaba123

Hello saibaba123, A sitemap is something so search engines such as Google or Bing can know what pages your site has like whats their titles and url [here](http://www.xml-sitemaps.com) is a website that will construct a sitemap that you can then upload to [Google Webmaster Tools](https://www.google.com/webmasters). A sitemap is also something …

Member Avatar for pravien
0
378
Member Avatar for joshl_1995

Hello Community, I'm trying to connect to my database using PDO but for some reason it keep coming back saying "Undefined variable: db_c" db_c is the variable I've chossen for the name of my database connection. I've placed the database connection in another file, and I'm trying to connect to …

Member Avatar for cereal
0
291
Member Avatar for joshl_1995

Hello Community, I was wanting to make a bbcode system using regex but the one I'm having a problem with is the list (<ol> and <ul>) but for some reason it isn't working this is the code I'm using: <?php function convertBBCode($input) { $bbCode = array( "/\[b\](.*?)\[\/b\]/", "/\[u\](.*?)\[\/u\]/", "/\[i\](.*?)\[\/i\]/", "/\[s\](.*?)\[\/s\]/", …

Member Avatar for pritaeas
0
326
Member Avatar for joshl_1995

Hello Community, I have recently been having a big of a look into connecting to a database using PDO but I'm not too sure what I should stick with, the normal way to connect to a MySql database or should I start using PDO. What would be better to use? …

Member Avatar for joshl_1995
0
259
Member Avatar for joshl_1995

Hello Community, Why I the port I'm trying to read looking really weired. I'm using an Arduino to produce the port data (It just has two button inputting "BUTTONONE" and "BUTTONTWO" when pressed). This is the result I'm getting: BUTTONTWO BUTTONTWO BUTTONTWO BUTTONTWO BUTTONTWO BUTTONTWO BUTTONTWO BUTTONTWO BUTTONTWO BUTTONONE BUTTONONE …

Member Avatar for joshl_1995
0
187
Member Avatar for joshl_1995

Hello Community, I was just wondering what this url is "https://fbcdn-photos-d-a.akamaihd.net/hphotos-ak-ash3/hellocdn.html?v=1" for some reason on start-up my computer will open this url not all the time but occasionally. It doesn't do anything it just gives my a blank page, the HTTPS certificate is in affect so I don't thing it's …

Member Avatar for ZixCo
0
236
Member Avatar for joshl_1995

Hello Community, I was wanting to make a controller to work with my program (which is coded in VB.NET) and I want to know how this would be done. Example if I press a button on the controller it will press a button on the program, however I would also …

0
68
Member Avatar for game4tress

Could you maybe have some use with Javascript's unload function so when it is used it will send a query to the server telling it the user is unavaliable and it will log them out.

Member Avatar for jkon
0
279
Member Avatar for tqmd1

You could use something like Javascript using something like the code below: <!DOCTYPE html> <html> <head> <script type="text/javascript" src="http://code.jquery.com/jquery-1.6.1.min.js" /></script> </head> <body> <p> Name: <input type="text" id="contactName"/> <input type="button" value="Click Me" onClick="$('#contactName').val('Contacts Name');" /> </p> </body> </html> So what you can do is replace `echo "<td align='left'> " . $row["name"]. …

Member Avatar for joshl_1995
0
318
Member Avatar for joshl_1995

Hello Community, I was wondering if there is a possibility to pass a dictionary to another program? What I want to do is send some information from one program to another, I want to use an array but I can't set keys and that is what I really need and …

Member Avatar for joshl_1995
0
217
Member Avatar for joshl_1995

Hello Community, I was wondering if it is possible to use an ID ($_GET) after a file in the address bar so it would look like this http://example.com/file.php/ID_HERE Instead of http://example.com/file.php?id=ID_HERE I know there is a way of doing something like that but I'm only getting it to work on …

Member Avatar for joshl_1995
0
480
Member Avatar for Mafiamanandre

Why don't you use a serial key? you could have a database online that check to see if the serial code has been activated. If you would like to go this path I could help you more, but I just shortened it incase you just wanted the way you said.

Member Avatar for joshl_1995
0
180
Member Avatar for cmsc

Hello, Try using this: <?php $conn_id = ftp_connect("Server"); $login_result = ftp_login($conn_id, "Username", "Password"); ftp_pasv($conn_id, true); if (($conn_id) || ($login_result)) { $listArray = array(); $contentList = ftp_nlist($conn_id, "."); foreach ($contentList as $item) { array_push($listArray, array("itemname" => $item)); } print_r($listArray); } else { echo "An error has occurred!"; } ftp_close($conn_id); ?>

Member Avatar for joshl_1995
0
701
Member Avatar for Saboor880

Hello, Here is the download link to the latest version of [Visual Studio Express](http://www.microsoft.com/visualstudio/eng/downloads#d-2013-express) (Which is free) I've never programmed in anything outside of .NET how ever from what I've seen they are a little similar I learned VB.NET when I was probably 12 or 13 and over time I've …

Member Avatar for Deep Modi
0
396
Member Avatar for joshl_1995

Hello Community, I was wondering if there is a way to get a grid from another window to display in another window by the way i'm using fluidkit slide transition. Please Help...

Member Avatar for KushMishra
0
263
Member Avatar for joshl_1995

Hello Community, I've been thinking about buying a phone I've chosen these phones to choose from: http://www.jbhifi.com.au/phones/nokia/lumia-520-black-prepaid-sku-411577 http://www.jbhifi.com.au/phones/samsung/galaxy-express-4g-grey-sku-418996 http://www.dicksmith.com.au/unlocked-smart-phones/samsung-ativ-s-windows-8-unlocked-smartphone-dsau-em5132 http://www.jbhifi.com.au/phones/sony/xperia-acro-s-sku-91231 https://play.google.com/store/devices/details/Nexus_4_16GB?id=nexus_4_16gb http://www.harveynorman.com.au/optus-nokia-lumia-720-windows-8-phone-pre-paid-mobile-red.html The funny thing is currently I don't have a mobile phone so I'm not sure what is a good phone and what isn't; the thing is I don't …

Member Avatar for Ancient Dragon
0
495
Member Avatar for joshl_1995

Hello Community, I was trying to play music throught my iPod dock with my new iPod (5th gen). The sound only comes throught the iPod and not the stereo.

Member Avatar for joshl_1995
0
341
Member Avatar for joshl_1995

Hello Community, For my new service I'm making a way for users to make the're tracking links short. The URL is http://hitcounter.co but I can't think of any short versions of it because all the ones I've chosen have been taken such as http://hilnk.co, http://hlnk.co and http://hit.co. So I was …

Member Avatar for joshl_1995
0
258
Member Avatar for joshl_1995

Hello Community, I was wondering if there is an 4th Gen iPod adapter for an iPod 5th Gen. So I can use my 4th Gen iPod stereo on my 5th Gen iPod.

0
162
Member Avatar for joshl_1995

Hello Community, I was wondering if someone could give me any ideas on how to get my company out there?

Member Avatar for joshl_1995
0
207
Member Avatar for joshl_1995

Hello Community, I was wondering if there is a way to use some kind of local server such as Wamp, Xampp, easyPHP etc... something like that and set it up so everyone on the same network can access the database on the server. The server will be running on a …

Member Avatar for joshl_1995
0
476
Member Avatar for dibakarmishra

Hello, Can I first just ask why if using MySqlDump works why would you want to do it in just plain VB.NET? Ok now did you just want the data from the database? (Example below) +---------+---------+ |ColumnOne|ColumnTwo| +---------+---------+ |Row1Cell1|Row1Cell2| +---------+---------+ |Row2Cell1|Row2Cell2| +---------+---------+ or did you like want a backup script …

Member Avatar for joshl_1995
0
1K
Member Avatar for joshl_1995

Hello Community, I was wondering if there is a way to limit users on how many database entries they can insert then once they have reached 100 (Max entried) entries it will delete old entries. So if the user has reached 100 entried and they try to insert another entry …

Member Avatar for joshl_1995
0
395
Member Avatar for joshl_1995

Hello Community, I'm having trouble with data returning after my form has been submitted. So in my case I have a notification system on my website and a setting popup window with a clear all checkbox so when the user clicks it then click save, after the form submits. All …

Member Avatar for joshl_1995
0
124
Member Avatar for joshl_1995

Hello Community, I'm trying to make a way to post data to my php file located on my website, I tried it on my Windows 8 laptop; it worked fine, then tried it out on my Windows 7 laptop and for some reason it won't work. I have gone through …

0
192
Member Avatar for joshl_1995

Hello Community, I was wondering if there is a way to send an email to a database? Example: So when the user sends an email to my websites email address the email will be broken up in to parts (Subject, From, Body etc...) and added to the database. FYI: I'm …

Member Avatar for joshl_1995
0
551
Member Avatar for joshl_1995

Hello Community, I was wondering if there is a reason why my laptop is going slow i haven't installed anything, uninstalled anything. It's just started going slow! Right now i'm backing up my laptop just incase i get that pissed i might actually through it! Here are the specs: Brand …

Member Avatar for joshl_1995
0
342
Member Avatar for joshl_1995

Hello Community, I was wondering if getting an SSL certificate be worth it for my new website it the website doesn't store users personal details all it will hold is users links that would be counted but the thing is i don't know if it would be worth it or …

Member Avatar for joshl_1995
0
422
Member Avatar for yuvjeeth

You could use an if statement: (like the following) If System.IO.File.Exist(".txt location") Then 'Proceed Else 'Don't Exist End If

Member Avatar for mridul.ahuja
0
236
Member Avatar for joshl_1995

Hello Community, I have setup a [donation](http://randoma.co/randonate.php) system on my website and i was wondering what would be a good gift in return for donating i was thinking of doing like a sponsor thing so if someone donates a certain ammount i will sponsor them by putting an ad on …

Member Avatar for joshl_1995
0
283
Member Avatar for joshl_1995

Hello Community, I was wondering if there is a way to set a multiple level subdomain? eg. sub.sub.domain.com FYI: my web host is with GoDaddy.

Member Avatar for joshl_1995
0
259
Member Avatar for SureEM25

It looks like an encoding issue have you tried it with out the encoding. Thats my guess but i don't much work with encoding so i don't know what you even need the encoding for.

Member Avatar for SureEM25
0
166
Member Avatar for kipslem

The reson it's saying it's being used by another process is because it is still being accessed by your program when your done writing to or reading from the file you will need to close and flush the stream. I have never tried this but you could try placing the …

Member Avatar for joshl_1995
0
387
Member Avatar for joshl_1995

Hello Community, I am trying to redirect a page to the same page but with the .php extension added this is what i'm trying `Redirect /projects http://randoma.co/projects.php` but it won't work i just keep getting a 404 error. FYI: I'm using GoDaddy. What am i doing wrong?

Member Avatar for joshl_1995
0
106
Member Avatar for joshl_1995

Hello Community, I need help with getting javascript function arguments in php eg. function jsFunction(arg) { <?php phpFunction(arg); ?> } <button onclick="jsFunction(this.id);" id="XXXX"/> But when i press the button it doesn't send "XXXX" to the php function (<?php phpFunction(args); ?>) it sends "args" (as plain text). Please Help...

Member Avatar for joshl_1995
0
435
Member Avatar for joshl_1995

Hello Community, I was wondering if there is a way for a string ($string) to be remembered on a form submission? Example: <?php $f = ""; $tS = ""; if (isset($_POST['tSubmit1'])) { if (!empty($_POST['tString1'])) { $tS = $_POST['tString1']; $f = "f2"; } } if (isset($_POST['tSubmit2'])) { if (!empty($_POST['tString2'])) { if …

Member Avatar for Webville312
0
211
Member Avatar for on93

Why don't you try using an if statement to check if any of the picture box contains that image and if it does then it will to back and insert a new image eg. using the Example: and goto Example. Does that make sense?

Member Avatar for on93
0
324
Member Avatar for davy_yg

Could you please give a better description. I may be able to assist you further.

Member Avatar for davy_yg
0
110
Member Avatar for joshl_1995

Hello Community, I'm having trouble receiving emails from my website. This is the email address i'm sending from "no-reply@[randoma.co](http://randoma.co)" and my website is hosted by [GoDaddy](http://godaddy.com). The email address i'm trying to send it to is a hotmail email address but i have upgraded my hotmail to an outlook account. …

Member Avatar for LastMitch
0
302
Member Avatar for joshl_1995

Hello Community, I was making a commenting system for my website and i was wondering if it would be a good or bad idea if i just let anyone comment by anyone i mean non members or should i make it so only members can comment?

Member Avatar for joshl_1995
0
276
Member Avatar for joshl_1995

Hello Community, I was wondering if there is a way to make a page look like a subdirectory. This is what it would look like now http://example.com/page.php this is what i want it to look like http://example.com/sub/page.php But i don't want to put the page.php in a subdirectory i just …

Member Avatar for joshl_1995
0
193
Member Avatar for joshl_1995

Hello Community, I was just wondering why my password matching section ( } else if (!$password === $cPassword) { ) in the else if isn't working. Whats happening is it is saying the passwords do match but they don't. I have tried many ways to fix it there is one …

Member Avatar for joshl_1995
0
156
Member Avatar for pixelsoul
Member Avatar for jwenting
0
255
Member Avatar for joshl_1995

Hello Community, I have been looking for a facebook news feed api, i couldn't find one. All i could find is bits of script for construct my own news feed api. So thats what i did and i thought i might share the script with you it's a bit messy …

1
575
Member Avatar for joshl_1995

Hello people, I was wondering what are the most popular email services (eg. Hotmail, yahoo, gmail...) Please help.

Member Avatar for joshl_1995
0
180

The End.