all groups > dotnet general > july 2005 > threads for saturday july 30
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
The variable bit cpu
Posted by Skybuck Flying at 7/30/2005 9:05:13 PM
Hi,
I think I might have just invented the variable bit cpu :)
It works simply like this:
Each "data bit" has a "meta data bit".
The meta data bit describes if the bit is the ending bit of a possibly large
structure/field.
The meta bits together form a sort of bit mask or bit pattern... more >>
Registry SetValue stores double as REG_SZ
Posted by ChuckD_Duncan at 7/30/2005 7:25:41 PM
using Microsoft.Win32;
RegistryKey key = Registry.LocalMachine;
key = key.OpenSubKey(".....");
...
key = key.OpenSubKey("PCF", true);
double aDoubleValue = 0.25;
key.SetValue("testkey", aDoubleValue);
testkey pre-existed as a DWORD value and after the setvalue becomes a
REG_SZ type. Even ... more >>
microsoft.net ver 1.1 error 1935
Posted by microsoft.net at 7/30/2005 3:55:42 PM
WhenI try to load .net ver 1.1 I get the error 1935. I tried rebotting and I
also tried turning off windows installer. neither solution worked I stil get
error 1935 when trying to set up .net ver 1.1. My O/S is home XP and I do
have service pack 2 and all updates. Any help would be greatly... more >>
OnLine Techinal lessons for .NET
Posted by Filippo Bettinaglio at 7/30/2005 11:05:03 AM
Hya,
I found within MSDN website: the .NET show
http://msdn.microsoft.com/theshow/
where is possible watch and learn by about Microsoft technologies,
I am looking for something more technical something where they show coding
and technique in particular per .NET, still video stuff, but w... more >>
Error closing VB2005
Posted by thomasp NO[at]SPAM msala.net at 7/30/2005 10:44:31 AM
I get the following error when closing VB2005 beta 2. Everything runs fine.
Just wondering what the error is and how to eliminate it.
********
The control System.Windows.Forms.MdiClient has thrown an unhandled exception
in the designer and has been disabled.
Exception:
Property accessor ... more >>
Array of Classes
Posted by Ron McCafferty at 7/30/2005 10:22:01 AM
Hi,
I've got an array of a class say dim mydogs(50) of dog
I create an instance of a dog mydogs(0) = new mydogs("milo")
That all works fine. However I want to search the array for a dog named
Fido. When I get to an array element that hasn't been created I get an
error. I understan... more >>
|