VB 2010 Express - Randomize A Numerical Range Output To RS-232 With Speed Control
Jan 17, 2012
I have a USB device that is "seen" as a COM Port. It has eight channels, each require a single character to turn ON/OFF. It's a DLP-IO8 for reference. I have the COM port part working 100%.
1-8 turns ON each channel (12345678)
Q-I turns OFF each channel (QWERTYUI)
[Code]....
View 1 Replies
ADVERTISEMENT
Jan 17, 2012
I have a USB device that is "seen" as a COM Port. It has eight channels, each require a single character to turn ON/OFF. It's a DLP-IO8 for reference. I have the COM port part working 100%.
1-8 turns ON each channel (12345678)
Q-I turns OFF each channel (QWERTYUI)
Truth table for device:
1 = Ch1 ON | Q = Ch1 OFF
2 = Ch2 ON | W = Ch2 OFF
3 = Ch3 ON | E = Ch3 OFF
[Code].....
a loop that I can still use the functions of the form (change speed or Stop loop).
a way to utilize Q-I to turn the channels OFF in random mode
I've been searching for a few days with little luck. I've tried Do Until, Do While loops and a few others.
I've only been coding for a few days now so go easy. Learning as I go. My form for reference
Ultimately I'm trying bring my PC Interface project up to date by going from a parallel port to USB.
View 11 Replies
Jan 17, 2012
I have a USB device that is "seen" as a COM Port. It has eight channels, each require a single character to turn ON/OFF. It's a DLP-IO8 for reference.
1-8 turns ON each channel
Q-I turns OFF each channel
Sending a "124" will turn on channels 1, 2 and 4.
I want to randomize ON/OFF with "on-the-fly" speed control.
cmbSPRan.Value is my NumericUpDown starting at 1 and ending with 10
RandomNumber = RandomClass.Next(1, 87654321)
SerialPort1.Write(RandomNumber)
Timer1.Interval = (cmbSPRan.Value) * 250
[Code] .....
I need a loop that I can still use the functions of the form (change speed or Stop loop).a way to utilize Q-I to turn the channels OFF randomly. I've tried Do Until, Do While loops and a few others.
View 1 Replies
Jul 5, 2010
Say I am pulling the following table, I would then like to select an ID randomly. I understand how to select a random number using a Randomize() call followed by the relevant syntax but I want to pre-define the range.
i.e. Table Data
ID | Name
4345 Mike
3456 Lee
4567 John
There will be many more names but for this example you could use 3 or 4 etc..
View 2 Replies
Oct 27, 2011
How do I take the input of a text box as as string and write out a procedure for a button that takes the input and outputs a variable in the list box. For example i want to assign various values to strings such as the price of a chair = $10 and price of table = $40 . How do would you write it so that when you click the button it takes the word chair in the text boxs and outputs a value in the list box.
View 1 Replies
Nov 30, 2010
I have a codes that calculates DownLoad speed and UpLoad speed kb/s. I would like to implement this kind. I also want to put such kind of graph. Any article or links where can I start building my own like that.
View 2 Replies
Jul 22, 2010
I am checking for empty string values, but how do i see for the Quantity text box if the user chose only numerical values after the empty string. For example...
[Code]...
View 2 Replies
Feb 28, 2010
Is it possible to speed up VB.express on an older laptop? For example, is it possible to disable the announcements window for speed. It appears that the announcement window is just another webpage embedded in the program that would slow it down. Any other tricks to get vb.express up to speed on an older machine?
View 3 Replies
Mar 30, 2011
I cant figure out the code for vb.net that would randomize the interval of a certain timer. For each a = a + 1, there would be a different interval, and for each a = 1, a = 2, a = 3 etc. there would be a different text that will be shown on a label.
View 2 Replies
May 20, 2011
I can’t figure out the code for vb.net that would randomize the interval of a certain timer. For each a = a + 1, there would be a different interval, and for each a = 1, a = 2, a = 3 etc. there would be a different text that will be shown on a labe
View 1 Replies
Sep 29, 2011
So I created a loop that collects data from the user that runs for a time dictated by the user. It then stores all the data in excel and outputs a graph.The problem I am having is that I cant seem to figure out a way to set the range of the graph for the points taken.since it runs on a loop i have i = i + 1.where the the output into the excel file sequentially writes to the next cell [code]which doesnt seem to work like I would have hoped.Also, there is one other thing that my program keeps doing that I cant seem to figure out.One of the outputs to the excel file is decimal number, it shows perfectly in the textbox, but when I export it to excel it rounds it to the nearest whole number.[code]
View 11 Replies
Oct 14, 2010
I have some questions about the Windows.Forms.WebBrowser control.I have added this control to my project to be able to browse websites internally.First problem is that when I come into a webpage that contains JavaScript to open a new window, the control opens a new instance of iexplore.exe, tries to load the page in which the java script popup code initiated, but then prompts for authentication for a second time.Basically, I have to sign into one page to get to a listing of applications.I click on the application which in turn is just a URL to another page.The URL to the other page contains java script to open a new window.The new window opens in an iexplore.exe process, but re-directs me to the original sign in window instead of taking me to the correct site.If I do a msgbox on the cookie that is currently loaded, it displays my authentication information.How do I tell the new iexplore.exe processes to use the cookie that was stored in the webbrowser control?
View 1 Replies
Nov 3, 2010
im using a WebBrowser control to auto fill a form in a page... i can access some properties of the <INPUT> html object, but when i try to set the Value property of this object VB fails and send me an error... i tried the SAME CODE in VB 6 and functions perfectly..Im using VB NET EXPRESS 2010
Private Sub Form1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Click
Dim Obj As Object
For Each Obj In Web.Document.All
[code].....
View 6 Replies
Apr 24, 2010
I am attempting to write a speed/distance calculator using visual basic 2008 express edition. I have gotten the program to do most everything I need but am having some difficulties and have been trying to fix them for 2 or 3 days now without any success. Will somebody, anybody please tell me how to fix the problems.The calculator should display the distance traveled when the speed and time are entered. This is the only major requirement. However, It needs to have all info input via a list box with popup windows displayed for speed entry and then again for time entry. I would like a label outside of the list box to show "Total Distance Traveled" and I would like the list box to display the following information
[Code]...
View 3 Replies
Oct 12, 2010
Can someone tell me if the functionallity to control a parallel port in MS VB 2010 Expess exists? I was expecting to have to add a reference such as the microsoft comm control 6.0. However this reference does not appear in the list. Everything I search for references .net 2005/2008.
View 4 Replies
Jun 5, 2011
controls mainly an indexed picturebox control. In VB 4, 5 and 6, I could make a picturebox(0) indexed, but in VB Express 2010 I no longer see this option in the picturebox properties window how is this accomplished in VB Express 2010.
[Code]...
View 7 Replies
Jan 9, 2011
how to make a listbox change the selected item to the next or previous item by using a button... I want to have up/down buttons.
View 2 Replies
Nov 30, 2011
I'm trying to make a game with a friend. We have 4 sprites (pictureboxes)and we're trying to make them change tab order based on a value assigned to their variable.
View 9 Replies
Dec 30, 2011
I'm trying to write a program using Internet Transfer Controls, but I'm using Visual Studio (Visual Basic Express) 2010.
Is Internet Transfer Control omitted from the express version?
View 1 Replies
Aug 12, 2010
I've just rebuilt my PC and have upgraded to visual web developer express 2010. I have imported my projects which use the charting control quite a bit. Unfortunately my projects are failing to run. In design view the control is now showing as "unknown server tag asp:chart". I can see the Chart control in the data tab in the toolbox but it is greyed out.
View 1 Replies
Mar 13, 2011
I know how to browse page witht he browser control etc, but i need to know how to grab data from within the html.
[Code]....
View 1 Replies
Jun 19, 2011
Is it possible to use a simple call to randomize an array.... by that i mean randomize the order of it. It is an array of custom type structure
View 1 Replies
May 7, 2011
I'm having a bit of an issue with this program I have been working on for my class. It's a future values calculator, that takes a single data type, decimal data type and a integer data type does the formula and then spits back out the Future value. What i'm having difficulty with is converting the string over.
Public Class Form1
'Define the Module level variables
Dim FutureValueInteger As Integer
[Code]....
View 1 Replies
Feb 29, 2012
I am trying to make a user account SQL database work with Visual Basic 2008 Express for login purposes, i.e. usernames & passwords. Plan is to host this server so people can login to use the the application and verify they have a valid account. I would like to host all the account information in SQL due to the possiblity of hundreds of users at any given time. I also need the ability to add data to the database for users registering for the first time. The SQL server will need to be able to access the SQL Server databases remote via WAN.
View 3 Replies
Jan 23, 2011
I am creating a Map Rotation Randomizer for my Call of Duty clan, and I am having an issue with understanding how to randomize the text from the list and placing it into another textbox.
Here's what it looks like right now:
All textboxes are multi-line.
When I click a button for a game (CoD4, MW2, WaW), it places the map list into the left textbox like:
mp_bloc
mp_broadcast
mp_crossfire
etc.
When I click the button with ">>>", I want it to randomize that list and place it into the right textbox like:
map mp_bloc map mp_broadcast map mp_crossfire
Or if I click it again:
map mp_crossfire map mp_bloc map mp_broadcast
And so on. I think I need to create an array, but I've never worked with those before as I'm still new to learning programming. I'm not even sure what controls I need to put on the form for that, if it even requires any.
View 13 Replies
Mar 5, 2010
Is it possible to control the download speed in vb.net
For example if the client downloading speed is 45kb per sec can i change to 40kb per sec.
i want this to only effect my application and not the web browser or any other applications.
View 5 Replies
Feb 24, 2012
If I put this piece of code in a new fresh vb.net form, add a button and two labels and start debug I get execution time of about 11.5s.If I put the same piece of code in a new form in an old project upgraded from an earlier version of vb.net, start debug I get an execution time of 7.5s.So I do exactly the same in the two projects but get different execution times.
What do I have to do with the fresh new project to get the same execution time ?I am not interested in improving the code to be able to calculate primes faster. I just want to know what is the significant difference between an old upgraded project and a new fresh one. I am using windows 7 64bit on a 2,4 Ghz Intel quadcore.
Public Class Form2
Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
Dim l, h, p As Integer
[code]....
View 1 Replies
Dec 22, 2008
can i in some way change the power that the usb sends to a usb device?i want to connect a computer fan to the usb and control the speed is this posible??
View 1 Replies
Feb 19, 2010
Can We control Speed of Gif Images layers / Frams using VB
View 11 Replies
Feb 21, 2012
How do i exactly check internet connection speed.I have searched around google and found out a method w/c will Download a file like 1mb size, then it will calculate the speed.
View 1 Replies