Stay With VB10 Or Upgrade To VB11?
May 21, 2012
The title basically says it all. What are the main differences between .NET 4.0 and .NET 4.5 and is it worth upgrading to .NET 4.5?Jordan St. Godard |Microsoft® Community Contributor 2011
double twoCents = .02;Console.WriteLine("$" + twoCents.ToString());
View 9 Replies
ADVERTISEMENT
May 20, 2012
how do you create a mysql table on a database? If you want to know im using www.xeround.com.
The table should have 5 columns:lesson, int, length: 1
name, varchar, length: 255
surname, varchar, length: 255
class, varchar, length: 255
status, varchar, length: 255
View 2 Replies
Jun 2, 2010
Anyone got any ideas on how i would go about fading in/out a textbox? Because only forms have opacity properties i was thinking of something like setting the background color to transparent and setting the forecolor of the text to the same as the background color. Then using a timer i could slowly change it to black, etc.
View 7 Replies
Aug 30, 2010
Is the Horizonatal scroll bar an available tool in VB10. If so where is it?
View 5 Replies
Dec 1, 2011
I am writing a program for my intro to programming class. we have to make a bar chart using asterisks to show the bar items. he said we have to use nested loops. that i understand, but i can't figure out how to add the asterisks into the string without causing them to all be on separate lines.
View 3 Replies
Jun 24, 2012
I want to Replace a file with another in vb 10.
1)when Anyone click a button it will open a open directory.then it have to replace the file they choose with mine.
2)i need the code
Dim as new openfiledialog
View 5 Replies
Jul 1, 2010
how do i change AxShockwaveFlash1 To ShockwaveFlash1 in vb10
View 1 Replies
Apr 15, 2012
is there a library for the matrix like the library of the complex numbers for example?
View 2 Replies
Apr 16, 2012
I had an assignment that I had done, which has been turned in, I was able to get it to graph, but it when it reaches the right side of the screen it drops off, when it is is adjusted using the velleman controls it jumps back up, hw would I fix this.
Here are the instructon for the assignment:
Write a program tat rads two analog inputs from a velleman board and plots the values on a rotating graph. The number of value plotted horizontally should be specified in a text box. Label the graphs vertical values in at least three places. Print the current voltage reading for each input in it's own lable. The graph should auto scale to fille the graph vertically and horizontally.
The two things that I couldn't get to work is the graph drops off the chart and I was unable to place the vertical values in three places.
Here is my code:
'Date: April 10, 2012
'Progammer: Cathy Hjelm
'Progam: wk8-1
[Code].....
View 3 Replies
Nov 25, 2010
I'm trying to use mockling with VB10(VS2010) to improve my unittesting. I have a C# lamda expression example but I don't know how to implement this in a VB lamda expression? v => v.Load += null The full Moq to raise the load event would be view.Raise(v => v.Load += null, EventArgs.Empty) .Net Developer
View 1 Replies
Dec 6, 2011
I have just opened VB10 for the first time and it converted my VB8 program beautifully, except that all of the screens are not showing any data !
My reference to the MS Access database file is as follows :-
"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:MoneyMoney.mdb"
Do I need to change any of this syntax or is there some other reason why VB10 won't show anything ?
View 19 Replies
May 27, 2011
How can I set the width of a form in inches (or cm) instead of pixels?
I want to print the form, so it needs to always be the same dimensions (4" by 6"). I saw some examples for previous versions of VB, but nothing that works in VB10.
View 3 Replies
Nov 30, 2010
I recently finished a class that we're using to tie Access to some WCF Services. Of course this means that the .Net classes (and all of their properties) need to be visible to COM. Given that I'm using VB10 and the Contact class has about 20 properties I went ahead and used auto-implementing properties.Much to my surprise, the properties were not accessible from within VBA in Access. I tried marking the properties as ComVisible (which I didn't have to do in the past with standard properties) and it still didn't work. After changing the auto properties to standard properties everything worked.
Became
Public Property FirstName As String
Get
[code].....
View 1 Replies
Feb 10, 2012
i am working on a project in vb10 i want simple code to add delete or update record in ms access by a click of button
View 10 Replies
Mar 8, 2012
I am developing a simple application in VB10 that uses ADO.net to store data in an Access database, and gets input via a serial port RS232. It works well, but is not fully debugged. Unfortunately, a problem has recently started where as soon as i close the program I get a blue screen. Makes it hard to debug. The solution does not even have to have run; it just has to have been loaded and then exit VB10. The blue screen aslo happens to most of the other example solutions that I have downloaded.
Questions:
1)How do you capture the STOP error codes (probably stupid question)?
2) Is there an easy solution that rings a bell? My IT support is trying but not getting anywhere. Have to believe it is hardware related, but the hard drive checks out with testing.
View 2 Replies
Mar 6, 2012
I try to determine the lenght of a string variable, but get the wrong outcome when using: testje = Len(testSTR). When I insert the following line of code: testje = testSTR.Length the answer is still wrong but when I click "Length" I see the correct value. How to get at that value, so I can use it?
View 11 Replies
Jun 8, 2009
I've been using the vs2010 beta but I can't seem to get edit and continue to work.
Compile -> Advanced Options -> Target platform is set to x86 (Compile -> Platform is disabled and set to Active (Any Cpu)?).Options -> Debugging -> Edit-and-continue is checked but grayed out. Presumably for the same reason I can't debug.Options -> Historical Debugging is set to Events Only. Disabling it doesn't help.I get no warnings when trying to modify files while debugging, they're just read-only (shows a lock icon in tab).
What are some other options that might be disabling edit-and-continue?
View 1 Replies
Dec 19, 2011
can I increase the diameter of the sphere of radio buttons in VB10?
View 2 Replies
Oct 1, 2011
I want to read data from excel sheets and write into tables in database visual basic 2010. I am usinq Oracle 9i for database.and my objective is that user should select excel file and if button is pressed then I want to extract data from excel sheet and store in a already created tables.
View 5 Replies
Sep 22, 2010
Problem in VisualBasic 10 on Windows 7 OS I have a form which has 30 lines for user input in format <textbox for Name> <comboBox for Type> <comboBox for Quality> <NumericUpDown for Amount> At the start of each line is a CheckBox. The intention is this enables/Disables the line. I have associated each object with an Array - eg
Dim Name(30) As Textbox
etc
and assigned
Name(1)=Name1
[code]....
ie enable/disable the boxes on a line dependent on whether CheckBox is Checked The Sub for Picked_Changed refuses to allow referenced to the arrays within, even if not generated by the picking of box (see above - it allowed '=Men3.Value' but not 'Men(3).Value', although the button sub is fine with this)
View 2 Replies
May 21, 2012
I am new to dealing with SQL Express DB tables. I have a Windows application that gives the user a textbox that is bound to a value in my dataset (ds) which reflects my SQL table (Specs) field. The user can change the numeric value of the textbox and I can see by setting breakpoints that it created the new value in my dataset (I used MsgBox(Ds.Specs.Rows(0).Item(10) to determine this to be true). However, when I open the application back up, the OLD value appears again in the text box. It is like my dataset is not updating the SQL server table.
Again, I am new to SQL tables and allowed the wizard to create all my insert/update/delete statements which appear to be in place. Any idea why my values won't stick?
View 2 Replies
Sep 7, 2009
I have a document with 3 pages and with VB I always insert text in page 1.
The problem is that the text in page 2 always goes down when text in page 1 is inserted.
My question is: How can i do to make the text in page 2 always stay at the top of the page, and if it haves too, move down one page but always staying at the top.
View 2 Replies
Dec 29, 2011
Basically what it does is - you can mark a section of the screen and it creates a preview window for that section and keeps it on top of all other windows. I want to make a similar thing, for 3 reasons: 1. I can't use third party software in my office PC, 2.I can't afford it, 3. It will be an immense pleasure to create something useful, which I can share with the community.So, I was wondering, what would be the way to go about it.se dot net (probably VB.net)make a frameless windowet it to stay on topcreate a context menu to exit
View 1 Replies
Mar 3, 2009
My application is an Touch Screen HMI to operate some machinery using VB.net 2008. I am trying to get a button to activate code while touched then other code when released. I have experienced HMI's where when a button is pressed then slide finger out of focus the button stays down. This is what I am looking for.
View 5 Replies
May 4, 2009
When I am on my modify page and you scroll through the records with the Binding Navigator, somehow the previous records data stays on the screen and puts it into the next data. Now this only happens on my one screen with 2 combo boxes. How do I get my information to stay put so that users don't have to worry about scrolling through multiple records and screwing up the data?
View 6 Replies
Jan 14, 2011
I'm trying to get my splash screen to stay up for more that a second.I have used the code suggested by the book I have, the problem is that the book isn't specific about where the code goes.
I'm using the SplashScreen template. I've added the code in various places. Either the code will delay the splash screen from showing, then it flashes up for half a second, or the code will do nothing.
[Code]...
View 2 Replies
Mar 29, 2009
Like Say If I was Playing Halo..and I wanted my Program in Visual basic To stay on Top Of The Halo Game ...how would I do that.
View 4 Replies
Jun 5, 2012
I have a problem where a form is loaded but the control does not stay with it and control of the previous form continues.
The code below loads the search form:
'frmBookingForm
Private Sub btnSearch_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSearch.Click
If txtAccountNo.Text = "" Then
[code]....
why the control does not stay with frmsearchForm.If it was VB 6, I would have used VBMODAL to keep control.I am using VB2008 Express
View 3 Replies
Mar 5, 2010
I have made a program with a main Form and several auxilary forms. Is it possible to modify the auxilary form in a way like a msgbox. It stays always in focus, and you cannot interact with the main form. What I did find was the Form.enabled (True or False) method, but then the main form completely greys out, but I don't like the way it looks.
View 1 Replies
Mar 18, 2010
With that program, it has extra dialogs within it. They cannot be scrolled out and stay topmost while the whole app is focused. How can I do that?
View 1 Replies