comp.lang.basic.visual.misc http://groups-beta.google.com/group/comp.lang.basic.visual.misc
Today's most active topics: * Icons with ExtractIconEx to Listview? - 4 new http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/b7f973377aaa70ae * Serial comm in VB - 2 new http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/12e0dcb74276cbc1 * VB5 Compile problem - 2 new http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/bc526297be230871 * Weird form behavior - 2 new http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/b5b6233d59baffd6 * Programmer pay rates in the US - 1 new http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/ce04adf6a237999d Active Topics ============= Serial comm in VB - 2 new ---------------------------------- Mike, There is an excellent sample program included with the samples of VB called VBTERM. Try to find it on the CD's or in MSDN. If you cannot find it, call on me again and I will send it to your by e-mail, provided I have your address. Greetings, Opa. "Radioactive Man" schreef in bericht news:e89ab718. [EMAIL PROTECTED] ... ... - Sat, Aug 28 2004 4: 14 am 2 messages, 2 authors http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/12e0dcb74276cbc1 Icons with ExtractIconEx to Listview? - 4 new ---------------------------------- Hello, I'm a newbie with API and I'm only beginning to understand the principle a little bit. I found some useful code on the internet which I could use to extract the 32x32 and 16x16 icons from a file and show it in a picturebox. But what I need is, to show it as Icon and SmallIcon in a listview. Can you help me out and show me how to do this? Thanks! Ramon. This is my code: Public Declare Function ExtractIconEx Lib "shell32.dll" _ Alias "ExtractIconExA" (ByVal lpszFile As String, _ ByVal nIconIndex As Long, phiconLarge As... - Sat, Aug 28 2004 5:35 am 4 messages, 3 authors http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/b7f973377aaa70ae Programmer pay rates in the US - all new ---------------------------------- [EMAIL PROTECTED] (ILYNat) wrote in news:[EMAIL PROTECTED] google.com: ... It is. And here's an example : - Indians are programmed with an emphasis on education and hard work. - Americans are programmed to believe their nationality guarantees them an opulent lifestyle. ... - Sat, Aug 28 2004 1:18 pm 1 message, 1 author http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/ce04adf6a237999d VB5 Compile problem - 2 new ---------------------------------- Hi Guys, Thanks for all the help but as it turns out I've located the problem. Here's one for your trivia book. In VB4 there is a function called Array(). It turns out I didn't know this and I used it as the name for an array. In VB4 it turns out it let me get away with this but in VB5, NO!. Array() is reserved and so I had to change the name to xarray(). Simple, but surprising result. Looks like VB5 is far less forgiving. On Sat, 28 Aug 2004 10:16:26 +0100, " John Blessing" ... ... - Sat, Aug 28 2004 1:47 pm 2 messages, 2 authors http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/bc526297be230871 Full Screen / Kiosk Mode in VB6 - all new ---------------------------------- You are right, it wasn't the program that was causing the border, it was the WebBrowser that had it. To get around it, I resized it to go beyond the size of the window. I fooled around with the number of pixels until it looked right to me: Private Sub Form_Resize() WebBrowser1.Move -15, -15, ScaleWidth + 45, ScaleHeight + 45 End Sub Can anyone see a cleaner way to do this? ...... - Sat, Aug 28 2004 2:47 pm 1 message, 1 author http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/9fa0ce35d97eb756 VB Picture Objec - all new ---------------------------------- I'm trying to follow an example in the VB help file under "Picture Object" -> "Using Picture Object". There I find: ... Printer object _ you can't see it, but it's useful nonetheless. You could think of the Picture object as a invisible picture box that you can use as a staging area for images. For example, the following code loads a Picture object with a bitmap and uses that bitmap to set the Picture property of a picture box control: ... The Picture object supports bitmaps, GIF images, JPEG... - Sat, Aug 28 2004 3:11 pm 1 message, 1 author http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/1b836589c6fed9fa verify settings - all new ---------------------------------- I want know how to verify somebodies ftp settings. I can get all ftp functionality to work using the inet control, but i don't know how to just test settings. If I pass an invalid user/pass my app crashes all together. i want to have it log on to the ftp server. if it connects, then do nothing. else msgbox an error. ... - Sat, Aug 28 2004 4:09 pm 1 message, 1 author http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/43caea3e82c7a9b8 Weird form behavior - 2 new ---------------------------------- ... This is a common problem in that some behavior occurs only in apps run from the IDE and some behavior occurs only in apps run standalone. ... My guess is that something in these - possibly the MSComm1 reference - is causing your form to re-instantiate itself, retriggering a load event. ... " END" kills the program immediately without allowing anything to complete or any event handlers to be called. Clicking on the close box causes a terminate event to occur. ... - Sat, Aug 28 2004 8:44 pm 2 messages, 2 authors http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/b5b6233d59baffd6 How can I delete the LDB file...? It didn't delete itself because a remote user didn't do a proper shutdown. - all new ---------------------------------- ... You should probably have a hidden form in your project that closes the connection(s) to the DB in the form's close event. Sounds like the users are somehow able to quit improperly and cause the database connection to not be closed. Once there are no users of the file, Access should delete the LDB file for itself. ... - Sat, Aug 28 2004 8:51 pm 1 message, 1 author http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/f5ac80a48894d98b read an excel file without specifying the entire path?? - all new ---------------------------------- To get an excel file in my hard disk, I have to specify the exact location where the file is stored. For example, to get "InputFile.xls" I need to say Set wkbObj = GetObject("C:\My Documents\Programming\VB\Experiments\InputFile. xls") If this excel file is in the same folder as the program that I am running, is there any short cut to access the file without specifying the entire path? I tried simply Set wkbObj = GetObject("InputFile.xls") but obviously, this doesn't work. Thank you in advance for your help.... - Sat, Aug 28 2004 10:48 pm 1 message, 1 author http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/50bf74c99246b70a ======================================================================= You received this message because you are subscribed to the Google Groups "comp.lang.basic.visual.misc". comp.lang.basic.visual.misc http://groups-beta.google.com/group/comp.lang.basic.visual.misc Change your subscription type & other preferences: * click http://groups-beta.google.com/group/comp.lang.basic.visual.misc/subscribe Report abuse: * send email explaining the problem to [EMAIL PROTECTED] Unsubscribe: * click http://groups-beta.google.com/group/comp.lang.basic.visual.misc/subscribe ======================================================================= Google Groups: http://groups-beta.google.com ------------------------ Yahoo! Groups Sponsor --------------------~--> $9.95 domain names from Yahoo!. Register anything. http://us.click.yahoo.com/J8kdrA/y20IAA/yQLSAA/BCfwlB/TM --------------------------------------------------------------------~-> Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/kumpulan/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
