Thank you for your reply. I'll try...
xshi005
Posts
-
Can't debug for ASP.NET -
Can't debug for ASP.NETHi there, I am using VB.NET 2003 to develop a ASP.NET web application. This week I have some problems: 1) I can't debug ASP code in VS.NET environment. It just does not stop at any break point when I start debugging by pressing F5. I can only debug it by right-clicking the project name in Solution Explorer and choosing Debug in the list. 2) Start page does not work. I set the start page of the web project by right-clicking the page name in Solution Explorer and choosing "Set as Start Page". It always works until this week. Whatever page I choose, it just start with a specified page (not the default page) after I press F5. I checked my configuration manager and web.config, they are all in debug mode. Does anyone know what the reason for the problem? Thanks a lot. -- modified at 17:52 Thursday 24th November, 2005
-
Use SQL Server 2000 in Windows CE?Hi everyone, Might be a silly question: 1) Does anyone know if I can use a SQL Server 2000 database instead of SQL Server 2000 CE database in a Windows CE application? 2) Any recommendation of books or website links that I can use to get an initial idea about the database programming of smart devices with VB.NET? I am really a new bird in this area. Thanks a lot. Frank
-
Access key does not showThank you very much, Dave. I don't feel guilty now. Cheers. Frank
-
Access key does not showHi all, I have a problem when I create a project with VB.NET. I try to assign the access key to the controls in a form by set the text property of the controls with one ampersand (&), e.g. button1.Text = "&Print". When I run the app, it only shows the button as "Print" intead of "Print". However, after I press Alt key, the shortcut appear in the form. Does anyone know the reason for that and how to fix it? Thanks a lot. Frank
-
How to display menu in a child form of SQL Server Enterprise ManagerHi there, Just a small question: Does anyone know how to display the menu bar on the top of a table screen in SQL Server (2000) Enterprise Manager? There must be a setting somewhere that I could not find out. I really hate to use the menu in the main form everytime. Thanks a lot! Frank
-
Auto-scroll ListViewThank you, Pablo.ar. Frank
-
Auto-scroll ListViewHi Pablo Thanks for your reply. But I think you might be talking about some list control other than MS ListView, since ListView does not have ListItems property (while it does have Items property). And your statement can be: lvMyListOfItems.Items(lvMyListOfItems.Items.Count - 1).Selected = True This statement will select all the items after the loop completes. However, it can not auto-scroll the listview while loading items. It is another stupid MS control, since many other third-party controls can do it without any code. Meanwhile, kostasV provides a solution that meets my need. Thanks again for your time. Frank
-
Auto-scroll ListViewThanks a lot, kostasV. That is really what I need. Frank
-
Auto-scroll ListViewThanks, Pablo.ar. But it does not work, because what I need it is to always show the last item while the items are loading. Frank
-
Auto-scroll ListViewHi there, Is there anyone know how to make a windows form listview control always automatically scroll to the last item when loading lots of items into the list? Thanks a lot. Frank
-
Find reserved keywords for SQL ServerHi all, Is there any way to find out if a word is a reserved keyword of SQL Server with .NET? Or how can I retrieve all the reserved keywords of SQL Server? Thanks. Frank