Answer Questions
KevinMcConathy Where to get .NET 2 Distribuable package and how to save on my server for click once?
OK..Dumb question I know... When I deploy an app and the client does NOT have .NET 2, how can I have them pull those files from MY SERVER instead of Microsoft's Also, where can I download the files. I saw in click once I can choose a place where my prerequisites come from..I am guessing that is part of the trick, but don't know how to exactly implement that and what files I need. Thanks! Carl http://msdn.micro ...Show All
JDevitt Adding references (dll) through code (at app runtime, of cource)
Hi! I am having this question: I am designing a application, in which, you could open a DLL file, using the OpenFileDialog, in the dll, there will be a class for example, Main . Now, These classes would be all different (much like plug-ins in any plug-in supported apps) So, When the user click 'Open' the application should add the new reference, through VB code, and load it's data in to the viewing application. Here is, for example, code of a DL ...Show All
adamjake VB .NET closing forms and setting focus
Hi Everybody, I have not been able to figure out how to close one form when I send the user to another form with VB .NET. In VB 6, this was no problem. Anyway, I have a logon form (frmLogon) and it's btnEnter code will send the user to frmMain if they type in a good user name and password. From frmMain, the user can select any number of forms to go to via a main menu. The problem is that I don't want the users to have five or six forms open o ...Show All
Ajit_2005 Config file on Class Library ??
Got a solution with 3 projects, a Web Service, a WinForms (MyUI), and a Class Library (Foo). MyUI calls methods in the DLL that access the web service. The DLL has project config settings that store the URL of the web service. I compile the solution and it compiles all 3 projects. In the DLL's bin dir it puts the foo.dll and foo.dll.config files. However, in the WinForms bin dir it puts the MyUI.exe, MyUI.exe.config, and foo.dll; it doesn't i ...Show All
dinh xuan dung vb 2005 command window question while debugging
seems that in vb 2003, if you had a break point and were using a command window to check on some values, that it used intellisence.. so you didn't have to type everything in. in vb 2005.. either it doesn't have the intel or i don't have it turned on. Anyone know how to turn it on.. not the command window. but the intel sense thanks shannon Hi Shannon, The command Window in VS 2003 is now the Immediate Window in VS 2005 A ...Show All
Tim erin Network Drive information
Smart people, I have a simple app that looks at a couple of problem servers to see if they still have a heart beat. I want to expand this a tad whereas I would like to look at some other servers and see what their disk capacity is. This is the code for checking the heart beat My .Computer.Network.Ping( "Mars" ).ToString) – Mars being the server And this is what I need help with getInf ...Show All
ruvyzzang How can I access the audio equalizer level information?
Anyone know of a way to access the levels for pitches of whatever if playing out of the speakers Every audio program seems to have those little bars bouncing up and down in realtime so it can't be too hard, right I actually need them in number form because I'm writing a program that uses basic pitch levels to identify non-dynamic sound files when they're played (don't ask, it's a long story but it will work, lol) ...Show All
jeff w smith SQL Server Connextion
I am new to VB. I am trying to connect to a SQL Server 2005 data source by creating a new data source. I am receiving the following error: "An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 25-Connection string is not valid)&qu ...Show All
wowpeter How to Telnet a UNIX Server?
Hi, I am having a problem with creating a Telnet client. The problem is teminal emulation. Can anyone help me Cheers Shifaz ronks wrote: I wrote a telnet application in VB 6 to access a Unix server, using Dart Software's ActiveX telnet component. I see they have one for .NET, described at http://www.dart.com/dotnet/telnet.asp I haven't used that product, and it's not cheap, but the ActiveX one has worked very well a ...Show All
andy18 OpenFile()
I need help using open file, a module (.dll) actually. I have somthing like this: dim myModule as [Module] and i need to make myModule equal somthing like myModule = openFile("module.dll") I looked for examples online and found nothing of use PS. Actually the goal here is I am trying to inject a dll into a process of mine. I am having a problem though with the proper decleration of the dll. If anyone ...Show All
jyckas Vb.net Object oriented features?
Hello, I am developing an application. Although I code it and its working properly i just want it to be better in any manner. The part of the thing i have heard is that VB.net has some good object oriented features. Can anybody take a look at my code and give me any idea what do i need to do to have some efficient and good code Private Sub Tbl_propertyDataGridView_RowHeaderMouseClick( ByVal sender As Object , ByVal e As System.Windows ...Show All
CDS DBA How use proxy for WEBBrowser control in VB2005
How use proxy servers and change its programmatically with WEBBrowser control in VB2005 for navigating websites ...Show All
DW Developer Relase the Fix for Visual Basic Compiler Error &H8013141e&
Hi all i just want to know when is going to be released the fix for visual basic compiler error &H8013141e& this is already reported in the microsoft productfeedback site. i think this is a very urgent patch that must be released asap and please do not repond that i should go back to vs.2003 because i have lots of code developed in VS 2005 to framework 2.0 .. JSB PS: this error pisses me of, i need to res ...Show All
Paul Looijmans Photo Matching Database
User selects a picture and querys the database for a match. How do I write the Code for this SELECT id, image, description FROM pictures [database] WHERE image EQUALS picturebox1.image I am concerned that the "image" format stored in the db will not match picturebox1.image and that I probably will have to convert picturebox1 into a binary array to match the format already in the database. Furthe ...Show All
Tom J. Getting data from a database using a primary key
Hello. I am having trouble with a program. I want to be able to get some data from my database table, given the value of the primary key. This is what I have so far: projectName = DbDataSet.Projects.FindByid(projectId).name where projectName is a String, and DbDataSet is my dataset. The variable projectId is the ID of the row I want to extract the data from, but every time I run my code I get a NullReferenceException. I know ...Show All
