No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
24 Posted Topics
I know I'm just missing the mark here, but what I am trying to accomplish is simply adding the results of two text boxes. Example: Form has two text boxes and 1 label The user enters a number (any number from 0 - 10) into each textbox when the user … | |
Re: How about an application that automatically spell checks/corrects leet speak and lazy speak to actual english? | |
Re: My first suggestion would be to code what you do know how to code, and post what you have here, and we can try to help you along. There are several ways of performing the task that you've described, each has their pro's and con's. This project could easily be … | |
I've created a web browser (similar to the beginners project) with the following items: [LIST] [*]1 Text Box (for url entry, with "enter" support) [*]4 Nav buttons (Forward, Back, Go, Home) [*]1 Tabcontrol holding 2 tabbed pages[/LIST]Question: How do I get TabPage2 to navigate to the entered URL? Currently, only … | |
Re: [quote=kkv;263320]I am a self learner of vb.net. I have planned 2 do my academic project with vb.net, and iam looking 4 some new and challenging concept. So someone, kindly suggest me some gud challenging concept or abstract 4 my project.[/quote] Not flaming you (but am being mildly sarcastic), maybe create … | |
Hello and thank you for taking time to read my question. I have been charged with the task of creating a scoreboard for use by one of our local teams, the problem is that I am still very new to visual basic (I am using Visual Basic Express Edition). I … ![]() | |
Re: Please show what code you have so far and we'll try to help you out. | |
Hi all. Hoping someone could help me out here. I recently started toying around with ASP.NET web development and had downloaded a small business website starter pack from the MSDN site. I've gone through and made many modifications to the pages (only as they relate to the content of the … | |
Re: Strictly speaking from my experiences, there are stores in my town that will buy and resell software at a reduced price (games, apps, etc). One in particular is called "Half Priced Books". For the most part, from what I've read in the past, as long as you un-install software from … | |
Re: First, if you wish to receive help, use proper grammar and SPELLING. Second, show us what code you have to this point, and we will try to help you through the parts you are stuck on. | |
Re: Would be happy to help where I am able. Could you post a specific question, along with what code you have to this point, as it relates to your question? | |
Hi all. I am building an automated login program for my work scheduler (which is a website already existing online). I have created a form with a timer, that when the computers system time reaches a certain time, another form containing a web browser control launches and goes to the … | |
Re: Welcome Esther. If you have any questions, please feel free to post them here along with what bits of code you already have in regards to your questions. Even some of us newbies may have an answer for you. :) | |
I have a countdown timer in my application that is to be controlled via keyboard. Currently, it will start (or reset to the starting value of 20minutes) when the user presses "B", and stop when the user presses "A". Trying to figure out how to restart the timer from the … | |
Re: That's quite the hefty homework assignment. [QUOTE]In order to demonstrate your understanding of Object Oriented Programming within a visual environment...[/QUOTE] | |
Hi again. In addition to all the other little projects I'm working on to try and learn VB(express edition), I've decided to try and build an English/Spanish translator. I'm looking for suggestions as to what might be the better route to take as far as treating the retrieval of the … | |
Re: Well, show us what code you have so far and we'll see what can be done. | |
How would someone go about building an audio conversion program using VB.NET 2005? Or more specifically, say I wanted to build a program that would allow the user to select a *.WMA file and convert it to a *.WAV file. From a design standpoint, thats a pretty easy setup; couple … | |
Re: [quote=wednesday;269276]Hi I am creating a button & textbox manually and have those codes in the form load event. Also I disabled the button & I have the number 1 in my text box. May I please have the code to enable the button when any number greater than one is … | |
Re: Splash screen is part of the vb express edition. In other versions it may simply be a matter of a timer and a form | |
Re: [quote=**UM HASSAN**;263865]How Can We Add A Sound Background Witout Buttons?? I Mean When The First Form Is Opened The Sound Starts With It At The Same Time??[/quote] You can add it like this [code] [COLOR=#0000ff]Private[/COLOR][COLOR=#0000ff]Sub[/COLOR][COLOR=#000000] Form1_Load([/COLOR][COLOR=#0000ff]ByVal[/COLOR][COLOR=#000000] sender [/COLOR][COLOR=#0000ff]As[/COLOR][COLOR=#000000] System.Object, [/COLOR][COLOR=#0000ff]ByVal[/COLOR][COLOR=#000000] e [/COLOR][COLOR=#0000ff]As[/COLOR][COLOR=#000000] System.EventArgs) [/COLOR][COLOR=#0000ff]Handles[/COLOR][COLOR=#0000ff]MyBase[/COLOR][COLOR=#000000].Load[/COLOR] My.Computer.Audio.Play("c:\windows\media\Windows XP Logoff Sound.wav", AudioPlayMode.BackgroundLoop) MessageBox.Show("Now … | |
Re: You learn more here by accident, than other places by design. Translation: I wasn't looking for that info, but am glad I found it! | |
Re: [quote=waynespangler;262687]Actually there are 61 days between those two dates. [code] Dim date1 As Date = #10/10/2006# Dim date2 As Date = #12/10/2006# Dim ts As TimeSpan = date2.Subtract(date1) Label1.Text = ts.TotalDays.ToString [/code] This is mm/dd/yy. If dd/mm/yy then date difference is 2 days. Don't know about the calender control.[/quote] Depends … | |
Re: You could probably accomplish this, at least in a basic format, using the transparency color key for the form itself. (i.e. lime green is transparent, and having the background of the image/skin be the lime green). I'm sure there is a better method though. |
The End.