Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
Risqi Aris
Starting Member
13 Posts |
Posted - 2011-10-18 : 21:16:31
|
I need a data type that can store the "enter" character .. What data type should I use?pleace, help me... |
|
tkizer
Almighty SQL Goddess
38200 Posts |
|
Risqi Aris
Starting Member
13 Posts |
Posted - 2011-10-18 : 23:37:34
|
but when I show the data from sqlserver 2000 to vb 6 the result is no "enter" and even straight appearance there is no "enter".. |
|
|
Risqi Aris
Starting Member
13 Posts |
Posted - 2011-10-18 : 23:37:40
|
but when I show the data from sqlserver 2000 to vb 6 the result is no "enter" and even straight appearance there is no "enter".. |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
|
Risqi Aris
Starting Member
13 Posts |
Posted - 2011-10-19 : 00:21:04
|
when I browse the table and hold my press enter but the data from the table into 2 ...is there another way? |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
Posted - 2011-10-19 : 00:26:40
|
I have no idea what you are doing but it's like you aren't using a query window like you should be. Here's a test to show that this can be done. Make sure you view the output in text and not in grid mode. create table t1 (c1 varchar(100))insert into t1 values ('testtesttest')select * from t1drop table t1The above script returns this output:c1----------------------------------------------------------------------------------------------------testtesttest Tara KizerMicrosoft MVP for Windows Server System - SQL Serverhttp://weblogs.sqlteam.com/tarad/Subscribe to my blog |
|
|
Risqi Aris
Starting Member
13 Posts |
Posted - 2011-10-19 : 01:02:25
|
so i have to display the textbox vb6 using and not using DataGrid? |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
|
Risqi Aris
Starting Member
13 Posts |
Posted - 2011-10-19 : 23:16:53
|
ok thanks for all your help ... |
|
|
|
|
|