Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
82% Quality Score
Upvotes Received
5
Posts with Upvotes
4
Upvoting Members
5
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
2 Endorsements
Ranked #621
Ranked #13.1K
Ranked #3K
~5K People Reached

11 Posted Topics

Member Avatar for Aleksandor51

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, …

Member Avatar for spider2vb
0
512
Member Avatar for kenomote

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 …

Member Avatar for jeffreyk16
0
231
Member Avatar for linky1hit

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 …

Member Avatar for deepakbshitole
0
297
Member Avatar for ayat abukhadra

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. …

Member Avatar for ayat abukhadra
0
1K
Member Avatar for john.knapp

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 …

Member Avatar for jeffreyk16
1
419
Member Avatar for didijc

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 …

Member Avatar for jeffreyk16
0
171
Member Avatar for dhrider

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]

Member Avatar for jeffreyk16
0
118
Member Avatar for mjltech84

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 …

Member Avatar for jeffreyk16
0
100
Member Avatar for mjltech

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]

Member Avatar for jeffreyk16
0
102
Member Avatar for DBB1

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 …

Member Avatar for Spain
0
129
Member Avatar for ggeoff

The End.