Messages - parkint [ switch to compact view ]

Pages: prev1 ... 14 15 16 17 18 [19] 20 21 22 23 24next
91
Developer's Corner / Re: Regex help, please?
« on: February 09, 2010, 06:18 PM »
The free Expresso is my tool of choice.  :D
I just downloaded it, based on your recommendation here.  Thanks.

92
Developer's Corner / Roaming among the Dinosaurs
« on: February 09, 2010, 12:17 PM »
I am having trouble and hope one of my new-found friends (here on DC) can help.
In unmanaged C++ code, inside a simple DLL (for use with a proprietary interface), I need to access a COM port and read the data stream.
I can handle all the 'interpolation' of the data, but am having a real struggle getting access to the COM port; which, by the way is actually 'virtual' from a Bluetooth device.
Is there anyone out there with experience in this realm who is willing to help me?
I have scoured the Web for samples but none work as expected.

Inside this construct, I need to connect and read from a COM port:


BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD
               fdwReason,LPVOID
               lpvReserved){
                  switch (fdwReason)
                  {
                  case DLL_PROCESS_ATTACH:
                     /* Init Code here */
                     /* If there is something you need to do before the functions in this
                     * Library can be used, perform it here and return a true (or false if it fails) */
                     MessageBox ( NULL, L"Process Attach", L"DXExternal DLL", MB_OK);
                     break;
                  case DLL_THREAD_ATTACH:
                     /* Thread-specific init code here */
                     MessageBox ( NULL, L"Thread Attach", L"DXExternal DLL", MB_OK);
                     break;
                  case DLL_THREAD_DETACH:
                     /* Thread-specific cleanup code here.
                     */
                     MessageBox ( NULL, L"Thread Detach", L"DXExternal DLL", MB_OK);
                     break;
                  case DLL_PROCESS_DETACH:
                     /* Cleanup code here */
                     /* This is called as the DLL is being unloaded (most likely when your
                     * application is shutting down. */
                     MessageBox ( NULL, L"Process Detach", L"DXExternal DLL", MB_OK);
                     return false;
                     break;
                  }
                  /* The return value is used for successful DLL_PROCESS_ATTACH */
                  return true;
}

Thanks, in advance.

93
OUTSTANDING work!

94
Finished Programs / DONE: C.S.B.A.G.
« on: February 05, 2010, 03:26 PM »
This is an application I wrote many years ago.  As a new member on DC I wanted to share this.
It is an 'old idea' that is now new again.

The Customizable Slithering Button Application Generator is a useless little application you can use to pull a harmless prank on your friends.
It is small, light, fast, requires NO EXTERNAL LIBRARIES.

It is not clear exactly where/how to post something like this.

95
Cool.  Let's come up with a name for this and I'll package it up as a regular Skwire Empire application.
Off To Sleep?
-cranioscopical (January 31, 2010, 02:31 PM)
I really like that name!!
Or, perhaps, "Off to Snooze"

Pages: prev1 ... 14 15 16 17 18 [19] 20 21 22 23 24next
Go to full version