Here you can download hotfixes for microsft products
Here you can download Hotfixes that aren't public available...
//Lazze
The life of a computer/sci-fy/teccie-nerd :-) Interested in lots of stuff like: Net, C#, Software Architecture, IoT, building stuff (like sensors based on RPI Pico W), Cars, Books, meeting people, learning new stuff, Cyber Security
Sunday, June 17, 2007
Wednesday, June 13, 2007
Loop through splitcontainer in Winforms
Control ctl = splitContainer1.GetNextControl(splitContainer1 , true);
while (ctl != null)
{
//Do something with ctl
ctl = splitContainer1.GetNextControl(ctl, true); }
}
while (ctl != null)
{
//Do something with ctl
ctl = splitContainer1.GetNextControl(ctl, true); }
}
Tuesday, June 12, 2007
ICO PNG
Want some flashy icons on your desk?
This nifty program converts PNG -> ICO or ICO -> PNG
100% free!
Get it here!
This nifty program converts PNG -> ICO or ICO -> PNG
100% free!
Get it here!
Sunday, June 03, 2007
WCF
This gave me some headace:
netsh http add urlacl url=http://+:8000/ServiceModelSamples/service/ user=lsiden
You have to run the above command(Vista) to grant HTTP on URL xxx for user XXX before you can start a WCF-server.
If you use DualHTTP you have to open the firewall for the incoming requests from the client.
Read more:
Here
and here
netsh http add urlacl url=http://+:8000/ServiceModelSamples/service/ user=lsiden
You have to run the above command(Vista) to grant HTTP on URL xxx for user XXX before you can start a WCF-server.
If you use DualHTTP you have to open the firewall for the incoming requests from the client.
Read more:
Here
and here
Subscribe to:
Posts (Atom)
Lazzes Smart Home - 2023
Here is an overview of the components in the Smart Home as of now. More stuff than I tought :-)
-
If you, like me - use VLC mediaplayer to view all your media, you may have run into the same problem as I. That is, when we watch multiple m...
-
1) Define constants const int WM_KEYDOWN = 0x100; const int WM_KEYUP = 0x101; 2) Add interface, IMessageFilter public partial class Form1 : ...
-
The DivX register app is hardcoded to use the System32 folder as path for Rundll32, which of course doesn't exist on a 64bit system. So ...