473,396 Members | 1,768 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Assign Type at Runtime

I tried closely copying some code that I found on this group for
assigning a type at runtime, but I cannot get it to work. Can someone
see what is wrong with my logic?

Thanks,

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles Button1.Click
Dim s As String
s = "blah"
Dim t As Type
t = s.GetType
Dim obj As Object
obj = System.Activator.CreateInstance(t) 'Missing Exception
Unhandled - No parameterless constructor defined for this object.
obj = "hello"
s = DirectCast(obj, String)
RichTextBox1.Text = s
End Sub

Jan 31 '07 #1
42 1891
blisspikle wrote:
I tried closely copying some code that I found on this group for
assigning a type at runtime, but I cannot get it to work. Can someone
see what is wrong with my logic?
<snip>
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles Button1.Click
Dim s As String
s = "blah"
Dim t As Type
t = s.GetType
Dim obj As Object
obj = System.Activator.CreateInstance(t) 'Missing Exception
Unhandled - No parameterless constructor defined for this object.
obj = "hello"
s = DirectCast(obj, String)
RichTextBox1.Text = s
End Sub
You're getting the exception because, really, there's no parameterless
constructor in String (try for yourself, type "Dim S As New
String(" ... and you'll see).

Also, when you assign "hello" to obj, a new string object is created
and it's *that* object that is assigned to s, in the end. I guess what
you want is:

<aircode>
Dim S As String = "Blah"
Dim T As Type = S.GetType
Dim O As Object = _
System.Activator.CreateInstance(T, "hello".ToCharArray)
S = DirectCast(O, String)
</aircode>

But I still don't get the point, unless you want to instanciate
something other than a string...

HTH.

Regards,

Branco.

Jan 31 '07 #2
On Jan 31, 10:16 am, "blisspikle" <eklas...@metforming.comwrote:
I tried closely copying some code that I found on this group for
assigning a type at runtime, but I cannot get it to work. Can someone
see what is wrong with my logic?

Thanks,

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles Button1.Click
Dim s As String
s = "blah"
Dim t As Type
t = s.GetType
Dim obj As Object
obj = System.Activator.CreateInstance(t) 'Missing Exception
Unhandled - No parameterless constructor defined for this object.
obj = "hello"
s = DirectCast(obj, String)
RichTextBox1.Text = s
End Sub
The problem is exactly as the message indicates, the string type has
no public parameterless constructor. You need to use one of the
possible constructors, for example the one taking a character array:

obj = System.Activator.CreateInstance(t, New Object()
{"hello".ToCharArray()})

Jan 31 '07 #3
On Jan 31, 11:16 am, "blisspikle" <eklas...@metforming.comwrote:
I tried closely copying some code that I found on this group for
assigning a type at runtime, but I cannot get it to work. Can someone
see what is wrong with my logic?

Thanks,

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles Button1.Click
Dim s As String
s = "blah"
Dim t As Type
t = s.GetType
Dim obj As Object
obj = System.Activator.CreateInstance(t) 'Missing Exception
Unhandled - No parameterless constructor defined for this object.
Because System.String has no parameterless constructor... In other
words, you can't call new String() on a string. You need to pass in
something like this:
obj = System.Activateor.CreateInstance (t, New Object[] {"Hello"})

s = DirectCast(obj, String)
RichTextBox1.Text = s
End Sub
HTH,

--
Tom Shelton

Jan 31 '07 #4
I get messed up between instanciating an object and dimensioning the
object. Can someone point me to a place that lets me know a little
behind the scenes on what the difference is?

Is the New constructor called by default for a string when you use
s="blah". Is this because it has a default constructor? This cannot
be done with all Types right? I am going to list what I thought was
going on in my code below, it would probably be way too long to answer
these questions here?

Thanks for earlier answers, they were all really good. I could
probably try and plug my way through VB and have no idea what I am
doing, maybe that is why VB is popular?

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles Button1.Click
Dim s As String 'Not sure exactly what this
does behind the scenes, just know that you have to do it?
s = "blah" 'Somehow stores
(character array) into a String Type
Dim t As Type 'Not sure what it does
behind the scenes, but makes a variable that can hold a type?
t = s.GetType 'Get what type a string is,
which not sure what that would look like?
Dim obj As Object 'Dimension a non-specific
object that can store just about anything, not sure how it does it?
obj = System.Activator.CreateInstance(t) 'Create
instance of the type stored in t, and set to be obj, is there another
way to just

'dimension with the same type here rather then have to instantiate it?
obj = "hello" 'If obj is now a string
type I should be able to assign a value to it
s = DirectCast(obj, String) 'VB somehow switches types
RichTextBox1.Text = s 'assigns a string to a
richtextbox
End Sub
Feb 1 '07 #5
On Feb 1, 6:13 am, "blisspikle" <eklas...@metforming.comwrote:
I get messed up between instanciating an object and dimensioning the
object. Can someone point me to a place that lets me know a little
behind the scenes on what the difference is?

Is the New constructor called by default for a string when you use
s="blah". Is this because it has a default constructor? This cannot
be done with all Types right? I am going to list what I thought was
going on in my code below, it would probably be way too long to answer
these questions here?

Thanks for earlier answers, they were all really good. I could
probably try and plug my way through VB and have no idea what I am
doing, maybe that is why VB is popular?

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles Button1.Click
Dim s As String 'Not sure exactly what this
does behind the scenes, just know that you have to do it?
It allocates a reference to a string and clears it to Nothing. What
does that mean? Well, a string is a reference type, so it lives on
the heap (the dynamic data store). So, what you are really setting
aside is a variable that can point to a location on the heap that
holds a string. When the string is assigned and the memory is
allocated, then the reference will then contain the address of the
string...
s = "blah" 'Somehow stores
(character array) into a String Type
While string is a reference type, it is treated in some ways like a
value type by the compiler. This is one of those ways. Your
assignment above, is really equivalent to:

s = New String ("blah".ToCharArray())

But, because that would be a pain to type all the time the compiler
gives a break on it's syntax.
Dim t As Type 'Not sure what it does
behind the scenes, but makes a variable that can hold a type?
Yep. You go it that's what it does.
t = s.GetType 'Get what type a string is,
which not sure what that would look like?
Look at the docs for System.Type. It is an object that can be used to
discover a lot of information about the type of an object.
Dim obj As Object 'Dimension a non-specific
object that can store just about anything, not sure how it does it?
It does it by the power of polymorphism. In .Net everything derives
from System.Object. When you don't explicitly inherit from another
object, then you are inheriting from System.Object. Because of that,
you can store any .net object in a variable of type object. Of
course, you functionality is limited to that defined by the
System.Object interface :)
obj = System.Activator.CreateInstance(t) 'Create
instance of the type stored in t, and set to be obj, is there another
way to just

'dimension with the same type here rather then have to instantiate it?
I'm not sure what you mean? With the string you could have just done:

Dim s2 As String = s

Now, with other reference types you might be suprised to learn that a
change to s would effect s2. But, that isn't the case with string.
It's another one of those places where the runtime treats string a
little more like a value type. Anyway, if you look in the docs about
string interning, then you will get an idea of what I'm talking about.
obj = "hello" 'If obj is now a string
type I should be able to assign a value to it
It's not a string type - obj is type object. You can assign anything
you want to it because everything in .net ultimately derives from
object.
s = DirectCast(obj, String) 'VB somehow switches types
DirectCast will essentially make sure that the object your casting is
really of the type you are wanting to convert it too and if it is make
the assignment. If it isn't you get an exception.
RichTextBox1.Text = s 'assigns a string to a
richtextbox
End Sub
I hope this helps somewhat. There is a lot more that could be said
about this, but I didn't want to go to deep. If you have any
questions, feel free to ask again :)

--
Tom Shelton

Feb 1 '07 #6
Thank you all for the answers.

Tom, you gave me a better understanding in one answer then I have been
able to get through reading the books. I'm sure that I will have more
questions :)

Feb 5 '07 #7
use VBS or VBA or VB6.

..NET doesn't support variants

-Aaron

Feb 7 '07 #8
On 2007-02-07, aa*********@gmail.com <aa*********@gmail.comwrote:
use VBS or VBA or VB6.

.NET doesn't support variants
Good thing to. Variant was evil :)

--
Tom Shelton
Feb 7 '07 #9

"Tom Shelton" <to*********@comcastXXXXXXX.netwrote in message
news:qL******************************@comcast.com. ..
On 2007-02-07, aa*********@gmail.com <aa*********@gmail.comwrote:
>use VBS or VBA or VB6.

.NET doesn't support variants

Good thing to. Variant was evil :)

--
Tom Shelton
Variants had their time and their place. I used them when reading data from
a database, because in VB, there was no way to set an integer to Null or
Nothing, and when dealing with data, there's a big difference between Null
and 0.

Now I use Nullable Types, and am much happier because they are so specific.
:-D

Robin S.
Ts'i mahnu uterna ot twan ot geifur hingts uto.
Feb 7 '07 #10
On 2007-02-07, RobinS <Ro****@NoSpam.yah.nonewrote:
>
"Tom Shelton" <to*********@comcastXXXXXXX.netwrote in message
news:qL******************************@comcast.com. ..
>On 2007-02-07, aa*********@gmail.com <aa*********@gmail.comwrote:
>>use VBS or VBA or VB6.

.NET doesn't support variants

Good thing to. Variant was evil :)

--
Tom Shelton

Variants had their time and their place. I used them when reading data from
a database, because in VB, there was no way to set an integer to Null or
Nothing, and when dealing with data, there's a big difference between Null
and 0.
I realize that they had their place (notice the smiley). The problem with
them was that they got over used - often by mistake, remember this one:

dim i, j as integer

ops, i is a variant.
Now I use Nullable Types, and am much happier because they are so specific.
:-D
Nullable Types rock. Now if VB.NET would get anonymous methods, it would
almost be usable :)

C#:

int [] GetValues (int[] values, int value)
{
return Array.FindAll ( values, delegate (int i) { return (i == value); } );
}

// calling code
Array.ForEach ( GetValues (6), delegate (int i ) { Console.WriteLine (i); } );

Love it!
--
Tom Shelton
Feb 7 '07 #11
tom

just because you worked with some dipshit programmers; it doesn't mean
that microsoft needed to change the language without reason

it's like.. the whole datareader .read method is it?
I read something in MS Press book that said 'because you dipshits are
too stupid to do a .movenext method we are going to make it easier by
just having a .read method'

I'm like..

FUCK THIS MOTHER FUCKING COMPANY THAT BRINGS VB DOWN TO THE LOWEST
COMMON DENOMINATOR

UNNECESSARY CHANGE IS NEITHER NECESSARY OR SEXY

TAKE YOUR DOTNET AND SHOVE IT
DOTNET DOESNT EVEN RUN ON ANY OF THESE OPERATING SYSTEMS, WHICH HANDLE
VB6 JUST PERFECTLY

windows 95
windows 98
windows nt
windows me
windows 2000
windows xp
windows vista

seriosly here.

I've got a random machine; how do I determine which version of the
framework is on it?
I've got a random machine; how do I determine which version of the
framework is on it?
I've got a random machine; how do I determine which version of the
framework is on it?
THERE IS NO FUCKING ANSWER, MICROSOFT SHOULD HAVE MADE THIS PRACTICAL
for example you need to remember that R2 ships with 2.0 and you've got
to remember that XP ships with 1.0

I MEAN IT DOESNT SHOW UP VIA ADD / REMOVE PROGRAMS

please tell me, el wisest dotnet _FAGS_

i've got a random computer right here under my desk, please tell me
how to determine which version of the framework is on it.
because when you give me the wrong answer?

_THAT_ is when I'm going to swear off the DOTNOT framework.

THERE IS NO ANSWER; IT IS BASICALLY IMPOSSIBLE TO DETERMINE WHICH
VERSION OF THE FRAMEWORK IS ON A PARTICULAR MACHINE

Feb 7 '07 #12
On Jan 31, 12:16 pm, "blisspikle" <eklas...@metforming.comwrote:
I tried closely copying some code that I found on this group for
assigning a type at runtime, but I cannot get it to work. Can someone
see what is wrong with my logic?

Thanks,

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles Button1.Click
Dim s As String
s = "blah"
Dim t As Type
t = s.GetType
Dim obj As Object
obj = System.Activator.CreateInstance(t) 'Missing Exception
Unhandled - No parameterless constructor defined for this object.
obj = "hello"
s = DirectCast(obj, String)
RichTextBox1.Text = s
End Sub
Hi,

Maybe I'm not understand the intent of your question, but why not just
execute RichTextBox1.Text = "Hello"?

Anyway, here you go.

Dim typ As Type = GetType(String)
Dim arg As Object() = {"Hello".ToCharArray()}
Dim obj As Object = Activator.CreateInstance(typ, arg)
Dim str As String = DirectCast(obj, String)

Here's an alternate method.

Dim typ As Type = GetType(String)
Dim arg As Object() = {"Hello".ToCharArray()}
Dim obj As Object = typ.GetConstructor(New Type()
{GetType(Char())}).Invoke(arg)
Dim str As String = DirectCast(obj, String)

Brian

Feb 7 '07 #13

"Tom Shelton" <to*********@comcastXXXXXXX.netwrote in message
news:Jr******************************@comcast.com. ..
On 2007-02-07, RobinS <Ro****@NoSpam.yah.nonewrote:
>>
"Tom Shelton" <to*********@comcastXXXXXXX.netwrote in message
news:qL******************************@comcast.com ...
>>On 2007-02-07, aa*********@gmail.com <aa*********@gmail.comwrote:
use VBS or VBA or VB6.

.NET doesn't support variants

Good thing to. Variant was evil :)

--
Tom Shelton

Variants had their time and their place. I used them when reading data
from
a database, because in VB, there was no way to set an integer to Null or
Nothing, and when dealing with data, there's a big difference between
Null
and 0.

I realize that they had their place (notice the smiley). The problem
with
them was that they got over used - often by mistake, remember this one:

dim i, j as integer

ops, i is a variant.
>Now I use Nullable Types, and am much happier because they are so
specific.
:-D

Nullable Types rock. Now if VB.NET would get anonymous methods, it would
almost be usable :)

C#:

int [] GetValues (int[] values, int value)
{
return Array.FindAll ( values, delegate (int i) { return (i ==
value); } );
}

// calling code
Array.ForEach ( GetValues (6), delegate (int i ) { Console.WriteLine
(i); } );

Love it!
--
Tom Shelton
I never did
Dim i, j as Integer

I don't even do that now, even though I can. Too anal-retentive. I want it
to be really, really clear.

And I agree; I think anonymous methods are cool. I've seen them in action.
Of course, it doesn't kill me to do it "the hard way". (As Nietzsche said,
"What doesn't destroy me makes me stronger." Of course, he was a nutcase.)

Robin S.
Ts'i mahnu uterna ot twan ot geifur hingts uto.
Feb 7 '07 #14
I don't think this has anything to do with variants or anonymous methods.
You're ranting out of topic.
Robin S.
(King of Russia to *you*)
Ts'i mahnu uterna ot twan ot geifur hingts uto.
-----------------------------------------------
<aa*********@gmail.comwrote in message
news:11**********************@q2g2000cwa.googlegro ups.com...
tom

just because you worked with some dipshit programmers; it doesn't mean
that microsoft needed to change the language without reason

it's like.. the whole datareader .read method is it?
I read something in MS Press book that said 'because you dipshits are
too stupid to do a .movenext method we are going to make it easier by
just having a .read method'

I'm like..

FUCK THIS MOTHER FUCKING COMPANY THAT BRINGS VB DOWN TO THE LOWEST
COMMON DENOMINATOR

UNNECESSARY CHANGE IS NEITHER NECESSARY OR SEXY

TAKE YOUR DOTNET AND SHOVE IT
DOTNET DOESNT EVEN RUN ON ANY OF THESE OPERATING SYSTEMS, WHICH HANDLE
VB6 JUST PERFECTLY

windows 95
windows 98
windows nt
windows me
windows 2000
windows xp
windows vista

seriosly here.

I've got a random machine; how do I determine which version of the
framework is on it?
I've got a random machine; how do I determine which version of the
framework is on it?
I've got a random machine; how do I determine which version of the
framework is on it?
THERE IS NO FUCKING ANSWER, MICROSOFT SHOULD HAVE MADE THIS PRACTICAL
for example you need to remember that R2 ships with 2.0 and you've got
to remember that XP ships with 1.0

I MEAN IT DOESNT SHOW UP VIA ADD / REMOVE PROGRAMS

please tell me, el wisest dotnet _FAGS_

i've got a random computer right here under my desk, please tell me
how to determine which version of the framework is on it.
because when you give me the wrong answer?

_THAT_ is when I'm going to swear off the DOTNOT framework.

THERE IS NO ANSWER; IT IS BASICALLY IMPOSSIBLE TO DETERMINE WHICH
VERSION OF THE FRAMEWORK IS ON A PARTICULAR MACHINE

Feb 7 '07 #15
On Feb 7, 2:02 am, Tom Shelton <tom_shel...@comcastXXXXXXX.netwrote:
On 2007-02-07, RobinS <Rob...@NoSpam.yah.nonewrote:


"Tom Shelton" <tom_shel...@comcastXXXXXXX.netwrote in message
news:qL******************************@comcast.com. ..
On 2007-02-07, aaron.ke...@gmail.com <aaron.ke...@gmail.comwrote:
use VBS or VBA or VB6.
>.NET doesn't support variants
Good thing to. Variant was evil :)
--
Tom Shelton
Variants had their time and their place. I used them when reading data from
a database, because in VB, there was no way to set an integer to Null or
Nothing, and when dealing with data, there's a big difference between Null
and 0.

I realize that they had their place (notice the smiley). The problem with
them was that they got over used - often by mistake, remember this one:

dim i, j as integer

ops, i is a variant.
Now I use Nullable Types, and am much happier because they are so specific.
:-D

Nullable Types rock. Now if VB.NET would get anonymous methods, it would
almost be usable :)

C#:

int [] GetValues (int[] values, int value)
{
return Array.FindAll ( values, delegate (int i) { return (i == value); } );

}

// calling code
Array.ForEach ( GetValues (6), delegate (int i ) { Console.WriteLine (i); } );

Love it!
--
Tom Shelton- Hide quoted text -

- Show quoted text -
Hi,

And with lambda expressions in C# 3.0 it would look like:

int [] GetValues (int[] values, int value)
{
return Array.FindAll ( values, i =i == value);
}

// calling code
Array.ForEach ( GetValues (6), i =Console.WriteLine(i) );

Love it more!

Brian


Feb 7 '07 #16
Robin,

If Aaron WAS the guru he makes himself out to be, he would simply open the
Control Panel, go to Add/Remove Programs and 'scroll down' to the listing
that tells him the version of the framework that he has installed. Each
framework installs into seperate folders under the
Windows\Microsoft.net\Framework directory structure so users can implement
EITHER framework. Users can even set which framework they want their
application to use should they so choose, but I'm not going to continue on
that topic here. So though he is off-topic, he STILL hasn't said anything
that is even CLOSE to being realistic or true.

And just to make sure that my post is 'on-topic' :), Aaron likes to waste
memory by using variants in his work, making his VB6 applications run slower
and hog memory that could be put to better use by the operating system doing
more meaningful tasks.

Bruce

"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:tP******************************@comcast.com. ..
>I don't think this has anything to do with variants or anonymous methods.
You're ranting out of topic.
Robin S.
(King of Russia to *you*)
Ts'i mahnu uterna ot twan ot geifur hingts uto.
-----------------------------------------------
<aa*********@gmail.comwrote in message
news:11**********************@q2g2000cwa.googlegro ups.com...
>tom

just because you worked with some dipshit programmers; it doesn't mean
that microsoft needed to change the language without reason

it's like.. the whole datareader .read method is it?
I read something in MS Press book that said 'because you dipshits are
too stupid to do a .movenext method we are going to make it easier by
just having a .read method'

I'm like..

FUCK THIS MOTHER FUCKING COMPANY THAT BRINGS VB DOWN TO THE LOWEST
COMMON DENOMINATOR

UNNECESSARY CHANGE IS NEITHER NECESSARY OR SEXY

TAKE YOUR DOTNET AND SHOVE IT
DOTNET DOESNT EVEN RUN ON ANY OF THESE OPERATING SYSTEMS, WHICH HANDLE
VB6 JUST PERFECTLY

windows 95
windows 98
windows nt
windows me
windows 2000
windows xp
windows vista

seriosly here.

I've got a random machine; how do I determine which version of the
framework is on it?
I've got a random machine; how do I determine which version of the
framework is on it?
I've got a random machine; how do I determine which version of the
framework is on it?
THERE IS NO FUCKING ANSWER, MICROSOFT SHOULD HAVE MADE THIS PRACTICAL
for example you need to remember that R2 ships with 2.0 and you've got
to remember that XP ships with 1.0

I MEAN IT DOESNT SHOW UP VIA ADD / REMOVE PROGRAMS

please tell me, el wisest dotnet _FAGS_

i've got a random computer right here under my desk, please tell me
how to determine which version of the framework is on it.
because when you give me the wrong answer?

_THAT_ is when I'm going to swear off the DOTNOT framework.

THERE IS NO ANSWER; IT IS BASICALLY IMPOSSIBLE TO DETERMINE WHICH
VERSION OF THE FRAMEWORK IS ON A PARTICULAR MACHINE


Feb 8 '07 #17
BRUCE

what kindof fucking idiot are you?

LIKE SERIOUSLY

windows xp, out of the box; go add/remove and _PLEASE_ tell me if it
has the framework.
server 2003 rs, out of the box; go add/remove and _PLEASE_ tell me if
it has the framework.

from what I've seen-- you have to 'REMEMBER' that XP and Server 2003
are exceptions to that rule.

PLEASE BUDDY; KEEP GUESSING.

because if you can't even mother fucking tell me what version of the
framework is on machine X then WHY IN THE FUCK WOULD YOU USE THIS
LANGUAGE?
Feb 8 '07 #18
Window XP ships with .NET 1.0 right? Does it?

AND IT SURE DOESNT SHOW UP IN ADD / REMOVE PROGRAMS
Feb 8 '07 #19
mother fucker

I don't use variants

I don't need better performance (and for the record, my apps launch
faster than yours LoL)

and I don't have memory shortages.

NICE TRY DIPSHIT.

why would they try to sell us on PERFORMANCE?

real quick -- if you could have a programming language that was
_MAYBE_ 30% faster at _SOME_ tasks.. but it only ran on 1/4 of the
operating systems or applications... would you do it?

I haven't had a performance problem with BASIC since, uh-- well the
day I started writing BASIC back in the commodore 64.

SO LICK A NUT DICKWAD

It's like trying to sell a freezer to an eskimo -- WE JUST DO NOT NEED
IT AT ANY PRICE
mother fuckers gave us 1/4 of the code portability-- can we even run
VB 2005 apps on Vista yet?

can I cut and paste code from VB 2005 into an Excel workbook? ROFL
can I cut and paste code from VB 2005 into an ASP page? ROFL
can I cut and paste code from VB 2005 into a DHTML page? ROFL
can I cut and paste code from VB 2005 into a DTS package? ROFL
can I _SAVE_ a DTS pacakge as a VB 2005 module? ROFL
can I cut and paste code from VB 2005 into OUTLOOK? ROFL
can I cut and paste code from VB 2005 into WORD? ROFL
can I cut and paste code from VB 2005 into ACCESS? ROFL
can I cut and paste code from VB 2005 into SQL AGENT? ROFL
can I cut and paste code from VB 2005 into a VBS FILE? ROFL

your language is for QUEERS AND RETARDS; you do not even know what
operating systems your shit will work on.

-Aaron

Feb 8 '07 #20
and if you want to talk about MEMORY HOG; I've got a 2.4ghz machine
with 2gb ram.. and I do not run anything else.

WHY DOES VISUAL STUDIO TAKE TEN MINUTES TO LAUNCH?
WHY DOES VISUAL STUDIO TAKE TEN MINUTES TO LAUNCH?
WHY DOES VISUAL STUDIO TAKE TEN MINUTES TO LAUNCH?
WHY DOES VISUAL STUDIO TAKE TEN MINUTES TO LAUNCH?
WHY DOES VISUAL STUDIO TAKE TEN MINUTES TO LAUNCH?
WHY DOES VISUAL STUDIO TAKE TEN MINUTES TO LAUNCH?
WHY DOES VISUAL STUDIO TAKE TEN MINUTES TO LAUNCH?
WHY DOES VISUAL STUDIO TAKE TEN MINUTES TO LAUNCH?
WHY DOES VISUAL STUDIO TAKE TEN MINUTES TO LAUNCH?
WHY DOES VISUAL STUDIO TAKE TEN MINUTES TO LAUNCH?
WHY DOES VISUAL STUDIO TAKE TEN MINUTES TO LAUNCH?
WHY DOES VISUAL STUDIO TAKE TEN MINUTES TO LAUNCH?
WHY DOES VISUAL STUDIO TAKE TEN MINUTES TO LAUNCH?
WHY DOES VISUAL STUDIO TAKE TEN MINUTES TO LAUNCH?
WHY DOES VISUAL STUDIO TAKE TEN MINUTES TO LAUNCH?
WHY DOES VISUAL STUDIO TAKE TEN MINUTES TO LAUNCH?

Feb 8 '07 #21
BECAUSE YOU BITCHES SNORT OFF OF THE _BLOATWARE_ TRAIN
BECAUSE YOU BITCHES SNORT OFF OF THE _BLOATWARE_ TRAIN
BECAUSE YOU BITCHES SNORT OFF OF THE _BLOATWARE_ TRAIN
BECAUSE YOU BITCHES SNORT OFF OF THE _BLOATWARE_ TRAIN

F
U
C
K

D
O
T
N
O
T

Feb 8 '07 #22
On Feb 8, 8:55 am, "aaron.ke...@gmail.com" <aaron.ke...@gmail.com>
wrote:
Window XP ships with .NET 1.0 right? Does it?
No. It doesn't ship with the framework. It was available via windows
update, and some oem's choose to install it.

--
Tom Shelton

Feb 8 '07 #23
and is it even CALLED the windows directory under Windows 2000?

thanks

-Aaron

Feb 8 '07 #24
On Feb 8, 12:01 pm, "aaron.ke...@gmail.com" <aaron.ke...@gmail.com>
wrote:
and is it even CALLED the windows directory under Windows 2000?

thanks

-Aaron
No. It's WinNT under 2K.

--
Tom Shelton

Feb 8 '07 #25
Unless you upgrade to Win2k from Windows 95, 98, ME. It will then retain the
Windows directory for backward compatability. Of course, you already knew
this, right Aaron????

Bruce

"Tom Shelton" <to*********@comcast.netwrote in message
news:11**********************@k78g2000cwa.googlegr oups.com...
On Feb 8, 12:01 pm, "aaron.ke...@gmail.com" <aaron.ke...@gmail.com>
wrote:
>and is it even CALLED the windows directory under Windows 2000?

thanks

-Aaron

No. It's WinNT under 2K.

--
Tom Shelton

Feb 9 '07 #26
I am well and truly impressed. You take over the title of "He who got Aaron
to post the most responses". Six. Wow. The most I've ever accomplished is
three. That must mean you irritated him twice as much as I did. Neat.

The problem, of course, is that you are right. It always irritates
narcissistic, delusional, insecure people when they're wrong and you're
right. Not that I'm saying anybody around here is like that. But if they
were, I bet you'd irritate them enough for them to respond to you like, I
don't know, 6 times.

Robin S.
(King of Russia)
----------------------------------------------------------
"Bruce W. Darby" <kr******@atcomcast.netwrote in message
news:Yp******************************@comcast.com. ..
Robin,

If Aaron WAS the guru he makes himself out to be, he would simply open
the Control Panel, go to Add/Remove Programs and 'scroll down' to the
listing that tells him the version of the framework that he has
installed. Each framework installs into seperate folders under the
Windows\Microsoft.net\Framework directory structure so users can
implement EITHER framework. Users can even set which framework they want
their application to use should they so choose, but I'm not going to
continue on that topic here. So though he is off-topic, he STILL hasn't
said anything that is even CLOSE to being realistic or true.

And just to make sure that my post is 'on-topic' :), Aaron likes to waste
memory by using variants in his work, making his VB6 applications run
slower and hog memory that could be put to better use by the operating
system doing more meaningful tasks.

Bruce

"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:tP******************************@comcast.com. ..
>>I don't think this has anything to do with variants or anonymous methods.
You're ranting out of topic.
Robin S.
(King of Russia to *you*)
Ts'i mahnu uterna ot twan ot geifur hingts uto.
-----------------------------------------------
<aa*********@gmail.comwrote in message
news:11**********************@q2g2000cwa.googlegr oups.com...
>>tom

just because you worked with some dipshit programmers; it doesn't mean
that microsoft needed to change the language without reason

it's like.. the whole datareader .read method is it?
I read something in MS Press book that said 'because you dipshits are
too stupid to do a .movenext method we are going to make it easier by
just having a .read method'

I'm like..

FUCK THIS MOTHER FUCKING COMPANY THAT BRINGS VB DOWN TO THE LOWEST
COMMON DENOMINATOR

UNNECESSARY CHANGE IS NEITHER NECESSARY OR SEXY

TAKE YOUR DOTNET AND SHOVE IT
DOTNET DOESNT EVEN RUN ON ANY OF THESE OPERATING SYSTEMS, WHICH HANDLE
VB6 JUST PERFECTLY

windows 95
windows 98
windows nt
windows me
windows 2000
windows xp
windows vista

seriosly here.

I've got a random machine; how do I determine which version of the
framework is on it?
I've got a random machine; how do I determine which version of the
framework is on it?
I've got a random machine; how do I determine which version of the
framework is on it?
THERE IS NO FUCKING ANSWER, MICROSOFT SHOULD HAVE MADE THIS PRACTICAL
for example you need to remember that R2 ships with 2.0 and you've got
to remember that XP ships with 1.0

I MEAN IT DOESNT SHOW UP VIA ADD / REMOVE PROGRAMS

please tell me, el wisest dotnet _FAGS_

i've got a random computer right here under my desk, please tell me
how to determine which version of the framework is on it.
because when you give me the wrong answer?

_THAT_ is when I'm going to swear off the DOTNOT framework.

THERE IS NO ANSWER; IT IS BASICALLY IMPOSSIBLE TO DETERMINE WHICH
VERSION OF THE FRAMEWORK IS ON A PARTICULAR MACHINE



Feb 9 '07 #27
On Feb 8, 8:02 pm, "Bruce W. Darby" <kraco...@atcomcast.netwrote:
Unless you upgrade to Win2k from Windows 95, 98, ME. It will then retain the
Windows directory for backward compatability. Of course, you already knew
this, right Aaron????

Bruce
I didn't know that... I have never done a 2K upgrade, always
installed it clean.

--
Tom Shelton

Feb 9 '07 #28
*BLUSH* GARSH!!! Gulp.... I'd like to thank my publisher.... and, of
course, my wife and my horse and all the lowly person who has given my this
honor..... uhhhh... does it come with a vacation package? hehehehe

Bruce

"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:BL******************************@comcast.com. ..
>I am well and truly impressed. You take over the title of "He who got Aaron
to post the most responses". Six. Wow. The most I've ever accomplished is
three. That must mean you irritated him twice as much as I did. Neat.

The problem, of course, is that you are right. It always irritates
narcissistic, delusional, insecure people when they're wrong and you're
right. Not that I'm saying anybody around here is like that. But if they
were, I bet you'd irritate them enough for them to respond to you like, I
don't know, 6 times.

Robin S.
(King of Russia)
----------------------------------------------------------
"Bruce W. Darby" <kr******@atcomcast.netwrote in message
news:Yp******************************@comcast.com. ..
>Robin,

If Aaron WAS the guru he makes himself out to be, he would simply open
the Control Panel, go to Add/Remove Programs and 'scroll down' to the
listing that tells him the version of the framework that he has
installed. Each framework installs into seperate folders under the
Windows\Microsoft.net\Framework directory structure so users can
implement EITHER framework. Users can even set which framework they want
their application to use should they so choose, but I'm not going to
continue on that topic here. So though he is off-topic, he STILL hasn't
said anything that is even CLOSE to being realistic or true.

And just to make sure that my post is 'on-topic' :), Aaron likes to waste
memory by using variants in his work, making his VB6 applications run
slower and hog memory that could be put to better use by the operating
system doing more meaningful tasks.

Bruce

"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:tP******************************@comcast.com ...
>>>I don't think this has anything to do with variants or anonymous methods.
You're ranting out of topic.
Robin S.
(King of Russia to *you*)
Ts'i mahnu uterna ot twan ot geifur hingts uto.
-----------------------------------------------
<aa*********@gmail.comwrote in message
news:11**********************@q2g2000cwa.googleg roups.com...
tom

just because you worked with some dipshit programmers; it doesn't mean
that microsoft needed to change the language without reason

it's like.. the whole datareader .read method is it?
I read something in MS Press book that said 'because you dipshits are
too stupid to do a .movenext method we are going to make it easier by
just having a .read method'

I'm like..

FUCK THIS MOTHER FUCKING COMPANY THAT BRINGS VB DOWN TO THE LOWEST
COMMON DENOMINATOR

UNNECESSARY CHANGE IS NEITHER NECESSARY OR SEXY

TAKE YOUR DOTNET AND SHOVE IT
DOTNET DOESNT EVEN RUN ON ANY OF THESE OPERATING SYSTEMS, WHICH HANDLE
VB6 JUST PERFECTLY

windows 95
windows 98
windows nt
windows me
windows 2000
windows xp
windows vista

seriosly here.

I've got a random machine; how do I determine which version of the
framework is on it?
I've got a random machine; how do I determine which version of the
framework is on it?
I've got a random machine; how do I determine which version of the
framework is on it?
THERE IS NO FUCKING ANSWER, MICROSOFT SHOULD HAVE MADE THIS PRACTICAL
for example you need to remember that R2 ships with 2.0 and you've got
to remember that XP ships with 1.0

I MEAN IT DOESNT SHOW UP VIA ADD / REMOVE PROGRAMS

please tell me, el wisest dotnet _FAGS_

i've got a random computer right here under my desk, please tell me
how to determine which version of the framework is on it.
because when you give me the wrong answer?

_THAT_ is when I'm going to swear off the DOTNOT framework.

THERE IS NO ANSWER; IT IS BASICALLY IMPOSSIBLE TO DETERMINE WHICH
VERSION OF THE FRAMEWORK IS ON A PARTICULAR MACHINE



Feb 9 '07 #29
It's a little mechanism that MS put in to prevent themselves from breaking
their own OS actually, but yeah, it's true. I've always done a clean install
myself, but when I actually worked for MS, we had to test this for our own
applications.

Bruce

"Tom Shelton" <to*********@comcast.netwrote in message
news:11*********************@j27g2000cwj.googlegro ups.com...
On Feb 8, 8:02 pm, "Bruce W. Darby" <kraco...@atcomcast.netwrote:
>Unless you upgrade to Win2k from Windows 95, 98, ME. It will then retain
the
Windows directory for backward compatability. Of course, you already knew
this, right Aaron????

Bruce

I didn't know that... I have never done a 2K upgrade, always
installed it clean.

--
Tom Shelton

Feb 9 '07 #30
I haven't used 9x for almost a decade..
Yes; of course I knew that; I've done it before

but it doesn't change the point of the matter-- that you dipshits
STILL can't tell me a simple single way to determine what version of
the framework is on machine X.

for example, Server 2003 ships with 1.1 right? Does 1.1 show up under
add/remove programs?

when these mother fuckers stop GUESSING when it comes to strategy is
when I stop bitching about this DOTNET crap.

All I know is that they try to convince us that performance is the
best reason to migrate-- and it's not a benefit because 2002,2003 ,
2005 are _DOTNOT_ faster than vb6.

it's like trying to sell a freezer to eskimos

they sell us something that we DO NOT NEED, WE DID NOT ASK FOR IT.
and it doesn't run in 1/4 of the places that VB6 / VBS / VBA ran.

VB6 = VBS = VBA

VB 2002, 2003, 2005 = NOT PRACTICAL
again, you fucking dipshits tell me a single standard way to determine
'which version of the framework is on machine X' and I will STFU for a
_WEEK_

-Aaron


Feb 9 '07 #31
are you guys really not pissed off about the introduction of C#?

it's like.. VolksWagen selling Beetles with 2 missing wheels-- because
they 'had to invent a new vanagon'

ITS LIKE FUCK YOU GIVE ME MY PROGRAM BACK AND GIVE IT FOUR WHEELS

DOTNET IS DOTNOT PRACTICAL TO DEPLOY, DEVELOP OR DESIGN.
AND DOTNET IS DOTNOT FASTER THAN VB6.

-Aaron

Feb 9 '07 #32
Yes, it does! Your vacation begins right now! Oh, wait, you missed it, it's
over already. Isn't that the way it always feels?

Robin S.
Ts'i mahnu uterna ot twan ot geifur hingts uto.
-----------------------------------------------
"Bruce W. Darby" <kr******@atcomcast.netwrote in message
news:3u******************************@comcast.com. ..
*BLUSH* GARSH!!! Gulp.... I'd like to thank my publisher.... and, of
course, my wife and my horse and all the lowly person who has given my
this honor..... uhhhh... does it come with a vacation package? hehehehe

Bruce

"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:BL******************************@comcast.com. ..
>>I am well and truly impressed. You take over the title of "He who got
Aaron to post the most responses". Six. Wow. The most I've ever
accomplished is three. That must mean you irritated him twice as much as
I did. Neat.

The problem, of course, is that you are right. It always irritates
narcissistic, delusional, insecure people when they're wrong and you're
right. Not that I'm saying anybody around here is like that. But if they
were, I bet you'd irritate them enough for them to respond to you like,
I don't know, 6 times.

Robin S.
(King of Russia)
----------------------------------------------------------
"Bruce W. Darby" <kr******@atcomcast.netwrote in message
news:Yp******************************@comcast.com ...
>>Robin,

If Aaron WAS the guru he makes himself out to be, he would simply open
the Control Panel, go to Add/Remove Programs and 'scroll down' to the
listing that tells him the version of the framework that he has
installed. Each framework installs into seperate folders under the
Windows\Microsoft.net\Framework directory structure so users can
implement EITHER framework. Users can even set which framework they
want their application to use should they so choose, but I'm not going
to continue on that topic here. So though he is off-topic, he STILL
hasn't said anything that is even CLOSE to being realistic or true.

And just to make sure that my post is 'on-topic' :), Aaron likes to
waste memory by using variants in his work, making his VB6 applications
run slower and hog memory that could be put to better use by the
operating system doing more meaningful tasks.

Bruce

"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:tP******************************@comcast.co m...
I don't think this has anything to do with variants or anonymous
methods. You're ranting out of topic.
Robin S.
(King of Russia to *you*)
Ts'i mahnu uterna ot twan ot geifur hingts uto.
-----------------------------------------------
<aa*********@gmail.comwrote in message
news:11**********************@q2g2000cwa.google groups.com...
tom
>
just because you worked with some dipshit programmers; it doesn't
mean
that microsoft needed to change the language without reason
>
it's like.. the whole datareader .read method is it?
I read something in MS Press book that said 'because you dipshits are
too stupid to do a .movenext method we are going to make it easier by
just having a .read method'
>
I'm like..
>
FUCK THIS MOTHER FUCKING COMPANY THAT BRINGS VB DOWN TO THE LOWEST
COMMON DENOMINATOR
>
UNNECESSARY CHANGE IS NEITHER NECESSARY OR SEXY
>
TAKE YOUR DOTNET AND SHOVE IT
DOTNET DOESNT EVEN RUN ON ANY OF THESE OPERATING SYSTEMS, WHICH
HANDLE
VB6 JUST PERFECTLY
>
windows 95
windows 98
windows nt
windows me
windows 2000
windows xp
windows vista
>
seriosly here.
>
I've got a random machine; how do I determine which version of the
framework is on it?
I've got a random machine; how do I determine which version of the
framework is on it?
I've got a random machine; how do I determine which version of the
framework is on it?
>
>
THERE IS NO FUCKING ANSWER, MICROSOFT SHOULD HAVE MADE THIS PRACTICAL
for example you need to remember that R2 ships with 2.0 and you've
got
to remember that XP ships with 1.0
>
I MEAN IT DOESNT SHOW UP VIA ADD / REMOVE PROGRAMS
>
please tell me, el wisest dotnet _FAGS_
>
i've got a random computer right here under my desk, please tell me
how to determine which version of the framework is on it.
because when you give me the wrong answer?
>
_THAT_ is when I'm going to swear off the DOTNOT framework.
>
THERE IS NO ANSWER; IT IS BASICALLY IMPOSSIBLE TO DETERMINE WHICH
VERSION OF THE FRAMEWORK IS ON A PARTICULAR MACHINE
>




Feb 10 '07 #33
i agree

is there a simple, standard way to determine 'which version of the
framework is on this machine'

it doesn't always show up under add/remove programs

and it's not always in the windows directory

anyone?

-Tom

Feb 10 '07 #34
*sigh* Just my luck. And here I was hoping I could take that trip up to
Seattle to see Aaron/punjab_tom handcuff himself to the 205...

"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:A_******************************@comcast.com. ..
Yes, it does! Your vacation begins right now! Oh, wait, you missed it,
it's over already. Isn't that the way it always feels?

Feb 10 '07 #35
LOL. Don't forget his other aliases, susiedba and dbahooker. Do you think
those aliases say something about him? Do you think he moonlights as a
hooker named Susie?

Robin S.
-------------------
"Bruce W. Darby" <kr******@atcomcast.netwrote in message
news:HP******************************@comcast.com. ..
*sigh* Just my luck. And here I was hoping I could take that trip up to
Seattle to see Aaron/punjab_tom handcuff himself to the 205...

"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:A_******************************@comcast.com. ..
>Yes, it does! Your vacation begins right now! Oh, wait, you missed it,
it's over already. Isn't that the way it always feels?


Feb 10 '07 #36
why don't you whiny ass bitches STFU and answer my question.

HOW DO I DETERMINE THE VERSION OF THE FRAMEWORK ON MACHINE X?

STFU IF YOU DO NOT GIVE ME AN ANSWER, BECAUSE ALL THE ANSWERS I HAVE
HEARD SO FAR _DO_NOT_WORK_

-Aaron

Feb 10 '07 #37
On 2007-02-10, aa*********@gmail.com <aa*********@gmail.comwrote:
why don't you whiny ass bitches STFU and answer my question.

HOW DO I DETERMINE THE VERSION OF THE FRAMEWORK ON MACHINE X?

STFU IF YOU DO NOT GIVE ME AN ANSWER, BECAUSE ALL THE ANSWERS I HAVE
HEARD SO FAR _DO_NOT_WORK_

-Aaron
I highly doubt that they didn't work... The framework installes under
%systemroot%\Microsoft.Net\Framework. Each version of the framework will be
in it's own folder. If you want to know all the details go here:

http://support.microsoft.com/kb/318785

That will give you all the released versions. You can get the version you are
currently running under using System.Environment.Version. You can also look
at the registry under HKLM/Software/Microsoft/.NETFramework.

The above should be more then enough information to figure this out.

HTH

--
Tom Shelton
Feb 10 '07 #38
sorry dog

that's just funny.. I've had a dozen people talk about this; and not
one of them could come up with systemroot.. I've been waiting for that
answer..

I don't think that systemroot works under 9x.. and WIndows 98 is
supported for the framework 1.0 and 1.1 right???

http://ams.bo.infn.it/phpmanual/en/install-windows.html
-----------------------------------------------------------------------------------------
Copy the file, 'php.ini-dist' to your '%WINDOWS%' directory on Windows
95/98 or to your '%SYSTEMROOT%' directory under Windows NT or Windows
2000 and rename it to 'php.ini'. Your '%WINDOWS%' or '%SYSTEMROOT%'
directory is typically:
-----------------------------------------------------------------------------------------

I've got a windows 95 media center box; I will never ever ever ever
give it up... never ever ever. of _course_ it's not on the network /
internet. but it still works FINE and I'm not going to throw it away
just because it's 10 years old

it supports picture in picture and about_EIGHT_ different connections,
it's got quadxthree RCA cables, dual coax and dual s-video.
it's got a video card the size of a 1u server
it's an absolute beauty

it's got remotes and keyboards-- it's a $4,000 machine.

when they start making media center boxes with _EIGHT_ different
viewing connections is when I give this box up

when Microsoft stops trying to strong arm us into retiring their old
software-- is when I lay down my arms

Feb 12 '07 #39
and for the record; stick that in your pipe and smoke it

oh, does Tom know more about the .net framework than _MICROSOFT DOES_?

Feb 12 '07 #40
and of course, the alternative answer is 'look under add/remove
programs'

BUT IT DOES NOT SHOW UP THERE SOMETIMES
Feb 12 '07 #41
the bottom line is that the so called 'framework' is not on 10% of the
desktops in the world

and MIcrosoft has done _NOTHING_ to push the framework out to
everyone.

under windows update, it is listed as OPTIONAL SOFTWARE-- WHY NOT MAKE
IT MANDATORY?

oh, is it antitrust concerns?

THEN SPLIT UP YOUR FUCKING COMPANY, BECAUSE YOU ARE NOT BIG ENOUGH TO
FIX BUGS IN MICROSOFT ACCESS

google 'create proc sphappy'

I mandate that other developers don't use the proc abbreviation.

DO YOU KNOW WHY?

BECAUSE MICROSOFT IS TOO FAT AND LAZY TO FIX BUGS

THEY ARE TOO BUSY _CENSORING_ PEOPLE THAT SPEAK THE TRUTH-- TO FIX A
MEASLY FUCKING BUG IN MICROSOFT ACCESS 2000,2002 and 2003.

AND THEN THEY MADE ACCESS 2003 NOT COMPATIBLE WITH SQL 2005?

WHAT THE FLYING FUCK IS WRONG WITH THIS COMPANY?

Feb 12 '07 #42
Tom

I highly doubt that you've pulled the big blue MS DILDO out of your
ass

MS HAS FUCKED US ALL BRING BACK VB6 OR EAT SHIT ON THE NEWSGROUPS
FOREVER

Feb 12 '07 #43

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

25
by: Rim | last post by:
Hi, I have been thinking about how to overload the assign operation '='. In many cases, I wanted to provide users of my packages a natural interface to the extended built-in types I created for...
6
by: Buddy Ackerman | last post by:
I created a simple class: Public Class MyTestClass Public Test() As String End Class I tried to assign some values to the array Test() and display them like this:
3
by: Pavils Jurjans | last post by:
Hello, I am looking for solution to assign the Session.onEnd event handler dynamically, at runtime, without using global.asax file. I am a bit sceptic wether that is possible, however I thought...
4
by: Andres | last post by:
Hi all, I have the problem to assign a variable of type object to a specific class at runtime. I want to use a string variable that specify the class a want to set this object. Is something...
2
by: Kalim Julia | last post by:
Anybody knows, How to assign image on a button at runtime
669
by: Xah Lee | last post by:
in March, i posted a essay “What is Expressiveness in a Computer Language”, archived at: http://xahlee.org/perl-python/what_is_expresiveness.html I was informed then that there is a academic...
11
by: skumar434 | last post by:
Hi everybody, I am faceing problem while assigning the memory dynamically to a array of structures . Suppose I have a structure typedef struct hom_id{ int32_t nod_de; int32_t hom_id;
29
by: stephen b | last post by:
Hi all, personally I'd love to be able to do something like this: vector<intv; v.assign(1, 2, 5, 9, 8, 7) etc without having to manually add elements by doing v = 1, v = 2 .. etc. it would...
9
by: raylopez99 | last post by:
Just an observation: pens for drawing lines in Win Forms are tricky when assignment is inside the paint handler. inside of the Paint handler, but not inside a "using" brace (that is, outside of...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development projectplanning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.