473,543 Members | 2,365 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Visual Basic .NET Forum

6
2,594
thread by: Ronchese | last post Nov 15 '06 by: Phill W.
Hello, is there any way to get the name of the current running procedure? For example: Public Sub Test( ) 'do something '...
2
942
thread by: GS | last post Nov 15 '06 by: Phill W.
If I want to construct a dictionary with a string key of max length of 16, value of a list, an object or struct, say mystuff. mystuff consists of 2 properties: sequence as integer string value with max length of 2048 how would I go about it? I expect only about 50 to 80 entries in the dictionary
2
999
thread by: Li Pang | last post Nov 15 '06 by: Martin Honnen
Hi, I know that it's easy to convert dataset to XML. However, I want to know if there is an easy way to convert dataset to XML object. My concern is to convert data between dataset and XML object without using an external file. Any body has a solution? Thanks in advance
3
1,524
thread by: Mike Edgewood | last post Nov 15 '06 by: Chris Dunaway
Is there a simple way, shortcut, or macro to create a property skeletons? I would live to be able to type a name and a type and have the property created based on that info. Private mLastName as String Public Property LastName() as String Get Return mLastName
0
998
thread by: Raj | last post Nov 15 '06 by: Raj
Hi All.., I have a VB.Net Windows Application.. I need to Run this Exe From Some Other System(Client) and I need to Upload some specified files to the Server System.. Now my doubts are.. 1) Is client-Server concept is Possible in Windows Applications..
0
821
thread by: Raj | last post Nov 15 '06 by: Raj
Hi All.., I have a VB.Net Windows Application.. I need to Run this Exe From Some Other System(Client) and I need to Upload some specified files to the Server System.. Now my doubts are.. 1) Is client-Server concept is Possible in Windows Applications..
2
1,521
thread by: Nicola Taibi | last post Nov 15 '06 by: rowe_newsgroups
Hi, In a visual basic .net 2003 application I use an hexadecimal number to encrypt a file as a symmetric key. Is it possible to detect, within the executable, the number above to consequently decrypt the same file? How secure is to hide an hexadecimal number to be used as password or key inside an executable file? String are easy to find. ...
1
853
thread by: Raj | last post Nov 15 '06 by: Spam Catcher
Hi All.., I have a VB.Net Windows Application.. I need to Run this Exe From Some Other System(Client) and I need to Upload some specified files to the Server System.. Now my doubts are.. 1) Is client-Server concept is Possible in Windows Applications..
1
5,352
thread by: Carlos | last post Nov 15 '06 by: Robinson
I'm getting RPC error when I try to register analys32.xll in the VB program. ErrorCode=-2147417851 Message="El servidor lanzó una excepción. (Exception from HRESULT: 0x80010105 (RPC_E_SERVERFAULT))" Source="Microsoft.Office.Interop.Excel" StackTrace: at Microsoft.Office.Interop.Excel.ApplicationClass.RegisterXLL(String Filename) at...
7
2,560
thread by: Holger Boskugel | last post Nov 15 '06 by: Tim Patrick
Hello, I'm looking for a solution to hide the default constructor of a class. In VB6 there was a class type of "Public Not Creatable". I have tried to write the default ctor as friend or private but the compiler adds a default ctor. Actual I use the way to set the default ctor as protected and inside I raise an error if this ctor will be...
2
1,374
thread by: martin1 | last post Nov 15 '06 by: Tim Patrick
Hi, All, I used to right click on solution explorer to setup start point, but when I right click and cannot see setup start point anymore. I have 2 window forms and want to set up one window form start first. Ayone can help this out? Thanks, Martin
2
1,870
thread by: VB User | last post Nov 15 '06 by: Steve Long
I need to which time interval a given time is within. What is the function I can use?
4
4,606
thread by: snow | last post Nov 15 '06 by: Paul Clement
Hi all, I have a VB.net program installed in a xp home with sp2,after installation, get error "Cannot open a database from a previous version of your application. The database is a 97 Access file. Could someone tell me what cause this problem? Thanks for your help!
8
1,516
thread by: JackBlack | last post Nov 15 '06 by: Chris Dunaway
Hi, all! Trying to build a stand-alone vb.net app (from VS.Net 2k5) that will let me just take the EXE from the dev box over to a client box and run it, as-is, without "installing" it. I was under the assumption that this was still possible, but I seem to get security errors on client boxes when I just run the EXE on the client machine. ...
4
2,589
thread by: Arne Beruldsen | last post Nov 15 '06 by: Steve Long
I'm a recent convert to VB.net from VB6...and I can't believe they don't support control arrays. I have an app that uses a ton of Control Arrays...mostly labels and text boxes. I need some guidance on how to proceed...including any third party tools. Thanks
4
1,744
thread by: BillE | last post Nov 15 '06 by: Chris Dunaway
Does a subclass have to import namespaces which were already imported by the superclass? I have a base class which imports the System.Data.SQLClient namespace to use the dataset member. When I inherit this base class, the subclass must also import the System.Data.SQLClient namespace to use its members. I thought that a subclass would...
2
1,518
thread by: denisrcharron | last post Nov 15 '06 by: Dick Grier
Hi I need to create a web page to access a serial port from any computer around the world via IP. Programming the Port is not a problem. How can I access any PC in the world ? Denis
4
2,634
thread by: dgk | last post Nov 15 '06 by: dgk
For the whole machine, not a specific process. I looked at an earlier thread by Cor and Ken Tucker, but I don't find anything in the management that looks like... Oh. Here is a really good site. Really, I don't know the guy but just found it via Google. I guess I don't need to post this anymore but just in case someone else is looking for the...
1
1,321
thread by: Robert Dufour | last post Nov 15 '06 by: Robert Dufour
I know in Vs2005 you can define a splash form in the projection's configuration, but if you use the application framework to define a splash form, you must have the startup object be a form in the project and I have to have a sub main as startup object, so I can't use the application framework. What code is required to have a splash form...
1
899
thread by: Robert Dufour | last post Nov 15 '06 by: Robert Dufour
I want to be able to set my application's UI to appear in English or French. To that end I have a language string value in the app.config file and the following code. Sub Main Curlocale = My.Settings.UserUiLanguage System.Threading.Thread.CurrentThread.CurrentUICulture = New CultureInfo(Curlocale)
7
1,616
thread by: geo039 | last post Nov 15 '06 by: geo039
I have a simple application that takes user input by text and time selected by date time picker. It displays the appt description in one list box and the time in another list box. I need a simple function that checks the times for duplicates. I want to check for a duplicate before it writes to the listbox by returning a boolean (true/false)...
1
986
thread by: Mark | last post Nov 15 '06 by: Mark
Can anyone tell me how to cause the ItemActivate event to fire when scrolling through a ListView using the up/down buttons on the keyboard? Currently the event only fires if mouse clicking a list view item. Any help is most appreciated... Thanks, Mark
5
1,274
thread by: Chris | last post Nov 15 '06 by: Herfried K. Wagner [MVP]
as in title. I need to create a dll library in Visual Studio 2005. The problem is that it must be compiled in .net framework 1.1. I found the way how to do that in C# (http://blogs.msdn.com/jomo_fisher/archive/2005/04/22/410903.aspx), but I need the same in VB HELP!!
5
1,011
thread by: Janet | last post Nov 15 '06 by: Janet
Hi, I need to call a .bat program inside a vb .net program. I need to be able to start the process and kill the process. I have yet to find anything on this but have just started searching. Can someone enlighten me? It was be very much appreciated. Thanks, Janet Heath
2
2,680
thread by: Bill Nguyen | last post Nov 15 '06 by: Bill Nguyen
Is there a way to send output from a .NET app to a selected monitor screen in a 3-monitor client desktop? Currently, my app sends output to 3 windows then I have to move/drag each of them to the proper monitor connected to the desktop. Thanks Bill

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.