Posts
 
Reputation
Joined
Last Seen
Ranked #876
Strength to Increase Rep
+6
Strength to Decrease Rep
-1
76% Quality Score
Upvotes Received
18
Posts with Upvotes
17
Upvoting Members
16
Downvotes Received
6
Posts with Downvotes
5
Downvoting Members
5
10 Commented Posts
~111.75K People Reached
About Me

Aspiring and Passionate Computer Science Student

Interests
Computer Programming, Web Development, Web Design
Favorite Tags

107 Posted Topics

Member Avatar for HungMob

[QUOTE=HungMob;1662838]Well I'm glad that you are more mature than me. Maybe you will get farther in life than I ever will. Congrats. Yes I do know that there many more things to do with programming than make "fake-viruses." That's reason I'm majoring in it. -.- Yes you can still click …

Member Avatar for cirol
0
6K
Member Avatar for Unhnd_Exception
Member Avatar for Jorge Braga
4
9K
Member Avatar for NetJunkie

So, the title may seem confusing so hopefully I am able to explain myself better via the thread body. I am developing an application for a friend that wants to have a blue light reducing effect for his every day browsing. I have been able to accomplish the task by …

Member Avatar for Bryant_1
0
798
Member Avatar for Trevor_4

I would recommend checking out [this](https://www.w3schools.com/howto/howto_css_signup_form.asp) documentation and see if that helps you in any way!

Member Avatar for NetJunkie
0
315
Member Avatar for fhau013

You need to open VB and then click Help on the main Nav Bar located on the top of the window. Go down to Register Product and then click on that. It will take you to a webpage to sign into a WindowsLiveID account. If you don't have one, create …

Member Avatar for ankit sriva
0
1K
Member Avatar for san_gwapo19
Member Avatar for JamesCherrill
-1
4K
Member Avatar for papuccino1

I would add the image to your project resources and call it like so: pictureBox1.Image = Properties.Resources.image;

Member Avatar for NetJunkie
0
2K
Member Avatar for newbi11

All you need to do is create a <img> tag or a <div> tag and declare the path for the image. Then use float as your CSS rule to position it in your footer.

Member Avatar for alisajjad160
0
5K
Member Avatar for ddanbe

I wrote a C# console application that takes the switch statement and implements that into the main method of the .cs file. I added comments in my code so you can see what I am doing step-by-step. I also explain the switch statement in the comments to help you better …

Member Avatar for ddanbe
0
3K
Member Avatar for NetJunkie

The title may not be as clear so let me elaborate a little bit. I am creating an application that minifies CSS and JS files for web developers. All of the code is working perfectly except for one little pesky bug I can not figure out! Here is my code …

Member Avatar for NetJunkie
0
345
Member Avatar for mgn2683

You could simply use the CSS3 code below: div { box-shadow: 1px 1px 1px black; } Of course you can change the pixels as well as the color. Hope this helps!

Member Avatar for mattster
0
293
Member Avatar for Nebil

I agree with Jim. Incrementing the progress bar value is much easier since you are performing the calculations to determine the progress of your task. To do this, try incrementing like so: ProgressBar1.Value(+1) Of course you would not use +1 but change it to cater to your needs.

Member Avatar for Nebil
0
364
Member Avatar for Violet_82

I would recommend using percentages rather than pixels when dealing with responsive website creation. This allows you to not have so much work while creating your media queries. Also, iFrames are no longer really supported or used since HTML5 so I would replace the iFrames using tables.

Member Avatar for almostbob
0
1K
Member Avatar for MrDavo

Try this code and see if this has the result you are looking for: <div class="float-left"> <table style="background-color: #f00; border-collapse: collapse; table-layout: fixed; width: 570px;"> <tr> <td> <img alt="System Control Logo" src="~/Images/sce-bpp-logo.jpg" height="105" width="249" style="float:left; display:inline;"> </td> <td> <img alt="System Control Logo" src="~/Images/sce-bpp-online.jpg" height="105" width="321" style="float:right; display: inline;"> </td> </tr> …

Member Avatar for NetJunkie
0
283
Member Avatar for Carly_1

What do you mean by recording actions? Please elaborate a little more so I can assist you with this issue.

Member Avatar for NetJunkie
0
65
Member Avatar for debasisdas

"Dreams are like stars, you may never touch them but if you follow them they will lead you to your destiny."

Member Avatar for James_28
8
17K
Member Avatar for Sonic42

You could try loading the image from the application's start-up path like this: [code] PictureBox1.Load(Application.StartupPath + "\img.jpg") [/code] This would be my approach.

Member Avatar for Deep Modi
0
11K
Member Avatar for EasyO

I would recommend using the internet as your main resource. Personally, I find the books to be very mundane and you will not learn valuable coding techniques or be introduced to real world issues that may occur. It would be best to just do some research on [W3C](http://www.w3schools.com/) and check …

Member Avatar for pritaeas
0
205
Member Avatar for ghosh22
Member Avatar for GeekPlease

It is best just to use HTML5 and CSS3. Yes, PSD to HTML would be must easier design wise but you will not have as much customization after you create the PSD without editing the images.

Member Avatar for diafol
0
265
Member Avatar for NetJunkie

So, I am having some trouble getting my alertView to actually perform an action on a certain button click. Here is the code I have so far and I hope someone can help me debug this issue and get this working! Thanks in advanced! ViewController.h // // ViewController.h // IMWT360 …

0
124
Member Avatar for sillyboy
Member Avatar for NetJunkie

When did you start programming and what language did you start in? Here, I'll start: I started when I was around 15 but kinda stopped for awhile because it seemed too difficult. So around 17, I really got back into it and started learning more and more as I progressed. …

Member Avatar for Reverend Jim
0
968
Member Avatar for AskAtum

Well the cheaper it is, it is more than likely not the most reliable. When I choose my host, I keep in mind how much traffic is projected for the launch of your site along with how much data you will be storing on your server. If you are going …

Member Avatar for londonboilerman
0
137
Member Avatar for mitchfizz05

I concure with the user above. Facebook's Developer page has a lot or good resources and explains their APIs in detail so if they have what you are looking for, they will have a detailed tutorial for you so you can get everything set up!

Member Avatar for mitchfizz05
0
170
Member Avatar for Saviour4You

Well the project description gives you an idea on what to research. I would recommend looking up each of key concepts listed in this assignment. I to an a Computer Science student and I have just started Java so I will do some research and let you know what I …

Member Avatar for NetJunkie
0
290
Member Avatar for Violet_82

You could create a <p> tag to create your text and just put that inside of your <div> and mess around with the style properties, like so: <div id="test" align="center"> <p style="align:center">Your Text Here</p> </div> You can also skip using the style method: <div id="test" align="center"> <p align="center">Your Text Here</p> …

Member Avatar for NetJunkie
0
133
Member Avatar for NetJunkie

Hello DaniWeb, it has been a while since I have asked a question here so I thought now would be a great time to do so. I am creating an application that loops through the file names of a specific directory, in this case, the System32 folder. I want the …

Member Avatar for Reverend Jim
0
199
Member Avatar for Azmah

Well if you are a kid in 3rd grade, if even that long, you would probably say 80 but as we "all" learn is there is something called Order of Operations making the answer 26. No offense, but there was not much thinking involved at all ;)

Member Avatar for BDove
0
2K
Member Avatar for NetJunkie

I have about 30 PictureBox controls on my form and I was wondering how would I be able to calculate the load time for a certain amount of those PictureBox controls. For example, I have 15 on one tab and 15 on the other. How would I create a ProgressBar …

Member Avatar for M.Waqas Aslam
0
211
Member Avatar for NetJunkie

--Current Situation-- I am currently enrolled in a community college trying to get the base classes out of the way so when I transfer to Virginia Tech or UVA I can start working on my engineering degree. I love programming very very much and couldn't see myself a day without …

Member Avatar for firepit
0
227
Member Avatar for mcconnell_34

You may want to try and download a previous version and then when it asks you to update, see if it allows you to do it then. Also, make sure you check on Apple's website and make sure your computer meets the system requirements of iTunes.

Member Avatar for jingda
-1
216
Member Avatar for flagstar

I used to play Xbox 360, mainly the Call of Duty series, but since I have started college I have been unable to play really any games at all. Sometimes I will play Terraria or Minecraft but it is very rare as I am always doing college work on my …

Member Avatar for jwenting
2
1K
Member Avatar for cwarn23

To see what I can create. Before I am done with an application, I am already thinking of something else to make just to learn more and to test my current skill set.

Member Avatar for jackmaverick1
0
124
Member Avatar for TheNNS

This may seem like a novel concept but you are at work so act like an adult and do the job you are getting paid to do. You aren't getting paid to attack your friends computer. If you continue to do so, you may get fired or he will just …

Member Avatar for Narue
0
637
Member Avatar for nmohammed

They way I do this is I create a new void like so: [code] public void StripAlphabetCharacters(TextBox input) { Regex rx = new Regex("[^0-9.]"); //Put Characters to Allow in the "" if ((rx.IsMatch(input.Text))) { int startPosition = input.SelectionStart - 1; input.Text = rx.Replace(input.Text, ""); input.SelectionStart = startPosition; } } [/code] …

Member Avatar for nmohammed
0
204
Member Avatar for markdean.expres

You could make it where you log the user off of his account like so: [code] Shell("shutdown -l") [/code] Then you could make it where you disable the keyboard for as long as you want: [code] 'Add This Before Any Sub Public Declare Function apiBlockInput Lib "user32" Alias "BlockInput" (ByVal …

Member Avatar for NetJunkie
0
129
Member Avatar for aadi_capri

Check [URL="http://www.vbforums.com/showthread.php?t=513355"]this[/URL] link out and see what you can do with it. Hope this helps! -Chris

Member Avatar for aadi_capri
0
118
Member Avatar for AWorkTool

Well label name would be very simple just by having them enter the text in a TextBox and clicking a button. Just add this code to that button: [code] Label1.Text = TextBox1.Text [/code] Of course if you want to save what they change the Label's text to, you can use …

Member Avatar for NetJunkie
0
189
Member Avatar for acepeda

This [URL="http://stackoverflow.com/questions/2881285/automatically-resize-width-of-datagridcoulmn-advanceddatagridcolumn-to-fit-conten"]article[/URL] should help you out with what you are trying to accomplish.

Member Avatar for NetJunkie
0
69
Member Avatar for JOSheaIV

You can read ALL the HTML easily using the following method: [code] using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; //Add using System.Net; using System.Net; namespace WindowsFormsApplication1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void …

Member Avatar for JOSheaIV
0
229
Member Avatar for Rox Vi

You can use [URL="http://www.eziriz.com/downloads.htm"].Net Reactor[/URL] which is very useful when you are trying to secure you application's code along with libraries you create that your application uses. This isn't a free program but it is very cheap and is worth the investment if you are serious about protecting you software. …

Member Avatar for NetJunkie
0
310
Member Avatar for pseudorandom21

Here is my Current Wallpaper: [url]http://i56.tinypic.com/23r4m60.png[/url] If you are Mac Miller fans then you should like this ;)

Member Avatar for AliTheChamp
0
97
Member Avatar for anchamal

I added the following code on the Form1_Load Event: [code] 'Ran Into Some Issues, New Code Soon! [/code] Hope this helps and happy coding!

Member Avatar for adam_k
0
263
Member Avatar for gokhantiknaz

Well, to navigate to the URL on Form2, you would do this: [code] using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace WindowsFormsApplication1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) …

Member Avatar for gokhantiknaz
0
723
Member Avatar for thetraeller94

You need to go into the project properties and click View Windows Settings. Once there you will see a code like this: [code] <?xml version="1.0" encoding="utf-8"?> <asmv1:assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <assemblyIdentity version="1.0.0.0" name="MyApplication.app"/> <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2"> <security> <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3"> <!-- UAC Manifest Options If you want to change the …

Member Avatar for NetJunkie
0
2K
Member Avatar for MattD00

This should do what you need it to do: [code] Dim myTabPage0 As New TabPage() myTabPage0.Text = "Event " & (TabControl1.TabPages.Count + 1) TabControl1.TabPages.Add(myTabPage0) Dim txtBox As New TextBox myTabPage0.Controls.Add(txtBox) [/code]

Member Avatar for NetJunkie
0
417
Member Avatar for Pavan Upadhyay

It is very similar to a COM port I believe. You may try to see how to read the data of a COM port [URL="http://www.codeproject.com/KB/vb/Comport_made_simple.aspx"]here[/URL] and try to manipulate it enough for it to work for a USB port.

Member Avatar for NetJunkie
0
877
Member Avatar for tapandesai007

Try This: [code] using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Threading; namespace WindowsFormsApplication1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } //Login login = new Login(); private void Form1_Load(object sender, EventArgs e) { timer1.Start(); } private void …

Member Avatar for tapandesai007
0
1K
Member Avatar for vijaykvr

First, I would recommend learning how the DLL file itself works. Then, once you know how it works, you should be able to load images from it with ease. I have never looked at the DLL file myself so I am not much help to you. Sorry :-/

Member Avatar for NetJunkie
0
71

The End.