MSGROUPS.NET | Post Question | About | Groups | Contact | Register | Login



microsoft public excel misc (9093)

microsoft public outlook general (7339)

microsoft public excel programming (6569)

microsoft public word docmanagement (5607)

microsoft public excel worksheet functions (5040)

microsoft public access (4768)

microsoft public windowsxp general (3908)

microsoft public windows vista mail (2978)

microsoft public windows vista general (2805)

microsoft public windows live mail desktop (2724)

microsoft public office misc (2268)

microsoft public access queries (2122)

microsoft public powerpoint (2030)

microsoft public greatplains (2009)

microsoft public windows server sbs (1984)

microsoft public dotnet languages csharp (1964)

microsoft public access formscoding (1932)

microsoft public sqlserver programming (1878)

microsoft public mac office entourage (1868)

microsoft public access forms (1798)

microsoft public internetexplorer general (1706)

microsoft public mac office word (1699)

microsoft public access modulesdaovba (1691)

microsoft public outlook calendaring (1436)

microsoft public dotnet framework aspnet (1381)

microsoft public project server (1356)

microsoft public windowsupdate (1353)

microsoft public sqlserver server (1339)

microsoft public project (1285)

microsoft public excel (1277)

microsoft public access reports (1249)

microsoft public windowsxp help and support (1204)

microsoft public exchange admin (1185)

microsoft public windowsmedia player (1165)

microsoft public mac office excel (1160)

microsoft public windows server general (1100)

microsoft public dataprotectionmanager (1096)

microsoft public outlook (1035)

microsoft public word vba general (1029)

microsoft public vb general discussion (1012)

microsoft public outlook contacts (953)

microsoft public windows server active directory (930)

microsoft public development device drivers (923)

microsoft public dotnet languages vb (843)

microsoft public outlook installation (820)

microsoft public word newusers (808)

microsoft public word pagelayout (783)

microsoft public windowsce platbuilder (757)

microsoft public excel charting (733)

microsoft public publisher (728)

microsoft public excel newusers (711)

microsoft public windows powershell (697)

microsoft public pos (660)

microsoft public vc mfc (651)

microsoft public access gettingstarted (630)

microsoft public word application errors (629)

microsoft public sharepoint general (604)

microsoft public office setup (584)

microsoft public onenote (556)

microsoft public sqlserver reportingsvcs (550)

microsoft public outlookexpress general (539)

microsoft public scripting vbscript (533)

microsoft public frontpage client (532)

microsoft public access tablesdbdesign (529)

microsoft public windows 64bit general (516)

microsoft public outlook program vba (502)

microsoft public windows live messenger (434)

microsoft public windowsxp hardware (416)

microsoft public money (397)

microsoft public windowsxp basics (367)

microsoft public dotnet general (316)

microsoft public windows mediacenter (300)

microsoft public windows inetexplorer ie6 outlookexpress (276)

microsoft public mac office (272)

microsoft public win98 gen discussion (243)

microsoft public sharepoint setup and administration (225)

microsoft public windows vista hardware devices (183)

microsoft public windows vista music pictures video (178)

microsoft public nntp test (164)

microsoft public windows vista performance maintenance (148)

microsoft public dotnet framework (148)

microsoft public visio (128)

microsoft public access 3rdpartyusrgrp (68)

microsoft public access conversion (64)

microsoft public dotnet xml (58)

microsoft public pt windowsxp (38)

microsoft public access developers toolkitode (34)

microsoft public windows live photogallery (32)

microsoft public dotnet faqs (19)

microsoft public dotnet framework aspnet datagridcontrol (16)


microsoft.public.vb.general.discussion Post New
Items(1007) /21 Next >> Last >|
Subject Posted Replies From
Error 217

I get a popup messagebox when closing my app in the IDE. Error 217 at xxxxxx (memory address). I have no user defined error codes. I cannot find it in help. google is no help either. Any ideas?

9/8/2010 10:57:48 PM 0 BeeJ <nos...@spamfree.com>
Error 217

I get a popup messagebox when closing my app in the IDE. Error 217 at xxxxxx (memory address). I have no user defined error codes. I cannot find it in help. google is no help either. Any ideas?

9/8/2010 10:57:56 PM 3 BeeJ <nos...@spamfree.com>
Old vb6 / mdb app with "Could not delete from specified tables" er

hi all, I am moving an old vb6 application from a W2K to an XP machine. If I run the app from the XP box and with the .mdb file also on the XP box, I get the above error. If I run the app from the XP box but with the .mdb file on the W2K box, I do not get the error. Any idea where I could start with this one? Thanks for any help!

9/8/2010 9:27:04 PM 2 =?Utf-8?B?QW5keUs=?= <An...@discussions.microsoft.com>
Aero Glass Control Text Problem

Hi Everyone. I am using Vista, 7 Aero glass in my app. I am able to apply it using the DwmExtendFrameIntoClientArea API, but there is a minor problem, the text on controls appears transparent. someone suggested me that I should use SetLayeredWindowAttributes Me.hWnd, 0, 0, LWA_COLORKEY it works, now the text is no longer transparent but this creates another problem. I can no longer click on the form, the mouse events gets passed through. anyone have a fix for this? Thanks in advance. ' here is the code. ' a form with a command button and this code Option Explicit

9/8/2010 8:50:14 PM 9 "Abhishek" <u...@server.com>
Sending POP 3 email

Once I read a POP 3 email using Winsock, how can I send an email (whose content is the POP 3 email that I just read) out in the POP 3 server using Winsock ? Thank you

9/8/2010 6:32:08 PM 1 "fniles" <fni...@pfmail.com>
Funky Font Enumeration

Just noticed something really odd. If you enumerate fonts using standard VB methods, a bunch of them are returned twice, once with a leading ampersand. What's up with that? Repro: Public Sub Main() Dim i As Long, s As String Set s = New CStringBuilder For i = 0 To Screen.FontCount - 1 Debug.Print Screen.Fonts(i) s = s & Screen.Fonts(i) & vbCrLf Next i Clipboard.Clear Clipboard.SetText s End Sub You'll see things like this in the output: <...snip...> Adobe Caslon Pro Bold Adobe Caslon Pro Adobe F

9/8/2010 6:16:45 PM 25 Karl E. Peterson <k...@exmvps.org>
Pass udt to class

It seems I have run into a new problem now... I want to feed a class with a UDT. The UDT is declared publicly in a module. Is that not possible? It says something like "Only publicly declare user-defined types can be..." Does anybody know this message?

9/8/2010 6:11:08 PM 2 Anders Jorgenson <a.j...@lycos.com>
Cant solve this.

Hi, Please helpme I want to split this line: string line = "Davis , Jones, Beckett , Jordan , Kennt " into an array of their trimmed versions: "Davis" "Jones" "Beckett" "Jordan" "Kennt" I've tried several soluctions but none resolves it. Dim linea As String = "Davis , Jones, Beckett , Jordan , Kennt " Dim delimiter As String = "," Dim nombress As String() = linea.Split(delimiter.ToCharArray()) Array.ForEach(nombress, Function(p) p.Trim()) ' does not work Array.ForEach(nombress, Function(p) WriteLine("action: -" & p & " - ")) Array.Conv

9/8/2010 1:08:22 AM 9 "SIS01" <si...@msf.org.mx>
Strange ActiveX-Exe behaviour

I have an ActiveX exe and I am having a hard time to have it raise an event. My problem is that the class of the ActiveX-Exe does not receive the withevent from the form. Is that a known problem? What am I missing? When I instantitate the ActiveX-Exe on a form I have the following code: Option Explicit Private WithEvents d As DeviceNotifier6.clsDeviceNotifier Private Sub d_DeviceChanged() Stop End Sub Private Sub Form_Load() Set d = New DeviceNotifier6.clsDeviceNotifier End Sub The code of my ActiveX-Exe looks like this '*** clsDeviceNotifier

9/7/2010 11:32:26 AM 4 Anders Jorgenson <a.j...@lycos.com>
Setup VB6 COM application

Hello, I have created VB6 application and my Server will be running on remote machine. I have Used Clireg32 command to register remote server. But I am not able to create object of the server. I get Error 70 Permission denied. I have no clue what is happening. PLease help. Let me know for more information. Thanks Harsha

9/7/2010 1:55:56 PM 0 Harsha <sriharsha.ga...@gmail.com>
POP 3 attachment

Using winsock, how can I read POP 3 email attachment (the attachment is an ..EML file) ? Thank you

9/6/2010 7:55:34 PM 6 "fniles" <fni...@pfmail.com>
create desktop shortcut when app installed w/P&D installer for XP,Vista,W7

I want to modify the installer to create a desktop shortcut when a program is installed. I found this discussion http://www.vbforums.com/showthread.php?t=451311 that explains, "by adding just 4 lines of code, the Packaging & Deployment Wizard and Setup1.vbp can be easily modified to create Desktop shortcuts, as well as Start Menu shortcuts." http://www.freevbcode.com/ShowCode.asp?ID=3650 I was wondering how this looked to people here, and if there are other approaches that might be better.

9/6/2010 2:35:15 AM 18 Mike S <ms...@yahoo.com>
POP 3 mails

Can I use Winsock to read POP 3 mails ? When I do this, Winsock1.State stays at 6 (connecting), and it is never 7 (connected). Winsock1.Connect "mail.myservermail.com", 110 Do While Winsock1.State <> 7 Loop Winsock1.SendData "USER myuser@company.com" Winsock1.SendData "PASS mypwd" If I go to a browser and enter "mail.myservermail.com", it goes to that website right away and I can enter the user name and password. Why my winsock state stays at 6 (connecting) and never 7 (connected) ? Is the port number for POP 3 emails always at 110 ? Is winsock the correct

9/5/2010 8:09:32 PM 5 "fniles" <fni...@pfmail.com>
Any "quirsk" with the timer control

Folks I'm putting a timer on the main form of my utility. Are there any quirks I should know about? I ask because there is an interesting quirk with the timer event in Access that developers need to know about. Tony -- Tony Toews, Microsoft Access MVP Tony's Main MS Access pages - http://www.granite.ab.ca/accsmstr.htm Tony's Microsoft Access Blog - http://msmvps.com/blogs/access/ For a convenient utility to keep your users FEs and other files updated see http://www.autofeupdater.com/

9/5/2010 6:51:33 PM 16 Tony Toews <tto...@telusplanet.net>
DLL fight

Hi all! I am struggeling with a hardware company. They provide their own drivers and .dll files, but their .dll files are buggy. People need to downgrade to make them work reliably. I am distributing the downgraded .dlls with my application, and luckily I am allowed to do so. But I am afraid that people might first install my app, then the dlls from the hardware driver CD. Of course they register their dll files in the setup process. The dlls consists of 2 dlls files, both have to be registered. The first has to be referenced in VB6. The other one is internally call

9/4/2010 7:44:22 AM 53 Igor Bolschewski <angryco...@hotmail.com>
Calling function pointers

Hello all, I was looking at the Dynamic Array functions exported by commctl32.dll (prefixed DPA_ and DSA_) http://msdn.microsoft.com/en-us/library/ff485930%28VS.85%29.aspx Although there doesn't seem to be anything there that really couldn't be achieved in VB, I was still slightly disappointed that some of the more interesting functions (DPA_Merge for example) are exported by ordinal only. I'm assuming that this means those ones aren't callable from straight VB. Robert

9/3/2010 5:04:23 PM 9 Robert <non...@noserver.com>
Call for votes: New german discussion group for VB.classic in de.*

Hi, Folks! Like other MS newsgroups the german VB.classic discussion group microsoft.public.de.vb has been closed some months ago. Due to the lack of an alternate german discussion group for VB.classic some of the participants have migrated to english discussion groups for VB.classic. This message mainly addresses these people as well as all other participants in the current group which over the years from time to time have participated in microsoft.public.de.vb. Some months ago a procedure (RfD = Request for discussion) has been started in de.admin.news.groups by some

9/3/2010 4:01:38 PM 8 "Thorsten Albers" <albersS...@THISuni-freiburg.de>
Deploy VB application

Hi All, I have created VB 6 application. Application has - .exe files - .dll files - Server dll Files. COM is setup in server with server dll files. For client .exe files and middle layer .dll files has to be copied and there should be connection between client and server. I have exported proxy from server and installed it in client PC. I have created setup and deployment project using VB tool. Files are copied as expected. But client is unable to create object of COM server class. That is failing when I execute line CreateObject("DLLName.Classname"). That means connect

9/3/2010 11:35:59 AM 1 Harsha <sriharsha.ga...@gmail.com>
Borland Delphi 7 Personal Edition

Its Free, No Piracy 64MB http://rapidshare.com/files/416778760/Delphi7.zip.html Delphi 7 Personal Edition allows new developers to create high-performance Windows 98, Windows NT? and Windows 2000 applications for personal, non-commercial use. Complete with a 32-bit, optimizing, native code compiler, online help and examples, Delphi 7 Personal Edition shortens development cycles and helps increase developer productivity. The Personal Edition also features a live two-way visual application design environment and the Visual Component Library (VCL) of more than 85 pre-built and reusa

9/3/2010 8:01:14 AM 4 "VB" <...@b.c>
Looking for VC6 newsgroup

I am normally using VB6 but this time I need to create a DLL from an ..h-file and I guess I can only do this in VC6/C++. Because of this I would like to know what the current (if there is still one at all) VC6 newsgroup is. I don't want to use VC.NET. Thanks in advance. Have a nice day! Karl

9/2/2010 9:20:10 AM 3 Karl Steffen <k.stef...@gmx.de>
What Is the User Path for Deployment Similar to $(AppPath)?

Okay, you can have files installed into directories such as $(AppPath), $(WinSysPath), and so forth, but what is the magic word to deploy files into the User's path, that is C:/Documents and Settings/username/Application Data and its equivalent in Vista/Windows 7? I need to put user-specific files in place but can't figure out the magic name. Anyone?

9/2/2010 7:22:35 PM 8 sfdavidka...@yahoo.com (David Kaye)
nested select problem

Dim a As Double Dim b As Double Dim c As Double a = 36.8 b = 44 select case a case 36.6 to 37 MsgBox "???" Select Case b Case 42 To 43 c = 26 MsgBox "hmm"'<<<<< this shud be shown as this is the point but it isnt giving me this msgbox :S :S Case 44 To 45 c = 26.5 Case Else End Select End Select what am i doing wrong?

9/3/2010 3:24:51 AM 3 Sabbir Ahmad <sabbirahmad....@gmail.com>
Global class and WithEvents

Hello! I have a class which I needed to make global because it is used in/ on different forms, and the class opens and closes port handles, so I cannot simply make a few more copies of them. However, on some of the forms, I would need a notification about events that the class handles. Normally in my form I would dim the class and receive the events by RaiseEvent like this: private withevents m_Class as Class1 But since the class is global, I cannot do this. Does somebody have any ideas? I don't want to poll the class with a timer to query the event... Thank you!

8/31/2010 7:25:15 PM 16 Alexandros Peropulous <perop...@gmail.com>
Ole Zorder

Hello, Is there a way to set the Zorder property for an Ole component in a vb form to work at Runtime? The property exists but seems idle... Thanks Avi

8/31/2010 6:52:10 PM 0 avi <avi...@bezeqint.net.il>
WTF?? KeyDown Event

Help!!! Windows 7, VB6 I have the following code with a mysterious problem. Hitting keys A thru Z or numbers 0 thru 9, assign the correct results the variable ch below. Punctuation is wrong. For example, the / key returns a keycode of 191. I'm sure there is a simple fix, but it eludes me! ' ' ' Private Sub rtbDesc_KeyDown(KeyCode As Integer, Shift As Integer) Static keyStroke As Long Dim sp As Long Dim ch As String * 1 If KeyCode <> 8 Then ' don't count the BS

8/31/2010 5:51:03 PM 3 John Simpson <jasimp.nos...@earthlink.net>
Advanced Optimization Options

are 'Advanced Optimization' Options Inherited? like I have a app in which I have set these options and in it I am using 3rd party control of which I don't have source code nor do i know if they are using any of these options. so if I set some advanced optimization options will those also apply to that control?

8/31/2010 3:30:51 PM 0 "Abhishek" <u...@server.com>
ReactOS

http://en.wikipedia.org/wiki/ReactOS http://www.reactos.org ReactOS (React Operating System) is an open source computer operating system intended to be binary compatible with application software and device drivers made for Microsoft Windows NT versions 5.x and up (Windows 2000 and its successors). --- VB6 Running on ReactOS http://www.reactos.org/media/screenshots/2008/ros_034_vb5.jpg I have tried this and most applications works fine, a bigger threat to MS than Linux.

8/31/2010 5:27:02 AM 2 "Abhishek" <u...@server.com>
Distibution of VB6 program

I would like to download a vb6 program to whomever requests it on the web. Is there a standard control, or app that can be called to accomplish this. It seems all downloads over the internet work similarly. A user requests the download of something, specifies where to store it and finally if they want to run the install on their computer. Where can I get this program? thank you for any advise.

8/31/2010 2:31:03 AM 28 =?Utf-8?B?amVycnl5cw==?= <jerr...@discussions.microsoft.com>
Citrix and WM_WTSSESSION_CHANGE

If one of you has Citrix Presentation Server, which is based on Windows 2003 Server, can you try this software and post the result? I already tried this on Citrix XenApp, which is based on Windows 2008 Server. XenApp is the new name for Citrix Presentation Server. I don't have the 2003 version server, and I need to run the following code to see if it sends WM_WTSSESSION_CHANGE to my app when a single published application is started. In reality, I have a service running that sees this message through HandlerEx() function, but I don't think that I would get the customer cooperatio

8/30/2010 4:38:26 PM 0 "Nobody" <nob...@nobody.com>
Lockup Continues

So I moved all the code to a different PC. I made zero progress getting anything to work on the other PC. Now the ActiveX stuff all instantiates and I can talk to all of them. However, now some new ? related / unrelated ? problems. 1) At unload all ActiveX close properly except one. If I step it through ActiveX EXE Class_Terminate using the .vbp from the main app IDE I get no errors. If I run the main in the IDE and the ActiveX exe compiled, then when I set AxX10 = Nothing I get an error (on ActiceX only). But there is an error handler in the routine and it does not go to the err

8/30/2010 4:04:09 AM 7 BeeJ <nos...@spamfree.com>
Showing/Using Sort arrows on vb6 listviews?

Hi All I've always shied away from what seems to be an obviouls feature of the listview, but I could never figure out how to show the up or down sort arrows on a column header in a VB6 listview. I could do it easy in HTML, but it seems like a heavy subject. Problem is people always comment that they never know which column or which way a list of info is sorted in my app!! :0) Is there an easy way to provide this feature in a listview for a newbie like me? :0) Thanks

8/29/2010 4:02:07 PM 6 "Mojo" <ple...@dont.spam.com>
Changing the font style, fore colour and back colour of an individual cell in a VB6 listview

Hi All Again, another I've always left rather than sorting is the ability to style (bold, underline, italic), colour the text and colour the background of the text in a vb6 listview CELL. Are any of these permitations possible? Am I better using an MS Flexgrid and hidden textbox (for the edit bit)? Thank you.

8/29/2010 4:04:22 PM 5 "Mojo" <ple...@dont.spam.com>
Why doesn't this work (sendmessage)

Hi, Is there a reason why I can't send and receive a messages with a negative number using SendMessage? The Windows common controls use negative notification messages and I've never had a problem receiving those, so the problem has to be with the Sending side of things. What am I missing? Thanks '**** FORM1 ****' Option Explicit Private Declare Function SendMessage Lib "USER32" Alias "SendMessageA" ( _ ByVal hWnd As Long, ByVal Msg As Long, wParam As Any, lParam As Any _ ) As Long Private Declare Function SetWindowSubclass Lib "comctl32" ( _ ByVal hWnd As Lo

8/29/2010 3:51:14 PM 9 Robert <non...@noserver.com>
An outgoing call cannot be executed...

Hello! I am dealing with an ActiveX-Exe. I have put an MSCOMM control into it, because I needed it be out-of-proc. Automation error (-2147417843) An outgoing call cannot be executed because the application is forwarding an input-synchronized call. I simply don't understand the meaning of it :-) Thanks! Alex

8/29/2010 8:40:44 AM 5 Alexandros Peropulous <perop...@gmail.com>
Radio Button Bug?

Hi, I have 6 radio buttons (control array) on a form, the user selects the option and click the OK button and there are two procedures in my code to enable and disable all controls until the process is complete. but when I disable all the radio buttons the last radio button gets automatically selected. I dont know why its happening. there is no other code for the radio buttons except in the DisableControls procedure. Private Sub DisableControls() Dim i As Integer For i = 0 To optFormat.Count - 1 optFormat(i).Enabled = False Next End Sub anyone ex

8/29/2010 2:14:50 AM 19 "Abhishek" <u...@server.com>
file and folder permissions

Being a hobbyist I don't often get involved with file permissions when my code is run on other machines. I do know a few things about it, for example the behaviour of code running in a folder in the main Program Files folder and how it interacts with the current user's VirtualStore folder, but that's about all I know and I'd appreciate a little help on a specific matter. I know about it normally being best to write user data files only to the current user's data folder (for which I would use CSIDL_LOCAL_APPDATA), but I have written a little VB6 program that is intended to be run

8/28/2010 4:11:49 PM 26 "Mike Williams" <M...@WhiskyAndCoke.com>
BigEndian wav bytes

Hello! I have some bytes which are from a wav file. They are without a header. Normally, I simply add the header, the file size, and I am done, I have a complete wav file. But this time, my bytes are from a BigEndian wav file. Does anybody know how to convert them to LittleEndian? Thanks a lot for help! Alex

8/28/2010 3:48:43 PM 8 Alexandros Peropulous <perop...@gmail.com>
Lockup

My app compiles with Ctrl-F5 then locks up. My app compiles to an EXE. When run it locks up and does not fully start. Ctrl-Break does nothing. The Stop button is inactive. I use Process Explorer to kill it. References are all there. In the IDE the first lockup occurs at the Set GetObject statement for an late bound ActiveX EXE. It just hangs there. Process Explorer shows that it started the ActiveX EXE but there is no CPU. This is as expected. This ActiveX EXE does little until it is talked to later. I get the Component Request Pending Switch To / Retry box that does noth

8/27/2010 11:57:42 PM 10 BeeJ <nos...@nowhere.com>
Google is the new AntiChrist

Come back Micro$oft. All is forgiven (well, some of it is!). Google is the new AntiChrist :-) Whilst developing a VB6 program (just to keep this on topic!) I installed Google Chrome web browser. I did not like it and so I uninstalled it, and upon doing so I discovered that all web page links (hyperlinks or whatever you call them) in MS Word and MS Publisher and various other applications failed to work, popping up a message to the effect that the operation had been cancelled due to restrictions in effect on this computer and that I should contact my Administrator. So, I took

8/27/2010 9:13:02 PM 52 "Mike Williams" <M...@WhiskyAndCoke.com>
convert vb to JS

Hi Am trying to convert a vbscript programme i wrote in javascript with little success!! can anyone help? script as follows function calculatecluster() { var bestmatchedcluster; var secondbestmatchedcluster; var clusterdefarray(21) clusterdefarray(0) = ("CARE CLUSTER 0: Variance"); clusterdefarray(1) = ("CARE CLUSTER 1: Common Mental Health Problems (Low Severity)"); clusterdefarray(2) = ("CARE CLUSTER 2: Common Mental Health Problems (Low Severity with greater need)"); clusterdefarray(3) = ("CARE CLUSTER 3: Non Psychotic (Moderate Severity)"); clusterdefarray(4

8/27/2010 4:33:04 PM 5 =?Utf-8?B?QXRpc2hvbw==?= <Atis...@discussions.microsoft.com>
Calculating a checksum

Hi all can someone please help me convert this C sample into VB6 please WORD CalcTitleChecksum( char* pszTitle, // A pointer to the name of the savegame int cb) // set to either 39 or 47 for TTO or TTD savegames { WORD sum = 0; for(int i=0; i<cb; i++) { sum += pszTitle[i]; sum = (sum << 1) + (sum >> 15); } return sum ^ 0xAAAA; } It comes from http://www.ttdpatch.net/chris_becke_ttdlx.html#hack I have tried Dim lCalculatedChecksum As Long Dim lChecksum As Long Dim Data() As Byte Dim tl As New CTwiddleLong For i = 0 To 46

8/27/2010 2:40:50 PM 3 Leo <ttdh...@gmail.com>
Create Shortcut

OK, I googled and found that there are at least three methods of creating a shortcut that I can understand. The fourth I am not to sure about. I want to create a shortcut in the SendTo folder for my app. Command$ will have filenames to work with. So what are the pros and cons of 2 and 3. I already read the cons of 1. And 4 may be beyond me without sample code to look through. 1) use fCreateShellLink (uses vb6stkit.dll). 2) use SHAddToRecentDocs to create the shortcut in the RECENT folder then FileCopy to the desired folder. 3) use WSH to create the shortcut in the app fol

8/27/2010 12:44:34 AM 3 BeeJ <nos...@nowhere.com>
USB-Device plug/ unplug WindowMessage

Hello! Does anybody know how to get a message (WindowMessage?) when the user plugs/unplugs a USB device? Thank you! Alex

8/26/2010 5:59:07 PM 4 Alexandros Peropulous <perop...@gmail.com>
Datagrid Cell Locked

Hi: I have developed an app that has sevearl data grids on different forms. They all were working. One grid has several columns with most locked and the operator can only change the data in one column. (that one column is not "locked"). The form has worked for weeks, but now (I don't know why), the operator cannot enter the cell...it is as if the cell is locked. I have gone to the grid (in the developement environment) and insured that the column is not locked. I have also added a line of programming to the refresh action: "me.grddaily.columns(5).locked = False" This

8/26/2010 2:11:03 PM 4 =?Utf-8?B?SlAuLi4=?= <...@discussions.microsoft.com>
PAUL CLEMENT (MVP) IS A TROLL

Does anybody know who I can write to at Microsoft in order to ask them to stop one of their own MVPs, PAUL CLEMENT, from trolling this newsgroup. He is a disgrace to himself and he is both a disgrace and a liability to Microsoft and he is bringing the Microsoft MVP system into disrepute. Mike

8/26/2010 1:50:08 PM 30 "Mike Williams" <M...@WhiskyAndCoke.com>
OT: not VB6 but Funny...

This appeared today in an Australian new report: http://www.news.com.au/business/breaking-news/microsoft-stunt-backfires-as-half-naked-meter-maids-turn-up-for-teched-conference/story-e6frfkur-1225910543510

8/26/2010 7:58:59 AM 0 Andrew <ael...@melbpc.org.au>
Fastest (best) way to Extract Daily Figures

I have a "real-time" data structure in the following format: Type ThisDataInfo DT As Date Amount As Single End Type The above structure data is minute by minute. I would now like to get daily information. Would it be better to loop through the data once at startup and build another structure of just daily data and then track the current day - or - would it better to incorporate a flag (e.g. FlagDateEnds as Boolean) in the original structure so that the crossover (old date to new date) can be easily found without having to compare dates?

8/25/2010 7:27:13 PM 10 "David" <NoWh...@earthlink.net>
What can i say, lol

http://www.youtube.com/watch?v=JeUzzHLo5Gw

8/25/2010 7:21:26 PM 1 "Abhishek" <abhishek0...@hotmail.com>
Tell a friend

Hi, I have a problem with my Tell a Friend feature, here: http://www.lochaberhighlandestates.com/tell_a_friend.php?products_id=&x=7&y=4 The link seems to be wrong. If anyone can help me I'll be grateful, my email address is sales@lochaberhighlandestates.com

8/25/2010 2:08:09 PM 2 =?Utf-8?B?TG9jaGFiZXI=?= <Locha...@discussions.microsoft.com>
Reading Binary Files

I am trying to learn how to read binary files but can not seem to find much out there. Can someone give me an example. I think for what I am trying to read, a Byte array is best so if someone can give me a generic example reading from a binary file into a byte array then that would be wonderful. -- ClassicVB Users Regroup! comp.lang.basic.visual.misc Free usenet access at http://www.eternal-september.org

8/25/2010 12:39:24 PM 2 Leo <ttdh...@gmail.com>

Pages: 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21









Newest Articles

Window Live Mail Auto Forwarding
36 min. 28 sec. ago

Win32.Gael.3666 got past Windows Defender
3 hour 40 mins ago

ANN: IT COULD GO DOWN INTO THE 40's TONIGHT HERE IN THE WINDY CITY SUBURBS!
4 hour 8 mins ago

ANN: THE PRICE OF SPEEDING TICKETS IS GOING UP HERE IN ILLINOIS!
4 hour 12 mins ago

ANN: OBAMA WANTS 2 SPEND ANOTHER 50 BILLION!
4 hour 24 mins ago