Answer Questions
Av_Steiner1 TSweb modifications
This will sound pretty simple to most but for a Sysadmin I'm missing something basic. I want to edit the default.htm of the tsweb page to launch a program on connection. I have tried to follow the following:- http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnwts/html/w2ktsac.asp Can anyone dumb it down for me as the following is not clear:- How do I edit the IMsTscSecuredSettings interface properties and Where is before the con ...Show All
Matra How to make slideshow transition with Picturebox
You've seen those fancy wipes, fades, cut and swirls in slideshows... now, how do you do it with the Picturebox Yes, I do know how to use pictureboxes in transition including: the 360 slide, the running man and windowing.... but it's all VB6. However, net introduces new ways to program and I was looking to learn what's possible with the power of .net instead of using APIs. Y ...Show All
handheld design Installing Visual Basic 6.0 on .NET Server with VB .NET installed
I'd like to know if there are any issues involved with installing Visual Basic 6.0 on a Windows Server 2003 server with VB .NET installed. Thank you. Hi Steve, Thanks for your feedback. No, that's the issue. I do not plan to upgrade my VB6 projects. I am very concerned about having the compiled VB6 application fail in other non-.NET environments possibly because .NET may have introduced something into VB6 No need to worry - there is ...Show All
Dennis Vys Line numbers in stack traces
Hi there! Quite new to VB and .NET, just wondering where the line numbers have gone off of the stack traces See i'm quite used to Java, and I find it really easy to just fix a bug as i can see exactly where in my code the error has happened, java will say "yep, this method, line 12, you spelt the variable wrong" - you get the idea. With VB and .NET i've got this: System.Collections.Generic.KeyNotFoundException: The given ke ...Show All
Speedo Waiting between commands
Hi Is it possible to let vb wait a few seconds before it wil excecute the next command Thnxs it worked :D Isn't there an other way I have made a simple sprite and I want to make it jump, but it moves so fast that you cant see it and I want to take a short rest between the times he moves. to be a little clearer her's the script If e.KeyCode = Keys.Up And ...Show All
pdinesh RaiseEvent in VB.Net
Hi * Can someone explain to me how i can handle this linse writen in C# in VB.Net C#: { if ( this .ErrorEvent != null ) this .ErrorEvent( new ArgumentException("blablabla"), null ); } i tried it like this but it is not workin: VB: If Not ( RaiseEvent ErrorEvent Is Nothing ) Then RaiseEvent ErrorEvent( New ArgumentException("blablabla"), Nothing ) En ...Show All
Brett Coombs Please Help Me in Visual Basic 6.0 SP6
I have an idea where i want my application can choose which database they are going to insert their data in. So, my question is, how can i do that in my programming. As example, let say i've 3 batch of files. 1 batch of files will store in 1 database, and also other two. So, how can i make my user to select their database which one database they have to insert the data As your information, i'm using Microsoft Access 2003 as the database. A ...Show All
David_A. very poor design
i know i am new to vb, but i am very disappointed in some areas. 1. the help sucks, almost every item i click on i get an error. all of the suggestions are useless because it's a link problem. they just don't work. 2. and who in their right mind would store files that have to do with projects outside the folder named for that project makes no sense. if i want to back up a project, i shoud be able to go to that folder and make a copy. but no, th ...Show All
Nele How to determine if you are at a new record???
I am new to VB .NET. I am designing a windows form and would like to be able to determine if the form is at a new record. Is there any way to do this. I searched through the forums and could not find anything on this topic. Any help would be greatly appreciated. Thanks, I didn't think about using the source.count. If the binding source has a record counting property, the new record will be at Source.Count-1 The form ...Show All
walsh j Help with richtext box
Hi Please anyone help me i want to know how can i align text into richtext box Thanks Hi , try this RichTextBox1.SelectionAlignment.Left ...Show All
Mike Hulen XML comments
My group is attempting to standardize on XML commenting for all of our classes and methods. We like the "Insert comments" option in VS 2005 but would like to add an additional tag <history> to the comments section. I know that we could probably do this manually each time we add a new class, but I would like to be able to have this new section come up automatically when we insert the comment. Is there a way to modify the XML co ...Show All
SiJP Can't start appliction with sub main
I tried to start my application off with module1, just as a test to see if modules worked the same. Here is my module Module Module1 Sub main() Dim frm As New Form1 frm.Show() End Sub End Module Error 1 Protected types can only be declared inside of a class. C:\vs2005Projects\ModuleAttampt\ModuleAttam ...Show All
Faldegast datasources window
For some reason my datasources window disappeared. None of the buttons on the toolbar nor the additional windows are the datasource window. I want to add a table to my dataset. I've done it before, but somehow the secret is lost. dennist You should be able to show the DataSources window from the top level menus; 'Data'->'Show DataSources'. Let me know if that doesn't work. Lorenzo Mino ...Show All
zhangshaolin Dataset Problem
Is it possible to create a single dataset with unlimited datatable in this case, would it causing too much memory cache using and slow down the dataloading time as well And also is it possible to bind a dataset column 4 as a datasources to a combobox Hi, Yes, you can have a dataset with many tables. But I doubt that its " unlimited ". More memory would be consumed as your dataset grows. I think its not wise to dump all of your tables ...Show All
Hoqenishy Is it possiable to create a C/C++ Style Macro VB.NET???
Does any one know if it is possible to create a C/C++ style macro that can be used through the namespace as needed Example: The code below will be used in several classes throughout the namespace. I guess I could develop a base class to inherit from; however, some of the classes will need to inherit from other classes so the base class solution will not work. Your thoughts… # Region "Registry - Properties" ...Show All
