148 Posted Topics

Member Avatar for mozy1691
Member Avatar for joshl_1995
0
75
Member Avatar for joshl_1995

Hello Community, I'm planning on buying a new computer monitor soon but I'm not sure which one I should buy. These are the two I'm trying to decide between [LG 27MP75HM](http://www.lg.com/au/it-monitors/lg-27MP75HM) or [LG 29UM65](http://www.lg.com/au/it-monitors/lg-29UM65) thing is the 27MP75HM will be good because I can fit more code on the screen …

Member Avatar for joshl_1995
0
407
Member Avatar for ankit1122
Member Avatar for ak24

Just add this to your program: Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged, TextBox2.TextChanged If String.IsNullOrEmpty(TextBox1.Text) OrElse String.IsNullOrEmpty(TextBox2.Text) Then Exit Sub If Not IsNumeric(TextBox1.Text) OrElse Not IsNumeric(TextBox2.Text) Then Exit Sub TextBox3.Text = CDbl(TextBox1.Text) + CDbl(TextBox2.Text) End Sub Because this is handling both textbox1 and textbox2

Member Avatar for Santanu Das
0
7K
Member Avatar for joshl_1995

Hello Community, I was wondering what I would use, first off I'm running something by my self so do I use us or me? (Example contact us or contact me). Do I just use us to just pretend that there is more than one person running the service?

Member Avatar for joshl_1995
0
264
Member Avatar for joshl_1995

Hello Daniweb Community, I was wondering if anyone could help or point me to a good tutorial on how to use Google Authenticator in PHP.

Member Avatar for joshl_1995
0
409
Member Avatar for joshl_1995

Hello Community, I was starting up a paid service and I was going to add a payment method using internet transfers but I just wanted to make sure if giving out bank details (BSB & Account Number) was safe? Could someone steal from me if they had those numbers?

Member Avatar for pritaeas
0
254
Member Avatar for joshl_1995

Hello Community, I'm making a new service called Gimme Support, currently my domain is [http://gimmesupport.co](http://gimmesupport.co). I need to renew it soon and I was debating on weather to change it to [http://gimme.support](http://gimme.support). Which would you say is better [http://gimmesupport.co](http://gimmesupport.co) or [http://gimme.support](http://gimme.support)? I'm still not sure which one I should go …

Member Avatar for joshl_1995
0
256
Member Avatar for joshl_1995

Hello Community, I was wondering if there is a way to filter through an email to get all the details. Such as from, to, subject, body and a few other details but you get the idea. At the moment I just have a bunch of text but I want to …

Member Avatar for joshl_1995
0
735
Member Avatar for Sikander Nasar

Hello, I have found this, it may help you with what you need: http://www.aramex.com/developers/aramex-apis

Member Avatar for joshl_1995
0
85
Member Avatar for joshl_1995

Hello Community, I've recently been wanting to make a few videos on my software and services but I don't know what to do like what I need to include and what it take to make a good advertisement. Could you help me out.

Member Avatar for joshl_1995
0
296
Member Avatar for joshl_1995

Hello Community, I was wondering if there is a way to call a [pNotify](http://sciactive.com/pnotify) notification using php. So after I submit a form I can use PHP to create the popup.

Member Avatar for DJBirdi
0
2K
Member Avatar for joshl_1995

Hello Community, I have spent almost an hour looking for a solution to combine several pictures side-by-side but can't seem to find anything. I want to be able to get a dozen pictures (.png) and place them to the right of the previous picture then combine them as one (.png) …

Member Avatar for cereal
0
2K
Member Avatar for joshl_1995

Hello Community, I was wondering if there is a way to make dynamic email address that'll look like this example example_name1@subdomain.example.com or example_name2@subdomain.example.com the subdomains have been created using .htaccess and a wildcard subdomain. So the "example_name" and "subdomain" would be created dynamically. So can this be done using .htaccess? …

Member Avatar for joshl_1995
0
685
Member Avatar for sanitak
Member Avatar for Ashok_121284
Member Avatar for joshl_1995

Hello Community, I'm trying to use dynamic subdomains which works but I'm only wanting .htaccess to to send subdomains without letters, numbers and underscores (_) to the 404 page. Here is my code. Options +FollowSymLinks -MultiViews RewriteEngine On RewriteBase / #Remove www. RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] RewriteRule ^(.*)$ http://%1%{REQUEST_URI} [QSA,NC,L] …

1
165
Member Avatar for hometownnerd

Hello, You could try disabling the popup blocker on the WebBrowser, opening the link then re-enabling the popup blocker. At the moment that is all I could think of as I just go out of bed. Unless you can give me a little more information on the error/ issue you …

Member Avatar for hometownnerd
0
2K
Member Avatar for joshl_1995

Hello Community, I'm about to start making a website for someone. So what I'd like to know is does the website creator credit themself, like have my name in the footer of the page. What is the right way to go about doing this?

Member Avatar for joshl_1995
0
234
Member Avatar for joshl_1995
Member Avatar for joshl_1995
0
177
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
299
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
495
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
257
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
377
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
287
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
323
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
258
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
185

The End.