Good Morning Bryan, If these pieces of data are being brought in by reading some text boxes..... sDate = txtDate.Text .....etc..... sOneNewLine = sDate &...
Given the subject it can't be intelligence - artificial or otherwise MikeB ... From: Rick Farnkopf [mailto:rwfarnkopf@...] Sent: 31 October 2004 23:49 ...
Thanks Chris, for your comments. As of now, I will not use textboxes to display these values. I am learning a lot from all the comments on this subject by...
There are good examples at freevbcode.com, including http://www.freevbcode.com/ShowCode.Asp?ID=3025 I really like Winsock and have encountered very few...
tlewis@...
Nov 1, 2004 1:37 pm
13974
Hi folks Let's be nice---Ed is a long time member and deserves our respect. Still, while I agree this is an important election, let's try to keep the message...
Thanks Professor Smiley, My apologies to Ed, as I meant no disrespect, but I must admit to a knee-jerk reaction on my part. Seemed funny at the time, IYKWIM. ...
Just copy the values before deleting Dim x As Integer Dim y As Integer x = 2 For y = 1 To 8 Worksheets(2).Cells(x, y).Value = Worksheets(1).Cells(x, y).Value ...
This might be of help: Rows("3:3").Select Application.CutCopyMode = False Selection.Cut Sheets("Sheet2").Select Rows("3:3").Select ActiveSheet.Paste Tim ...
tlewis@...
Nov 1, 2004 4:04 pm
13979
How do I populate column A of a given row (its value should be 7 greater than the cell immediately above it) as soon as a user enters a number into column B of...
My appologies for posting election crap on this forum. The thought of doing so wouldn't have crossed my mind, if mark hadn't posted his anti Bush rhetoric....
Hi Eliezer. Are you familar with macros in the MS Office products? That is the easiest way to get the code. For example with Excel, if you open your Excel...
tlewis@...
Nov 1, 2004 6:20 pm
13982
Tim, yes, of course I am familiar with recording macros. I tried recording this one before I posted the question, but did not see from within the code how to...
Assalam-O-Alaikum Wa Rahmat-Allaah Wa Barakaatuhu I bet its "Artificial" intelligence or not .... we can vote on that ..... Take Care of urself, Ur family,...
Hi Bryan, Basically you have to construct each new line of text that you want to place inside the RTB, or Text Box, etc. You would assign each of your four...
Eliezer, the cells can also be referenced in the format ActiveSheet.Cells(intRowNumber, intColumnNumber), so I think that this IF statement might work: ...
tlewis@...
Nov 2, 2004 2:29 pm
13988
Hi Steve, Thank you, it works pretty well so far. I am usually good about specifying the .text after the object name and here is what happened when I forgot...
Hi Steve No problem--like Ed, you too are a long time member who has made incredible contributions to the group. I understand your reaction. This election is...
For the record, I'm on several lists in other capacities where we've pretty much banned the topic of this election, just so we can all stay civil. It's...
Hi Bryan, Did the sample program explain what you needed to do ? Readable ? ...and with enough detail in the comments ? ... Isn't it amazing to get a peek at...
Does anyone know a neat trick for an application restarting itself. I know I could launch a separate app that watches for original app to disappear, and then...
Hi all, I forgot the exact syntax to format a text box like currency. txtTotalDue.text = Format$(txtTotalDue, currency) is close but gives errors. Bryan...
I forgot to mention that almost all of the VB Functions use the " Banker's Rounding " approach to rounding your numbers. Try running these sets of numbers: ...
Say Guys and Gals, I'm using VB to examine the items in my OutLook Inbox. How do I determine what type of item I'm looking at? Here's where I'm at, which don't...
DeGance, Anthony
ADEGANCE@...
Nov 4, 2004 3:52 pm
13998
Hi, I have the following code in a new project. dtaPostedScores.Refresh dtaPostedScores.Index = "MemberID" dtaPostedScores.Seek "=",...