- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 5
- Posts with Upvotes
- 4
- Upvoting Members
- 5
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
11 Posted Topics
Re: You need to covert the strState variable to a number when assigning it to StUID, using something like Val() or a .NET method like CInt. One example: [CODE]Dim StUID As Integer StUID = Val(strState )[/CODE] Search MSDN for "convert string to number" [URL="http://support.microsoft.com/kb/818805"]How to use Mathematical functions, Type Conversion functions, … | |
Re: I would agree with installing SQL Server 2008, but you will need VS2008 SP1, which includes the support for SQL Server 2008. (Last year I went through the headache of sorting out upgrading through VS2005 - VS2008 - VS2010 and SS2005 - SS2008 - SS2008R2 - SS2012.) Note: Read the … | |
Re: You're best bet is to look at the VB samples - Language Samples - String Methods Sample program and get some ideas about how to use the string functions. There are two methods I use to process text - an array or a buffer. 1) In VB, you can use … | |
Re: I think it provides an interface to the IE component installed on the user's computer. It should use whatever the user has installed. However, the object model has changed and I hear they are not using shdocvw.dll now. This creates some problems in deploying an app in a mixed environment. … | |
Re: Good point! Although I would reiterate what I've read about the difference with .Net -- Boolean true/false is not the same as integer 1/0. Same thing happened to me, except I was scanning for a substring in a string. Made my own function to return T/F on condition found or … | |
Re: Hey, funny thing you mention this, I'm trying the same thing. So far found a couple of leads. First, the W3C Style website ([url]http://www.w3.org/Style/[/url]) uses a red colored border with gray background as a highlight when you hover with a mouse or tab to and give focus to a link … | |
Re: Start with a Google search on "sql server remote connections vb.net" One of the best I've seen is on the Microsoft MSDN forum. Use VB.NET to retrieve SQL data. by Martin Xie [url]http://social.msdn.microsoft.com/Forums/en/vbgeneral/thread/44be1e81-d82a-4cde-99db-c018850cf56f[/url] SQL Magazine is good resource [url]http://www.sqlmag.com/home.aspx[/url] [url]http://www.codeproject.com/[/url] [url]http://www.codeplex.com/[/url] [url]http://vbnet.mvps.org/[/url] [url]http://visualbasic.about.com/[/url] [url]http://www.java2s.com/Code/VB/CatalogVB.htm[/url] [url]http://www.devx.com/vb/Door/7047[/url] [url]http://www.xtremevbtalk.com/index.php[/url] [url]http://www.codeguru.com/vb/gen/vb_database/[/url] | |
Re: Think a little bit about what it is you are doing. You start off with declaring variables for food items with type Double. Then you convert the textbox values to type double and assign to the varialbes. Next you call you displayBill sub passing these three variables as parameters. Now … | |
Re: Did it turn out to be the way you wrote the expression to test? [CODE]Select Case item.ToUpper & duration.ToUpper Case "1", "h"[/CODE] The ampersand (&) will do a string concatenation; the ToUpper makes the text uppercase. Therefore, the case should be [CODE] Case "1H"[/CODE] | |
Re: Try removing the width="100%" from the <td> tags. You have a row with two cells with colspan="2" and width="100%". If you have 4 columns in your table, then the two cells with split the difference and get 50% each. Also, I'm assuming that the table does have at least one … | |
Re: Try a <br clear=`all`> after the <p> tags |
The End.