Hello Alan, I've just had a quick look. The Calculater_WRegistry.zip is definitely in the files section. The registry entries are logged, but they all have the...
Good Morning Geoff, Had the pleasure of a quick look at the project last night, and I think you need to do something like this: . . a) Remove the code in the...
All, I am reading Developing User Interfaces for Microsoft Windows by Everett N. McKay. There are suggestions about modifying the message box in numerous ...
Hello All, My screen reader reads some of the colours when on an object. To do this, it converts [RGB] colours. These can be converted to Hexidecimal numbers....
http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&item_id=HextoDecConversion You have this in your calculator...just change the view... Jamie geoff...
hi, send me your program. the help with vb will not show up in my yahoo groups Bryan ... From: geoff Smith To: helpwithvb@yahoogroups.com Sent: Tuesday, July...
Hi Geoff, In your screen reader’s Color Ini file Alice Blue equals number-sign F0F8FF This numeric grouping: F0F8FF are the Hexadecimal numbers arranged in...
Hello Steve, I'm a little confused here, Nothing strange about that! <G> When I've looked at the Command.BackColor property it shows command1.BackColor =...
Good Morning Geoff, And yes, it is always a good morning when you wake up and see that Adelle has already answered the tough bits < g > If I could offer just...
Hello Steve, You wrote: Hope that was informative Geoff, but it probably still leaves you in a tizzy, because, as I said, this colour stuff is tough. That,...
Hey Geoff Whats the value in txtTB(2).Text? If for example if its HFF0 Then cLng(txtTB(2).Text) will give a type mismatch you have to tell vb its a Hex String...
Hello Mike, I've tried your suggestion, but, I'm afraid I got the same error message as before. However, your suggestion makes sense, I'm only sorry it doesn't...
Geoff Whats the text in txtTB(2).text when you get the error? Are you getting the error on the line lngColour = CLng(txtTB(2).Text) Regards MikeB ... From:...
Thinking about it, if you've copied it from one of the colour properties you need to loose the trailing & as well Try If Left(txtTB(2).Text, 1) <> "&" Then ...
Hello Mike, I've found a problem elsewhere in the code that was causing the problem, so once that was corrected, your suggestion worked happily. Thanks Mike...
hello Steve, With the help you gave me in sorting out the problems with the SaveSetting and GetSetting functions, I've got the registry registering and the...
Hello Mike, Yes. That was the line it was tripping over. Thank you for the last bit of code. I've made a note of it for future use. Program seems to be working...
Hello to all of you, This is my first email in the group. I am new to VB. Could anybody tell me from where I should I start to learn VB 6.0. I would also like...
hi, does the file that was uploaded have the save settings function? i didn't find it in the menus of the exe file but haven't looked inside the code yet. ...
Hello Bhupinder , The books I read when I first started with VB6 were, Learn To Program With Visual Basic by John Smiley and Begin Programming with Visual...
Hello Brian, No. It was one of the problems I had, but Steve's guideance and suggestions enabled me to complete the problems I had with the code. You may have...
I highly recommend Learning to Program with Visual Basic 6 by John Smiley. It can teach even a complete beginner. My book also came with the learning edition...
Hello Tim and Geoff, Thanks for your guidance. Tim could you please send me complementary copy of your book. It would be a great help for me. Could you please...
I am trying to create a very simple VB 6 program to test a DLL written in MSVC++ 6. The DLL compiles with no problem. When I try to call the function in VB,...
Hello All, For those who may be interested, I updated and completed the calculater file I posted to the group's 'File' section, last week. It now saves and...
Hello All, I would like to check two points, with your indulgence. The line: txtTB(#).Text = Trim$(txtTB(#).Text Removes all trailing spaces, rather than all...