473,394 Members | 1,831 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,394 software developers and data experts.

CR & Tab in VB 2005 Textbox

AWW
Using Textbox.Text = "123" & CStr(13) & "456"
I expect 2 lines on the screen but get 1 line with 13 in it.
It worked once in a RichTextBox but then stopped.
I just want to display aligned tabular data on the screen using CR &
Tabs to create data columns.
I am an old programmer but .Net novice.<g>
Help.
Jun 21 '07 #1
17 4707

"AWW" wrote in message news:m2********************************@4ax.com...
Using Textbox.Text = "123" & CStr(13) & "456"
I expect 2 lines on the screen but get 1 line with 13 in it.
It worked once in a RichTextBox but then stopped.
I just want to display aligned tabular data on the screen using CR &
Tabs to create data columns.
I am an old programmer but .Net novice.<g>
Help.
You may want to use the following constant under System.Environment

first is System.Environment.NewLine. This will ensure that you have the
correct setting for the newline character (no matter where it runs).

There is also a VBCRLF constant which can be used but is not really Dot.Net

Secondly (and gone if you use the above) the CStr is converting as you saw
to a string with that value. I can only suggest that you don't use any of
the old VB functions and go with straight Dot.Net. In the long run this
will make things easier and more consistant.

Lloyd Sheen

Jun 21 '07 #2

First make sure the textbox`s multiline property is set to true

and maybe you would findit easier to use the handy VB contstants

VbCr ( cariage return )
VbCrlf ( cariage return linefeed )
VbTab ( tab )
regards

Michel

<AWWschreef in bericht news:m2********************************@4ax.com...
Using Textbox.Text = "123" & CStr(13) & "456"
I expect 2 lines on the screen but get 1 line with 13 in it.
It worked once in a RichTextBox but then stopped.
I just want to display aligned tabular data on the screen using CR &
Tabs to create data columns.
I am an old programmer but .Net novice.<g>
Help.

Jun 21 '07 #3
AWW wrote:
Using Textbox.Text = "123" & CStr(13) & "456"
I expect 2 lines on the screen but get 1 line with 13 in it.
I think the function you're looking for is Chr(), not CStr().

But anyway, you're much better off using vbCrLf instead:

\\\
Textbox.Text = "123" & vbCrLf & "456"
///

--

(O)enone
Jun 21 '07 #4
<AWWschrieb
Using Textbox.Text = "123" & CStr(13) & "456"
I expect 2 lines on the screen but get 1 line with 13 in it. It
worked once in a RichTextBox but then stopped.
I just want to display aligned tabular data on the screen using CR &
Tabs to create data columns.
I am an old programmer but .Net novice.<g>
Help.

I guess you know that you wanted to write Chr(13) instead of CStr(13). :-)

Or use vbCr instead.
Armin
Jun 21 '07 #5
There is also a VBCRLF constant which can be used but is not really
Dot.Net

Secondly (and gone if you use the above) the CStr is converting as you saw
to a string with that value. I can only suggest that you don't use any of
the old VB functions and go with straight Dot.Net. In the long run this
will make things easier and more consistant.

Lloyd Sheen
Huh ???
Well read this

http://www.codeproject.com/useritems/novbruntimeref.asp

and read my responses

There is nothing old or outdated or whatever in the Microsoft Visual Basic
..NET Runtime

Just my thoughts regarding this mather

regards

Michel Posseth

"Lloyd Sheen" <a@b.cschreef in bericht
news:46**********************************@microsof t.com...
>
"AWW" wrote in message news:m2********************************@4ax.com...
>Using Textbox.Text = "123" & CStr(13) & "456"
I expect 2 lines on the screen but get 1 line with 13 in it.
It worked once in a RichTextBox but then stopped.
I just want to display aligned tabular data on the screen using CR &
Tabs to create data columns.
I am an old programmer but .Net novice.<g>
Help.

You may want to use the following constant under System.Environment

first is System.Environment.NewLine. This will ensure that you have the
correct setting for the newline character (no matter where it runs).

There is also a VBCRLF constant which can be used but is not really
Dot.Net

Secondly (and gone if you use the above) the CStr is converting as you saw
to a string with that value. I can only suggest that you don't use any of
the old VB functions and go with straight Dot.Net. In the long run this
will make things easier and more consistant.

Lloyd Sheen

Jun 21 '07 #6

"Michel Posseth [MCP]" <MS**@posseth.comwrote in message
news:uh**************@TK2MSFTNGP02.phx.gbl...
>
>There is also a VBCRLF constant which can be used but is not really
Dot.Net

Secondly (and gone if you use the above) the CStr is converting as you
saw to a string with that value. I can only suggest that you don't use
any of the old VB functions and go with straight Dot.Net. In the long
run this will make things easier and more consistant.

Lloyd Sheen

Huh ???
Well read this

http://www.codeproject.com/useritems/novbruntimeref.asp

and read my responses

There is nothing old or outdated or whatever in the Microsoft Visual Basic
.NET Runtime

Just my thoughts regarding this mather

regards

Michel Posseth

"Lloyd Sheen" <a@b.cschreef in bericht
news:46**********************************@microsof t.com...
>>
"AWW" wrote in message news:m2********************************@4ax.com...
>>Using Textbox.Text = "123" & CStr(13) & "456"
I expect 2 lines on the screen but get 1 line with 13 in it.
It worked once in a RichTextBox but then stopped.
I just want to display aligned tabular data on the screen using CR &
Tabs to create data columns.
I am an old programmer but .Net novice.<g>
Help.

You may want to use the following constant under System.Environment

first is System.Environment.NewLine. This will ensure that you have the
correct setting for the newline character (no matter where it runs).

There is also a VBCRLF constant which can be used but is not really
Dot.Net

Secondly (and gone if you use the above) the CStr is converting as you
saw to a string with that value. I can only suggest that you don't use
any of the old VB functions and go with straight Dot.Net. In the long
run this will make things easier and more consistant.

Lloyd Sheen

Sorry what I meant was to keep the code Dot.Net you would use the functions
that are provide for each object. I do this since I use both VB and C# and
sometimes I need to use code (not enough for a seperate assembly) and if I
use the Dot.Net functions provided by the objects rather than the VB it is
easier to convert since it is mostly getting rid of ending semi colons and
changing square brackets into regular brackets (and the other stuff of
course).

I just find that this way (even though VB will not disappear , and I bought
a copy of VB1 in Long Beach the day it was first available so I have been
using VB for quite some time (I guess that was 91)).

Just my 2 cents

Lloyd Sheen

Jun 21 '07 #7
AWW
Yes, multiline is True in both RichTextBox & TextBox and
both VbCr/VBTab work in RichTextBox but only VbTab in TextBox.
I can rewrite the whole box but would like to rewrite individual lines
and cannot find any way to set a position for the rewrite.
Thanks - so far.

On Thu, 21 Jun 2007 20:38:04 +0200, "Michel Posseth [MCP]"
<MS**@posseth.comwrote:
>
First make sure the textbox`s multiline property is set to true

and maybe you would findit easier to use the handy VB contstants

VbCr ( cariage return )
VbCrlf ( cariage return linefeed )
VbTab ( tab )
regards

Michel

<AWWschreef in bericht news:m2********************************@4ax.com...
>Using Textbox.Text = "123" & CStr(13) & "456"
I expect 2 lines on the screen but get 1 line with 13 in it.
It worked once in a RichTextBox but then stopped.
I just want to display aligned tabular data on the screen using CR &
Tabs to create data columns.
I am an old programmer but .Net novice.<g>
Help.
Jun 21 '07 #8
Lloyd Sheen wrote:
Sorry what I meant was to keep the code Dot.Net you would use the
functions that are provide for each object. I do this since I use
both VB and C# and sometimes I need to use code (not enough for a
seperate assembly) and if I use the Dot.Net functions provided by the
objects rather than the VB it is easier to convert since it is mostly
getting rid of ending semi colons and changing square brackets into
regular brackets (and the other stuff of course).
There's nothing stopping you referencing Microsoft.VisualBasic.dll and using
the functions within it from C#, you know! :)

--

(O)enone
Jun 21 '07 #9
Lloyd

Did you now that you can just set a reference to Microsoft.VisualBasic.dll
in a C# project and then use all the handy shortcuts in C# as well

And no you then not have a extra dependancy as we code on the framework and
the Microsoft.VisualBasic.dll is part of the framework
regards

Michel

"Lloyd Sheen" <a@b.cschreef in bericht
news:7C**********************************@microsof t.com...
>
"Michel Posseth [MCP]" <MS**@posseth.comwrote in message
news:uh**************@TK2MSFTNGP02.phx.gbl...
>>
>>There is also a VBCRLF constant which can be used but is not really
Dot.Net

Secondly (and gone if you use the above) the CStr is converting as you
saw to a string with that value. I can only suggest that you don't use
any of the old VB functions and go with straight Dot.Net. In the long
run this will make things easier and more consistant.

Lloyd Sheen

Huh ???
Well read this

http://www.codeproject.com/useritems/novbruntimeref.asp

and read my responses

There is nothing old or outdated or whatever in the Microsoft Visual
Basic .NET Runtime

Just my thoughts regarding this mather

regards

Michel Posseth

"Lloyd Sheen" <a@b.cschreef in bericht
news:46**********************************@microso ft.com...
>>>
"AWW" wrote in message
news:m2********************************@4ax.com. ..
Using Textbox.Text = "123" & CStr(13) & "456"
I expect 2 lines on the screen but get 1 line with 13 in it.
It worked once in a RichTextBox but then stopped.
I just want to display aligned tabular data on the screen using CR &
Tabs to create data columns.
I am an old programmer but .Net novice.<g>
Help.

You may want to use the following constant under System.Environment

first is System.Environment.NewLine. This will ensure that you have the
correct setting for the newline character (no matter where it runs).

There is also a VBCRLF constant which can be used but is not really
Dot.Net

Secondly (and gone if you use the above) the CStr is converting as you
saw to a string with that value. I can only suggest that you don't use
any of the old VB functions and go with straight Dot.Net. In the long
run this will make things easier and more consistant.

Lloyd Sheen


Sorry what I meant was to keep the code Dot.Net you would use the
functions that are provide for each object. I do this since I use both VB
and C# and sometimes I need to use code (not enough for a seperate
assembly) and if I use the Dot.Net functions provided by the objects
rather than the VB it is easier to convert since it is mostly getting rid
of ending semi colons and changing square brackets into regular brackets
(and the other stuff of course).

I just find that this way (even though VB will not disappear , and I
bought a copy of VB1 in Long Beach the day it was first available so I
have been using VB for quite some time (I guess that was 91)).

Just my 2 cents

Lloyd Sheen

Jun 22 '07 #10
TextBox1.Text = String.Concat("hello", vbCr, "world") 'does not work
TextBox1.Text = String.Concat("hello", vbCrLf, "world") 'works
TextBox1.Text = String.Concat("hello", Environment.NewLine, "world") 'works
TextBox1.Text = String.Concat("hello", Chr(13), "world") 'doesn`t work
TextBox1.Text = String.Concat("hello", Chr(13), Chr(10), "world") 'works

in windows a newline is standard cariage return and linefeed
HTH

Michel

"AWW" wrote:
Yes, multiline is True in both RichTextBox & TextBox and
both VbCr/VBTab work in RichTextBox but only VbTab in TextBox.
I can rewrite the whole box but would like to rewrite individual lines
and cannot find any way to set a position for the rewrite.
Thanks - so far.

On Thu, 21 Jun 2007 20:38:04 +0200, "Michel Posseth [MCP]"
<MS**@posseth.comwrote:

First make sure the textbox`s multiline property is set to true

and maybe you would findit easier to use the handy VB contstants

VbCr ( cariage return )
VbCrlf ( cariage return linefeed )
VbTab ( tab )
regards

Michel

<AWWschreef in bericht news:m2********************************@4ax.com...
Using Textbox.Text = "123" & CStr(13) & "456"
I expect 2 lines on the screen but get 1 line with 13 in it.
It worked once in a RichTextBox but then stopped.
I just want to display aligned tabular data on the screen using CR &
Tabs to create data columns.
I am an old programmer but .Net novice.<g>
Help.

Jun 22 '07 #11
On Jun 21, 3:18 pm, AWW <wrote:
Yes, multiline is True in both RichTextBox & TextBox and
both VbCr/VBTab work in RichTextBox but only VbTab in TextBox.
I can rewrite the whole box but would like to rewrite individual lines
and cannot find any way to set a position for the rewrite.
Thanks - so far.

On Thu, 21 Jun 2007 20:38:04 +0200, "Michel Posseth [MCP]"

<M...@posseth.comwrote:
First make sure the textbox`s multiline property is set to true
and maybe you would findit easier to use the handy VB contstants
VbCr ( cariage return )
VbCrlf ( cariage return linefeed )
VbTab ( tab )
regards
Michel
<AWWschreef in berichtnews:m2********************************@4ax .com...
Using Textbox.Text = "123" & CStr(13) & "456"
I expect 2 lines on the screen but get 1 line with 13 in it.
It worked once in a RichTextBox but then stopped.
I just want to display aligned tabular data on the screen using CR &
Tabs to create data columns.
I am an old programmer but .Net novice.<g>
Help.
I can rewrite the whole box but would like to rewrite individual lines
and cannot find any way to set a position for the rewrite.
For the RichTextBox at least you have a Lines property and also a
SelectionStart and SelectionLength property you can use to quickly
modify a specific line or lines. I don't recall right now if the
standard TextBox exposes these members or not.

Thanks,

Seth Rowe

Jun 22 '07 #12
On Thu, 21 Jun 2007 14:35:17 -0400, "Lloyd Sheen" <a@b.cwrote:
>You may want to use the following constant under System.Environment

first is System.Environment.NewLine. This will ensure that you have the
correct setting for the newline character (no matter where it runs).
System.Environment.NewLine is hard-coded to return

ChrW(13) & ChrW(10)

I do not see how or where it would return anything else, unless there
are different versions of mscorlib out there.

Unless we are talking about a Unix implementation, in which case it
should return ChrW(13)
>There is also a VBCRLF constant which can be used but is not really Dot.Net
Microsoft.VisualBasic.Constants.vbCrLf also returns ChrW(13) &
ChrW(10),
but is defined as a constant instead of a shared property like
System.Environment.NewLine.

Yes, a C# developer could reference Microsoft.VisualBasic to get
at vbCrLf, but why go to another assembly if you do not have to?

Regards,

Joergen Bech

Jun 22 '07 #13
AWW
Thanks - the vbLf does work in the Textbox and in the RichTextbox even
if not needed. Little things can be so annoying.<g>

On Fri, 22 Jun 2007 03:09:00 -0700, M. Posseth
<MP******@discussions.microsoft.comwrote:
>TextBox1.Text = String.Concat("hello", vbCr, "world") 'does not work
TextBox1.Text = String.Concat("hello", vbCrLf, "world") 'works
TextBox1.Text = String.Concat("hello", Environment.NewLine, "world") 'works
TextBox1.Text = String.Concat("hello", Chr(13), "world") 'doesn`t work
TextBox1.Text = String.Concat("hello", Chr(13), Chr(10), "world") 'works

in windows a newline is standard cariage return and linefeed
HTH

Michel

"AWW" wrote:
>Yes, multiline is True in both RichTextBox & TextBox and
both VbCr/VBTab work in RichTextBox but only VbTab in TextBox.
I can rewrite the whole box but would like to rewrite individual lines
and cannot find any way to set a position for the rewrite.
Thanks - so far.

On Thu, 21 Jun 2007 20:38:04 +0200, "Michel Posseth [MCP]"
<MS**@posseth.comwrote:
>
First make sure the textbox`s multiline property is set to true

and maybe you would findit easier to use the handy VB contstants

VbCr ( cariage return )
VbCrlf ( cariage return linefeed )
VbTab ( tab )
regards

Michel

<AWWschreef in bericht news:m2********************************@4ax.com...
Using Textbox.Text = "123" & CStr(13) & "456"
I expect 2 lines on the screen but get 1 line with 13 in it.
It worked once in a RichTextBox but then stopped.
I just want to display aligned tabular data on the screen using CR &
Tabs to create data columns.
I am an old programmer but .Net novice.<g>
Help.

Jun 22 '07 #14

exactly the one i didn`t test :-)


<AWWschreef in bericht news:hf********************************@4ax.com...
Thanks - the vbLf does work in the Textbox and in the RichTextbox even
if not needed. Little things can be so annoying.<g>

On Fri, 22 Jun 2007 03:09:00 -0700, M. Posseth
<MP******@discussions.microsoft.comwrote:
>>TextBox1.Text = String.Concat("hello", vbCr, "world") 'does not work
TextBox1.Text = String.Concat("hello", vbCrLf, "world") 'works
TextBox1.Text = String.Concat("hello", Environment.NewLine, "world")
'works
TextBox1.Text = String.Concat("hello", Chr(13), "world") 'doesn`t work
TextBox1.Text = String.Concat("hello", Chr(13), Chr(10), "world") 'works

in windows a newline is standard cariage return and linefeed
HTH

Michel

"AWW" wrote:
>>Yes, multiline is True in both RichTextBox & TextBox and
both VbCr/VBTab work in RichTextBox but only VbTab in TextBox.
I can rewrite the whole box but would like to rewrite individual lines
and cannot find any way to set a position for the rewrite.
Thanks - so far.

On Thu, 21 Jun 2007 20:38:04 +0200, "Michel Posseth [MCP]"
<MS**@posseth.comwrote:
First make sure the textbox`s multiline property is set to true

and maybe you would findit easier to use the handy VB contstants

VbCr ( cariage return )
VbCrlf ( cariage return linefeed )
VbTab ( tab )
regards

Michel

<AWWschreef in bericht
news:m2********************************@4ax.com. ..
Using Textbox.Text = "123" & CStr(13) & "456"
I expect 2 lines on the screen but get 1 line with 13 in it.
It worked once in a RichTextBox but then stopped.
I just want to display aligned tabular data on the screen using CR &
Tabs to create data columns.
I am an old programmer but .Net novice.<g>
Help.

Jun 22 '07 #15
Michel,

Why are you showing this page, has it any more authority than the webpages
from Jaap from the Golden Cache?

If you are proofing something than please something from MSDN.

Cor

"Michel Posseth [MCP]" <MS**@posseth.comschreef in bericht
news:uh**************@TK2MSFTNGP02.phx.gbl...
>
>There is also a VBCRLF constant which can be used but is not really
Dot.Net

Secondly (and gone if you use the above) the CStr is converting as you
saw to a string with that value. I can only suggest that you don't use
any of the old VB functions and go with straight Dot.Net. In the long
run this will make things easier and more consistant.

Lloyd Sheen

Huh ???
Well read this

http://www.codeproject.com/useritems/novbruntimeref.asp

and read my responses

There is nothing old or outdated or whatever in the Microsoft Visual Basic
.NET Runtime

Just my thoughts regarding this mather

regards

Michel Posseth

"Lloyd Sheen" <a@b.cschreef in bericht
news:46**********************************@microsof t.com...
>>
"AWW" wrote in message news:m2********************************@4ax.com...
>>Using Textbox.Text = "123" & CStr(13) & "456"
I expect 2 lines on the screen but get 1 line with 13 in it.
It worked once in a RichTextBox but then stopped.
I just want to display aligned tabular data on the screen using CR &
Tabs to create data columns.
I am an old programmer but .Net novice.<g>
Help.

You may want to use the following constant under System.Environment

first is System.Environment.NewLine. This will ensure that you have the
correct setting for the newline character (no matter where it runs).

There is also a VBCRLF constant which can be used but is not really
Dot.Net

Secondly (and gone if you use the above) the CStr is converting as you
saw to a string with that value. I can only suggest that you don't use
any of the old VB functions and go with straight Dot.Net. In the long
run this will make things easier and more consistant.

Lloyd Sheen


Jun 22 '07 #16
Cor ,

No not because of any authority , but because of my comments on this mather
, i believe i reflect my opinion in more detail on this page ( see the
comments in "Why ?") i just didn`t like to type it all again , but pointed
to the page i commented on instead.

Michel
"Cor Ligthert [MVP]" <no************@planet.nlschreef in bericht
news:us**************@TK2MSFTNGP03.phx.gbl...
Michel,

Why are you showing this page, has it any more authority than the webpages
from Jaap from the Golden Cache?

If you are proofing something than please something from MSDN.

Cor

"Michel Posseth [MCP]" <MS**@posseth.comschreef in bericht
news:uh**************@TK2MSFTNGP02.phx.gbl...
>>
>>There is also a VBCRLF constant which can be used but is not really
Dot.Net

Secondly (and gone if you use the above) the CStr is converting as you
saw to a string with that value. I can only suggest that you don't use
any of the old VB functions and go with straight Dot.Net. In the long
run this will make things easier and more consistant.

Lloyd Sheen

Huh ???
Well read this

http://www.codeproject.com/useritems/novbruntimeref.asp

and read my responses

There is nothing old or outdated or whatever in the Microsoft Visual
Basic .NET Runtime

Just my thoughts regarding this mather

regards

Michel Posseth

"Lloyd Sheen" <a@b.cschreef in bericht
news:46**********************************@microso ft.com...
>>>
"AWW" wrote in message
news:m2********************************@4ax.com. ..
Using Textbox.Text = "123" & CStr(13) & "456"
I expect 2 lines on the screen but get 1 line with 13 in it.
It worked once in a RichTextBox but then stopped.
I just want to display aligned tabular data on the screen using CR &
Tabs to create data columns.
I am an old programmer but .Net novice.<g>
Help.

You may want to use the following constant under System.Environment

first is System.Environment.NewLine. This will ensure that you have the
correct setting for the newline character (no matter where it runs).

There is also a VBCRLF constant which can be used but is not really
Dot.Net

Secondly (and gone if you use the above) the CStr is converting as you
saw to a string with that value. I can only suggest that you don't use
any of the old VB functions and go with straight Dot.Net. In the long
run this will make things easier and more consistant.

Lloyd Sheen



Jun 23 '07 #17
Michel,

I am not always happy what is written on that website.
Often very much the opinion from one man.

Cor

"Michel Posseth [MCP]" <MS**@posseth.comschreef in bericht
news:eX**************@TK2MSFTNGP04.phx.gbl...
Cor ,

No not because of any authority , but because of my comments on this
mather , i believe i reflect my opinion in more detail on this page ( see
the comments in "Why ?") i just didn`t like to type it all again , but
pointed to the page i commented on instead.

Michel
"Cor Ligthert [MVP]" <no************@planet.nlschreef in bericht
news:us**************@TK2MSFTNGP03.phx.gbl...
>Michel,

Why are you showing this page, has it any more authority than the
webpages from Jaap from the Golden Cache?

If you are proofing something than please something from MSDN.

Cor

"Michel Posseth [MCP]" <MS**@posseth.comschreef in bericht
news:uh**************@TK2MSFTNGP02.phx.gbl...
>>>
There is also a VBCRLF constant which can be used but is not really
Dot.Net

Secondly (and gone if you use the above) the CStr is converting as you
saw to a string with that value. I can only suggest that you don't use
any of the old VB functions and go with straight Dot.Net. In the long
run this will make things easier and more consistant.

Lloyd Sheen
Huh ???
Well read this

http://www.codeproject.com/useritems/novbruntimeref.asp

and read my responses

There is nothing old or outdated or whatever in the Microsoft Visual
Basic .NET Runtime

Just my thoughts regarding this mather

regards

Michel Posseth

"Lloyd Sheen" <a@b.cschreef in bericht
news:46**********************************@micros oft.com...

"AWW" wrote in message
news:m2********************************@4ax.com ...
Using Textbox.Text = "123" & CStr(13) & "456"
I expect 2 lines on the screen but get 1 line with 13 in it.
It worked once in a RichTextBox but then stopped.
I just want to display aligned tabular data on the screen using CR &
Tabs to create data columns.
I am an old programmer but .Net novice.<g>
Help.

You may want to use the following constant under System.Environment

first is System.Environment.NewLine. This will ensure that you have
the correct setting for the newline character (no matter where it
runs).

There is also a VBCRLF constant which can be used but is not really
Dot.Net

Secondly (and gone if you use the above) the CStr is converting as you
saw to a string with that value. I can only suggest that you don't use
any of the old VB functions and go with straight Dot.Net. In the long
run this will make things easier and more consistant.

Lloyd Sheen



Jun 23 '07 #18

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

Similar topics

2
by: Michael | last post by:
Hi, Can someone tell me if I could use Visual Studio 2005 (RTM) alongside Visual Studio .NET 2003? Also, can VS 2005 generate output targeting 1.1? I have code written for .NET 1.1 and...
3
by: | last post by:
is there any performance diffrence between MC++ 2003 ,other .NET languages and MC++ 2005 (cause of an optimization) ???
2
by: Al | last post by:
I'd installed VC++ Express 2005 beta 2 but I couldn't create new projects from templates or when I opened an existing solution, I couldn' build it: 'exe not found!' The same happened whith...
4
by: VB Programmer | last post by:
Just wondering... Have you had any issues using both vs.net 2003 and 2005 beta on your machine? (including the 2 frameworks) Or, do they work pretty autonomously? Any suggestions? Thanks.
0
by: rmk | last post by:
How can I get the 2000 and 2005 versions of SQL Server Reporting Services both working on my development laptop ????? I have ASP.NET 1.1 and 2.0 installed on my laptop. I have Visual Studio...
2
by: steve1rm | last post by:
Hello, I have a version of 2000 already installed which I still need. However, I recently installed 2005, something did not install right, so I was forced to de-install it. However, when I go to...
1
by: MartyL | last post by:
I created some textboxes in VB 2005 with borderstyle property set to "Fixed3D" and the textboxes appear on the form as 2D with a thin black line boder ala VB 3.0. I don't see any service packs for...
1
xarzu
by: xarzu | last post by:
Has anyone else seen that the msdn examples do not compile in VC 2005? There seems to be a Skipped Rebuild All message that comes up when I compile.
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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
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
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

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.