What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » Search » Results

Search Results
Subject Author Forum Time
RE: WLM 2009 wont stop freeeezing
00023FCA is in the row marked 00023FC0 it should start on the tenth byte on that row (hence why it's got A. 0xA=10) This modifies a function that sends data over a UDP based socket. In my case, for some reason the call to send on the socket was fai...
TheSteveSkype & Live Messenger03-30-2009 at 09:57 AM
RE: WLM 2009 wont stop freeeezing
Well, for lack of other options, if you want you can try and do this: This might help, but it might not. 1. Make sure that you are using Windows Live Messenger version [b]14.0.8064.206[/b] 2. Open the messenger folder. Commonly this is C:\Program F...
TheSteveSkype & Live Messenger03-30-2009 at 12:53 AM
RE: WLM 2009 wont stop freeeezing
Does it only freeze when a conversation window is opened? If so, it's probably a bug in messenger that hasn't been fixed. If this appears to be your problem, I maybe able to work out a hex edit that might fix it. Let me know
TheSteveSkype & Live Messenger03-29-2009 at 03:47 PM
RE: Virus? how does it even exist?
If you open the command prompt and type c:\folder\you\are\in> e: does it change to drive e or say invalid drive?
TheSteveTech Talk03-27-2009 at 03:00 PM
RE: [?] RtlMoveMemory: file not found
RtlMoveMemory does not free the pointer. You still have to manage memory yourself. The only difference between RtlMoveMemory and RtlCopyMemory is that RtlMoveMemory is designed to work on two buffers that overlap each other. Other than that, they a...
TheSteveScripting03-26-2009 at 01:06 AM
RE: [?] RtlMoveMemory: file not found
Is there a reason that you're using RtlMoveMemory rather than RtlCopyMemory? If the two buffers don't overlap (which they don't) you should not be using RtlMoveMemory.
TheSteveScripting03-25-2009 at 12:38 AM
RE: Digitally sign application
You can create your own self signed certificates with OpenSSL, however if I recall correctly, the certificate authority's certificate needs to be inserted in to the computer's root store in order for it to work correctly. Alternatively, you can buy...
TheSteveTech Talk02-09-2009 at 03:10 PM
RE: Coding some c. (FFmpeg/libavcodec)
For it to work on the PSP, you need to compile the library in a machine language that the PSP understands. Which means you'll need to either need to figure out how hack the package in to use the psptoolchain, or find someone else who's already por...
TheSteveTech Talk02-09-2009 at 03:01 PM
RE: Coding some c. (FFmpeg/libavcodec)
Have you compiled FFmpeg for the PSP's processor? (rather than the typical intel processor)
TheSteveTech Talk02-09-2009 at 01:03 AM
RE: To anyone with Windows installed in a foreign language...
Still "Program Files" in the Japanese version. However things like "Desktop" and "Start Menu" have been renamed to the Japanese equivalent. If you're trying to programmatically locate a program, there are generally registry keys which tell ex...
TheSteveTech Talk01-14-2009 at 12:52 AM
RE: Convert External HDD from FAT32 to NTFS
You're welcome :). Glad to hear you got it to work.
TheSteveTech Talk12-22-2008 at 07:30 AM
RE: Convert External HDD from FAT32 to NTFS
No, but that may be that the USB drivers aren't loaded yet and the system doesn't even see the drive (which would explain why it wouldn't even be able to determine the file system.)
TheSteveTech Talk12-22-2008 at 05:35 AM
RE: Convert External HDD from FAT32 to NTFS
When you switch to a drive in CMD, it will open a handle to the drive. So when you attempt to change the file system on drive j:, since CMD has an open handle, it fails. Try to run the command without switching to the drive first. [code]c:\Program F...
TheSteveTech Talk12-22-2008 at 04:32 AM
RE: Create Windows Live Messenger 9 Skins.
Yes, we know. Perhaps I should have been more specific. You can't change the layout until we finish documenting the new system. (It's not technically XML anymore, but can be converted to and from XML.)
TheSteveSkinning12-18-2008 at 12:38 AM
RE: A little fairie told me this...
It would be fairly difficult to remove the entire UI system. This is not just some simple hack. This is the equivalent of modifying the XML for the old builds.
TheSteveSkype & Live Messenger12-17-2008 at 12:30 AM
RE: Create Windows Live Messenger 9 Skins.
At first glance, the newest build of messenger appears to have removed the DUIDebug. In this version UIB has changed from version 4 to version 5 bringing a shuffle of the "machine code" used to generate the UI. So I don't currently have any doc...
TheSteveSkinning12-16-2008 at 06:47 AM
RE: python reg read
Forgive my lack of python experience, but I think it would look something like this: [code]iesettings = _winreg.OpenKey( _winreg.HKEY_CURRENT_USER, "Software\\Microsoft\\Windows\\CurrentVersi on\\Internet Settings" ) value, t...
TheSteveTech Talk12-16-2008 at 02:59 AM
RE: Serious help. Hacked?
I would recommend disconnecting the internet (physically if required). Then killing the program.
TheSteveTech Talk12-09-2008 at 04:35 AM
RE: ssh, putty not flexiable enough
I don't know what "\l" is supposed to be(may be my lack of python knowledge), but the file that you attached to the other thread has just "\n"(0x0D) at the end of each line (unix style). Normal windows style is "\r\n" (0x0A 0x0D).
TheSteveTech Talk12-08-2008 at 12:15 AM
RE: [Request] Titlebar of App -> PSM
In that case, it's a just a matter of getting the window handle to your desired window by calling FindWindow, then call GetWindowText to get the actual text.
TheSteveScripting12-07-2008 at 04:06 AM
RE: [Request] Titlebar of App -> PSM
From where I see it, there are three ways to implement something like this: 1. Set a timer (user customizable perhaps). When the timer fires, call FindWindow to find the first browser for your desired browser. Call GetWindowText/GetWindowTextLength...
TheSteveScripting12-07-2008 at 01:07 AM
RE: ssh, putty not flexiable enough
You can change putty sessions by modifying the registry. The putty sessions are stored in: HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\S essions Tunnels are stored in a string value called PortForwardings. Each tunnel specification is separate...
TheSteveTech Talk12-07-2008 at 12:47 AM
RE: ssh, putty not flexiable enough
Could [url=http://openvpn.net]OpenVPN[/url] be a possible option? It appears to support [url=http://openvpn.net/index.php/documentation/ho wto.html#http]NTLM HTTP proxies[/url].
TheSteveTech Talk12-06-2008 at 05:41 AM
RE: Japan!
I don't know when you're going back to Canada, but if it's sometime this year, that won't be very likely. (Currently no business trips planned for Tokyo until next year.)
TheSteveGeneral Chit Chat12-06-2008 at 04:53 AM
RE: How do I do this In IE6
I would think that it would get rid of everything previously checked. If that's the case, you can temporarily add a winapp2.ini to the ccleaner folder following the same format as winapp.ini, and that should only clean what you temporarily want clea...
TheSteveTech Talk11-18-2008 at 01:16 AM
[Hide Excerpts] Pages: (8): « First « 1 [ 2 ] 3 4 5 6 » Last »