Connecting Tech Pros Worldwide Help | Site Map

Any chance for pointers in VB?

Crirus
Guest
 
Posts: n/a
#1: Nov 20 '05
Have anyone ideea if there are plans to implement pointers in VB?

Or, have the classes substituting the pointers the same performance?

Crirus


Nice Chap
Guest
 
Posts: n/a
#2: Nov 20 '05

re: Any chance for pointers in VB?


A reference 'is a' pointer. It points to an object. You can also treat value
types as objects i.e. obtain a reference to it, by 'Boxing' them.


"Crirus" <Crirus@datagroup.ro> wrote in message
news:%23DdDp9ikDHA.2060@tk2msftngp13.phx.gbl...[color=blue]
> Have anyone ideea if there are plans to implement pointers in VB?
>
> Or, have the classes substituting the pointers the same performance?
>
> Crirus
>
>[/color]


Armin Zingler
Guest
 
Posts: n/a
#3: Nov 20 '05

re: Any chance for pointers in VB?


"Crirus" <Crirus@datagroup.ro> schrieb[color=blue]
> Have anyone ideea if there are plans to implement pointers in VB?
>
> Or, have the classes substituting the pointers the same
> performance?[/color]

All varaibles declared as a reference type are pointers.


--
Armin

Crirus
Guest
 
Posts: n/a
#4: Nov 20 '05

re: Any chance for pointers in VB?


I know, byt a pointer to memory was what I want to know, as in C#


"Nice Chap" <NiceChap@PlasmaDyne.com> wrote in message
news:%23uA7TbjkDHA.2528@TK2MSFTNGP12.phx.gbl...[color=blue]
> A reference 'is a' pointer. It points to an object. You can also treat[/color]
value[color=blue]
> types as objects i.e. obtain a reference to it, by 'Boxing' them.
>
>
> "Crirus" <Crirus@datagroup.ro> wrote in message
> news:%23DdDp9ikDHA.2060@tk2msftngp13.phx.gbl...[color=green]
> > Have anyone ideea if there are plans to implement pointers in VB?
> >
> > Or, have the classes substituting the pointers the same performance?
> >
> > Crirus
> >
> >[/color]
>
>[/color]


Herfried K. Wagner [MVP]
Guest
 
Posts: n/a
#5: Nov 20 '05

re: Any chance for pointers in VB?


* "Crirus" <Crirus@datagroup.ro> scripsit:[color=blue]
> Have anyone ideea if there are plans to implement pointers in VB?
>
> Or, have the classes substituting the pointers the same performance?[/color]

Mhm... I never needed pointers like in C and I never missed them. I
think/hope they will never introduce them to VB.NET.

--
Herfried K. Wagner
MVP · VB Classic, VB.NET
<http://www.mvps.org/dotnet>
Armin Zingler
Guest
 
Posts: n/a
#6: Nov 20 '05

re: Any chance for pointers in VB?


"Crirus" <Crirus@datagroup.ro> schrieb[color=blue]
> I know, byt a pointer to memory was what I want to know, as in C#[/color]

The methods of System.Runtime.InteropServices.Marshal might help.


--
Armin

Fergus Cooney
Guest
 
Posts: n/a
#7: Nov 20 '05

re: Any chance for pointers in VB?


Hi Crirus,

No pointers in VB. :-(

It's unlikely that there will be any as VB has not traditionally been a
pointer-based language. The best bet is to learn C# (or C++) and do it in a
separate Project.

The performance benefits can be considerable and for the graphics work
that you are doping, it is well worth investigating.

Here are some very useful articles for you

Multimedia and GDI+:
http://www.codeproject.com/cs/media
Look for Image Processing for Dummies which is a series of
walkthroughs on doing image manipulation using C# pointers.

Pointers UNDOCUMENTED - .NET
http://www.codeproject.com/dotnet/pointers.asp
Which gives additional background on pointers in .NET.

Unfortunately the codeproject site was unavailable when I checked just
now. If you're in a hurry, you can do a Google search and check out the cached
pages (but the images come from the site so will not be shown).

Regards,
Fergus


Fergus Cooney
Guest
 
Posts: n/a
#8: Nov 20 '05

re: Any chance for pointers in VB?


Hi Herfried,

It does depend on what you are doing in your programs, of course.
Run-of-the-mill Windows apps don't need pointers. Crirus' bitmap
manipulations? I think there's a good case there.

Regards,
Fergus


Crirus
Guest
 
Posts: n/a
#9: Nov 20 '05

re: Any chance for pointers in VB?


LOL, I guess I'm well known allready with my struggle with images :)


"Fergus Cooney" <filter-1@tesco.net> wrote in message
news:OqQHZDkkDHA.2488@TK2MSFTNGP12.phx.gbl...[color=blue]
> Hi Crirus,
>
> No pointers in VB. :-(
>
> It's unlikely that there will be any as VB has not traditionally been[/color]
a[color=blue]
> pointer-based language. The best bet is to learn C# (or C++) and do it in[/color]
a[color=blue]
> separate Project.
>
> The performance benefits can be considerable and for the graphics work
> that you are doping, it is well worth investigating.
>
> Here are some very useful articles for you
>
> Multimedia and GDI+:
> http://www.codeproject.com/cs/media
> Look for Image Processing for Dummies which is a series of
> walkthroughs on doing image manipulation using C# pointers.
>
> Pointers UNDOCUMENTED - .NET
> http://www.codeproject.com/dotnet/pointers.asp
> Which gives additional background on pointers in .NET.
>
> Unfortunately the codeproject site was unavailable when I checked just
> now. If you're in a hurry, you can do a Google search and check out the[/color]
cached[color=blue]
> pages (but the images come from the site so will not be shown).
>
> Regards,
> Fergus
>
>[/color]


Crirus
Guest
 
Posts: n/a
#10: Nov 20 '05

re: Any chance for pointers in VB?


There is any performance drawback on this class versus pinters that C# have?


"Armin Zingler" <az.nospam@freenet.de> wrote in message
news:OSHPhvjkDHA.2364@TK2MSFTNGP11.phx.gbl...[color=blue]
> "Crirus" <Crirus@datagroup.ro> schrieb[color=green]
> > I know, byt a pointer to memory was what I want to know, as in C#[/color]
>
> The methods of System.Runtime.InteropServices.Marshal might help.
>
>
> --
> Armin
>[/color]


Fergus Cooney
Guest
 
Posts: n/a
#11: Nov 20 '05

re: Any chance for pointers in VB?


Hi Crirus,

|| LOL, I guess I'm well known allready
|| with my struggle with images :)

Lol, yes, I'm certainly aware. I'm no expert in that field but I'm
following it all with great interest. ;-)

Regards,
Fergus


Crirus
Guest
 
Posts: n/a
#12: Nov 20 '05

re: Any chance for pointers in VB?


I'm getting close ... but still missing few things :)


"Fergus Cooney" <filter-1@tesco.net> wrote in message
news:uZip9WkkDHA.1656@tk2msftngp13.phx.gbl...[color=blue]
> Hi Crirus,
>
> || LOL, I guess I'm well known allready
> || with my struggle with images :)
>
> Lol, yes, I'm certainly aware. I'm no expert in that field but I'm
> following it all with great interest. ;-)
>
> Regards,
> Fergus
>
>[/color]


Crirus
Guest
 
Posts: n/a
#13: Nov 20 '05

re: Any chance for pointers in VB?


No one on Drawing newsgroup had an answer if there is a BitBlt-like method
or a workaround it in GDI+...using a mask for transparence layer.... without
direct memory access and lock


"Fergus Cooney" <filter-1@tesco.net> wrote in message
news:uZip9WkkDHA.1656@tk2msftngp13.phx.gbl...[color=blue]
> Hi Crirus,
>
> || LOL, I guess I'm well known allready
> || with my struggle with images :)
>
> Lol, yes, I'm certainly aware. I'm no expert in that field but I'm
> following it all with great interest. ;-)
>
> Regards,
> Fergus
>
>[/color]


james
Guest
 
Posts: n/a
#14: Nov 20 '05

re: Any chance for pointers in VB?


I'm not certain, but, I don't think there is a method in GDI+ to do this.
That is probably why you have not gotten an answer to your question there.
(yep, I'm following this too as I am working on some
Photoshop-like stuff)
james

"Crirus" <Crirus@datagroup.ro> wrote in message
news:uGBf4ElkDHA.3316@tk2msftngp13.phx.gbl...[color=blue]
> No one on Drawing newsgroup had an answer if there is a BitBlt-like method
> or a workaround it in GDI+...using a mask for transparence layer....[/color]
without[color=blue]
> direct memory access and lock
>
>
> "Fergus Cooney" <filter-1@tesco.net> wrote in message
> news:uZip9WkkDHA.1656@tk2msftngp13.phx.gbl...[color=green]
> > Hi Crirus,
> >
> > || LOL, I guess I'm well known allready
> > || with my struggle with images :)
> >
> > Lol, yes, I'm certainly aware. I'm no expert in that field but I'm
> > following it all with great interest. ;-)
> >
> > Regards,
> > Fergus
> >
> >[/color]
>
>[/color]


Dmitriy Lapshin [C# / .NET MVP]
Guest
 
Posts: n/a
#15: Nov 20 '05

re: Any chance for pointers in VB?


Hi,

The ImageList class can blit bitmaps with transparency with its Draw method.

--
Dmitriy Lapshin [C# / .NET MVP]
X-Unity Test Studio
http://x-unity.miik.com.ua/teststudio.aspx
Bring the power of unit testing to VS .NET IDE

"Crirus" <Crirus@datagroup.ro> wrote in message
news:uGBf4ElkDHA.3316@tk2msftngp13.phx.gbl...[color=blue]
> No one on Drawing newsgroup had an answer if there is a BitBlt-like method
> or a workaround it in GDI+...using a mask for transparence layer....[/color]
without[color=blue]
> direct memory access and lock
>
>
> "Fergus Cooney" <filter-1@tesco.net> wrote in message
> news:uZip9WkkDHA.1656@tk2msftngp13.phx.gbl...[color=green]
> > Hi Crirus,
> >
> > || LOL, I guess I'm well known allready
> > || with my struggle with images :)
> >
> > Lol, yes, I'm certainly aware. I'm no expert in that field but I'm
> > following it all with great interest. ;-)
> >
> > Regards,
> > Fergus
> >
> >[/color]
>
>[/color]

Herfried K. Wagner [MVP]
Guest
 
Posts: n/a
#16: Nov 20 '05

re: Any chance for pointers in VB?


* "Fergus Cooney" <filter-1@tesco.net> scripsit:[color=blue]
> It does depend on what you are doing in your programs, of course.
> Run-of-the-mill Windows apps don't need pointers. Crirus' bitmap
> manipulations? I think there's a good case there.[/color]

Computers are getting faster and faster...

--
Herfried K. Wagner
MVP · VB Classic, VB.NET
<http://www.mvps.org/dotnet>
Herfried K. Wagner [MVP]
Guest
 
Posts: n/a
#17: Nov 20 '05

re: Any chance for pointers in VB?


* "Crirus" <Crirus@datagroup.ro> scripsit:[color=blue]
> There is any performance drawback on this class versus pinters that C# have?[/color]

Why not put the unsafe code into a C# library and use this library with
your VB.NET application?

--
Herfried K. Wagner
MVP · VB Classic, VB.NET
<http://www.mvps.org/dotnet>
Fergus Cooney
Guest
 
Posts: n/a
#18: Nov 20 '05

re: Any chance for pointers in VB?


Hi Herfried,

Yep, and bitmaps are getting bigger and bigger ... ;-)

Regards,
Fergus

** (higher resolution for more zoom - Crirus <is> talking maps here, after
all)


Herfried K. Wagner [MVP]
Guest
 
Posts: n/a
#19: Nov 20 '05

re: Any chance for pointers in VB?


* "Fergus Cooney" <filter-1@tesco.net> scripsit:[color=blue]
> Yep, and bitmaps are getting bigger and bigger ... ;-)[/color]

Are you sure, screen resolution and size will get bigger and bigger?

;-)

--
Herfried K. Wagner
MVP · VB Classic, VB.NET
<http://www.mvps.org/dotnet>
Fergus Cooney
Guest
 
Posts: n/a
#20: Nov 20 '05

re: Any chance for pointers in VB?


Hi Herfried,

I look forward to the table-top screen/graphics tablet - 100cm x 100cm,
120dpi. That's 90MB just for the desktop background image!! ;-))

Regards,
Fergus


Herfried K. Wagner [MVP]
Guest
 
Posts: n/a
#21: Nov 20 '05

re: Any chance for pointers in VB?


* "Fergus Cooney" <filter-1@tesco.net> scripsit:[color=blue]
> I look forward to the table-top screen/graphics tablet - 100cm x 100cm,
> 120dpi. That's 90MB just for the desktop background image!! ;-))[/color]

ROFL

--
Herfried K. Wagner
MVP · VB Classic, VB.NET
<http://www.mvps.org/dotnet>
Armin Zingler
Guest
 
Posts: n/a
#22: Nov 20 '05

re: Any chance for pointers in VB?


"Herfried K. Wagner [MVP]" <hirf-spam-me-here@gmx.at> schrieb[color=blue]
> * "Fergus Cooney" <filter-1@tesco.net> scripsit:[color=green]
> > It does depend on what you are doing in your programs, of
> > course. Run-of-the-mill Windows apps don't need pointers. Crirus'
> > bitmap manipulations? I think there's a good case there.[/color]
>
> Computers are getting faster and faster...[/color]

Software developers who think this way are responsible for the need of
faster computers.


--
Armin

Cor
Guest
 
Posts: n/a
#23: Nov 20 '05

re: Any chance for pointers in VB?


Hi Armin,
I fully agree. That has always been the most stupid solution I did hear.
Hardware developers making computers faster and lousy software developers
making programs slower. So the benefit is zero.
:-)
Cor[color=blue][color=green]
> >
> > Computers are getting faster and faster...[/color]
>
> Software developers who think this way are responsible for the need of
> faster computers.
>[/color]


Herfried K. Wagner [MVP]
Guest
 
Posts: n/a
#24: Nov 20 '05

re: Any chance for pointers in VB?


* "Cor" <non@non.com> scripsit:[color=blue]
> I fully agree. That has always been the most stupid solution I did hear.
> Hardware developers making computers faster and lousy software developers
> making programs slower. So the benefit is zero.[/color]

I set up Windows 3.11 on my new machine and it takes less than 1 second
to start...

I think computers are not fast enough. When Circus is asking for
pointers because of performance problems, he will have to use a
low-level programming concept. That's really bad. If computers were
faster, image processing in VB.NET would be no problem.

--
Herfried K. Wagner
MVP · VB Classic, VB.NET
<http://www.mvps.org/dotnet>
Herfried K. Wagner [MVP]
Guest
 
Posts: n/a
#25: Nov 20 '05

re: Any chance for pointers in VB?


* "Armin Zingler" <az.nospam@freenet.de> scripsit:[color=blue][color=green][color=darkred]
> > > It does depend on what you are doing in your programs, of
> > > course. Run-of-the-mill Windows apps don't need pointers. Crirus'
> > > bitmap manipulations? I think there's a good case there.[/color]
> >
> > Computers are getting faster and faster...[/color]
>
> Software developers who think this way are responsible for the need of
> faster computers.[/color]

ACK. Hardware isn't fast enough for high-level programming yet.

--
Herfried K. Wagner
MVP · VB Classic, VB.NET
<http://www.mvps.org/dotnet>
Cor
Guest
 
Posts: n/a
#26: Nov 20 '05

re: Any chance for pointers in VB?


Hi Herfried,

I follow this thread half and half, soon I need your knowledge, because I
think I am going to do something with bitmaps. (I need maybe a lot of links
and your knowledge).

When it is so far, I tell you and I am sure you will help me, but now I look
with a half eye to this thread.

First of all, I don't believe that C# has really hard memory pointers. I
think it has relative memory pointers. Hard memory pointers where on
mainframe in the very past and came back with the microcomputer. But every
builder of an OS would try to avoid them.
But I don't know enough from C# to say that while being sure, it is just a
guess.
So I am curious if my guess is right?

It always has been, with this speed thing, is that the generic modules for
doing this kind of things are ready when a format is generalised. Looking to
pictures formats now it is for me hash.

But that has been with all things with computers in past. Who ask here for a
WP format question, while in the past that was a very normal format?

And of course you still need speed for the amount of data in a bitmap, but
that has in my eyes nothing to do with pointers.

This became a long message, more for the night for you I think?

Cor




Fergus Cooney
Guest
 
Posts: n/a
#27: Nov 20 '05

re: Any chance for pointers in VB?


Good morning Cor,

What's a 'hard' pointer? And does that imply some sort of 'soft' pointer?

Regards,
Fergus


Crirus
Guest
 
Posts: n/a
#28: Nov 20 '05

re: Any chance for pointers in VB?


Dmitriy Lapshin, not that I like the ideea to add a imageList just for this
multilevel transparency I need, but can you be more specific?


"Dmitriy Lapshin [C# / .NET MVP]" <x-code@no-spam-please.hotpop.com> wrote
in message news:O9Ve4EmkDHA.2268@TK2MSFTNGP12.phx.gbl...[color=blue]
> Hi,
>
> The ImageList class can blit bitmaps with transparency with its Draw[/color]
method.[color=blue]
>
> --
> Dmitriy Lapshin [C# / .NET MVP]
> X-Unity Test Studio
> http://x-unity.miik.com.ua/teststudio.aspx
> Bring the power of unit testing to VS .NET IDE
>
> "Crirus" <Crirus@datagroup.ro> wrote in message
> news:uGBf4ElkDHA.3316@tk2msftngp13.phx.gbl...[color=green]
> > No one on Drawing newsgroup had an answer if there is a BitBlt-like[/color][/color]
method[color=blue][color=green]
> > or a workaround it in GDI+...using a mask for transparence layer....[/color]
> without[color=green]
> > direct memory access and lock
> >
> >
> > "Fergus Cooney" <filter-1@tesco.net> wrote in message
> > news:uZip9WkkDHA.1656@tk2msftngp13.phx.gbl...[color=darkred]
> > > Hi Crirus,
> > >
> > > || LOL, I guess I'm well known allready
> > > || with my struggle with images :)
> > >
> > > Lol, yes, I'm certainly aware. I'm no expert in that field but I'm
> > > following it all with great interest. ;-)
> > >
> > > Regards,
> > > Fergus
> > >
> > >[/color]
> >
> >[/color]
>[/color]


Crirus
Guest
 
Posts: n/a
#29: Nov 20 '05

re: Any chance for pointers in VB?


The only thing I can do right now is to draw the bitmaps pixel by pixel and
calculate the alpha myself from the mask color
I have to draw about 20x14=280 images. Each image has 80 X 80 pixels


"Fergus Cooney" <filter-1@tesco.net> wrote in message
news:uZip9WkkDHA.1656@tk2msftngp13.phx.gbl...[color=blue]
> Hi Crirus,
>
> || LOL, I guess I'm well known allready
> || with my struggle with images :)
>
> Lol, yes, I'm certainly aware. I'm no expert in that field but I'm
> following it all with great interest. ;-)
>
> Regards,
> Fergus
>
>[/color]


Cor
Guest
 
Posts: n/a
#30: Nov 20 '05

re: Any chance for pointers in VB?


Hi Fergus,
Maybe that is my name for it, that I did use by instance in far past to make
a branch to memory adress zero. (null booting of the computer).
Cor


Fergus Cooney
Guest
 
Posts: n/a
#31: Nov 20 '05

re: Any chance for pointers in VB?


Hi Cor,

Lol. I know that one too! ;-)

I'm not worried about whether the term is correct - I want to know what
<you> mean by it. I'm curious as to what distinction you are making, and this
will help me answer your question about pointers in C#.

[...pause for thought...re-reads the posts...]

I think I've got it, though - you mean a specific address, such as 0000
for the reboot (wasn't there another one at 0080 for a 'soft' reboot,
perhaps). If that's a 'hard' pointer, then a 'soft' pointer would be one
relative to the process' memory space (and translated to a hard address by the
CPU and its associates).

Yes, C# uses soft pointers. But these are as valid for the process as if
they were hard. In order to use them the C# programmer has to 'fix' the object
in memory so that the Garbage Collector will not move it. The address is then
as hard as it gets for a process - direct access to the memory of the object.

For Crirus, then, that will be the bits of the bitmap. For someone else,
it may be the bytes of some structure.

Regards,
Fergus


Cor
Guest
 
Posts: n/a
#32: Nov 20 '05

re: Any chance for pointers in VB?


Hi Fergus,

That is what I thought.

When someone says C# has the posibility to point to a memory adress, I
always think does he know what he says.

Normaly with modern operating systems you cannot do anything with that
because of the relocating in memory of processes ( I don't know if NT does
that but I asume that it happens when the garbadge is cleaned).

Thank you.

Cor


Crirus
Guest
 
Posts: n/a
#33: Nov 20 '05

re: Any chance for pointers in VB?


Hey,

there is some kind of a reward for the longest post launched? :D

Crirus

P.S. No need to answer

"Crirus" <Crirus@datagroup.ro> wrote in message
news:%23DdDp9ikDHA.2060@tk2msftngp13.phx.gbl...[color=blue]
> Have anyone ideea if there are plans to implement pointers in VB?
>
> Or, have the classes substituting the pointers the same performance?
>
> Crirus
>
>[/color]


Fergus Cooney
Guest
 
Posts: n/a
#34: Nov 20 '05

re: Any chance for pointers in VB?


Hi Crirus,

But I'm going to answer anyway, lol.

We had a very long thread with over 100 (wow!!) posts in it a while back.
There was excitement and wonder at the length.

I went Googling and discovered that we were short of the record by a mere
few thousand.

Ah well. ;-))

Regards,
Fergus


Crirus
Guest
 
Posts: n/a
#35: Nov 20 '05

re: Any chance for pointers in VB?


Ohh, and I was hoping for a record ...:D


"Fergus Cooney" <filter-1@tesco.net> wrote in message
news:%23bmYLfykDHA.3612@TK2MSFTNGP11.phx.gbl...[color=blue]
> Hi Crirus,
>
> But I'm going to answer anyway, lol.
>
> We had a very long thread with over 100 (wow!!) posts in it a while[/color]
back.[color=blue]
> There was excitement and wonder at the length.
>
> I went Googling and discovered that we were short of the record by a[/color]
mere[color=blue]
> few thousand.
>
> Ah well. ;-))
>
> Regards,
> Fergus
>
>[/color]


Herfried K. Wagner [MVP]
Guest
 
Posts: n/a
#36: Nov 20 '05

re: Any chance for pointers in VB?


* "Cor" <non@non.com> scripsit:[color=blue]
> I follow this thread half and half, soon I need your knowledge, because I
> think I am going to do something with bitmaps. (I need maybe a lot of links
> and your knowledge).[/color]

Didn't you receive the brainconnector yet?
[color=blue]
> First of all, I don't believe that C# has really hard memory pointers. I
> think it has relative memory pointers. Hard memory pointers where on
> mainframe in the very past and came back with the microcomputer. But every
> builder of an OS would try to avoid them.
> But I don't know enough from C# to say that while being sure, it is just a
> guess.
> So I am curious if my guess is right?[/color]

Sorry, I never used 'unsafe' blocks with C# (as a high-level programmer
I never needed them).

--
Herfried K. Wagner
MVP · VB Classic, VB.NET
<http://www.mvps.org/dotnet>
Fergus Cooney
Guest
 
Posts: n/a
#37: Nov 20 '05

re: Any chance for pointers in VB?


Hi Herfried,

!! Didn't you receive the brainconnector yet?

ROFL.

!! Sorry, I never used 'unsafe' blocks with C# (as a
!! high-level programmer I never needed them).

Oooh, isn't <he> the high and mighty one, then. Wouldn't want to soil his
hands on bits and bytes, wouldn't want to go near those nasty pointer things.

Regards,
Fergus




Cor
Guest
 
Posts: n/a
#38: Nov 20 '05

re: Any chance for pointers in VB?


Hi Fergus,

I had an other answer, stuffed it because this one is better.

We both have done a lot on memory level programming I think.

But we both have seen, that when the computers where changing, the first
programs which where useless where those with hard (or even virtual)
pointers in it.

Cor
[color=blue]
> !! Sorry, I never used 'unsafe' blocks with C# (as a
> !! high-level programmer I never needed them).
>
> Oooh, isn't <he> the high and mighty one, then. Wouldn't want to soil[/color]
his[color=blue]
> hands on bits and bytes, wouldn't want to go near those nasty pointer[/color]
things.[color=blue]
>[/color]


Cor
Guest
 
Posts: n/a
#39: Nov 20 '05

re: Any chance for pointers in VB?


Hi Herfried,

I think that my brainconnector works better and better. But there is till
now no connector on bitmaps.

Cor


Fergus Cooney
Guest
 
Posts: n/a
#40: Nov 20 '05

re: Any chance for pointers in VB?


Hi Cor,

For sure, hard-coded <anything> can limit the life span. But, sadly, many
well-designed, generically coded, super flexible, etc, etc, programs have
similarly fallen to the wayside because of moving times.

RAD - Rapid Application Development :-))

RAD - Rapid Application Disuse :-((

Regards,
Fergus


Cor
Guest
 
Posts: n/a
#41: Nov 20 '05

re: Any chance for pointers in VB?


Hi Fergus,

Why we always full agree.

:-)

Cor


Fergus Cooney
Guest
 
Posts: n/a
#42: Nov 20 '05

re: Any chance for pointers in VB?


Hi Cor,

We've seen things, you and me.. ;-))

Regards,
Fergus


Closed Thread