2
Answers

Changing the name of a namespace

Bob Congdon

Bob Congdon

15y
2.9k
1
Another newbie question. I wrote a word processing application which began as just an online school class exercise which just kept on growing until I now have something I'd like to publish and share with family and friends. The namespace for my project began as "Lesson9Prog1" and that's the name it still has. I ran a publishing test and then installed it via the setup.exe program. Now I have an application installed called "Lesson9Prog1". For obvious reasons, this is not the name I want my installed application to have. I'd like to know how I can publish my application with a name such as "Bob's Word Processor" or something similar. Can I just go into the program and change the name of the namespace without screwing everything up or will MS Visual C# Express edition make all the necessary adjustments to the project if I do that? How can I publish my app with a name that's different than the namespace? THANKS!!

Bob C.
Answers (2)
0
tejal bhesaniya

tejal bhesaniya

NA 53 13.2k 12y
SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[YourTable]') if it exist then it will display the result,,,with table name ,,,tpe and everything
0
Naresh Avari

Naresh Avari

NA 811 1.6m 12y
Select your database and open new query window and

EXEC sp_tables @table_type = "'table'"


0
Jignesh Trivedi

Jignesh Trivedi

NA 61k 14.2m 12y
hi,

there are two tables sys.tables and sys.objects, in which data base maintain table information
please try.

select * from sys.tables where name = 'Table1'

select * from sys.objects where type = 'U' and type_desc = 'USER_TABLE'


hope this will help you.