Answer Questions
Polar Bear use flash within vb.net application
I have developed a simple application, my friend designed a startup flash animation (.swf file) for me, but i have no idea how to combine this file with my application so that it will appear every time when i run the exe file of my application. plz help thx DMan1 very much, i tried this: Private Sub frmLogin_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load &nb ...Show All
Sidhartha File association
Hello people, quick question with hopefully a simple answer. Using VB.NET2003, after I associate a particular file type with my application, how do I go about coding my application to load that file upon execution For example, notepad.exe is simply an application, but whenever you double click a .TXT file, notepad loads and automatically loads the .TXT file into it's workspace. Thanks very much in advance. Thanks Spotty. Once again ...Show All
andcrumx VB Futures, VB 2005 Essential Content, Other Content From PDC '05
Hi Forum Readers - I just wanted to give you a heads up about some of the pretty exciting announcements and content coming out of PDC '05 this week, so you can share in the fun. I discuss the overall activities and Essential Content available from PDC here: http://blogs.msdn.com/pauly/archive/2005/09/12/464207.aspx I discuss the announcements of LINQ and next generation Visual Basic features here: http://blogs.msdn.com/pauly/archive/200 ...Show All
S_J Overloads Question?
I've been testing out some of the Inheritance features in VB 2005 and I came across something I don't understand. When I create two methods in my subclass with the exact same signature, intellisense underlines one of the methods with a blue squiggly line and warns me that I have multiple definitions with the same signature. This is the behavior I would expect. When I create two methods, one in the base class and one in the subclass, with t ...Show All
Samit Package and Deployment Wizard
Hi All I have created a deployment package using the package and deployment wizard. However, when I run the setup package I get two errors: 1. c:\windows\system32\msvcrt.dll - The destination file is in use. Please ensure that all other applications are closed. 2. An error occurred while registering the file 'c:\windows\system32\msado20.tlb' If I ignore the errors the program still installs and runs without any problems but it is har ...Show All
Stephane T. Clearing a checkbox
Just making a clearClass that clears textboxes, checkboxes etc. Public Class ClearClass Public Shared Sub ClearTextboxes( ByVal insideWhat As Control.ControlCollection) Dim txt As Control For Each txt In insideWhat If TypeOf txt Is TextBox Then txt.Text = "" End If Next End Sub Public Shared Sub ClearCheckBoxes( ByVal insideWhat As Control.ControlCollection) Dim cb As Control ...Show All
Torsten_Katthoefer Import a word macro written in Microsoft Visual Basic???
How would I go about getting a macro within word to implement in a current vb.net application. Can you import a macro or .cls Has anyone ever done this Okay, I'm not a real big enthusiast on macros but from what I know, these are nothing more than routines that get fired when needed. So, you should be able to copy and paste them into your VS project. Of course, you would still need to make sure the ...Show All
mking binding data source to ms chart control
how to bind the data source to the mschart control thanks venkat ...Show All
Ian Ferguson If Date_Created is null then Date_Created = Date
How do I get this to work. I am using VBA in MS Access. I have a command button that when I click on it I want it to insert the date into a date filed I have on the form only if there is nothing in that field to begin with. If Date_Created is null then Date_Created = Date End If if IsNull( Date_Created) then Date_Created = Date End If The above code is VB 6 use IsDbN ...Show All
E10T Adding a new DataRow to a DataGrid?
Hi again, Is there a simple way to do this I have figured out the first half of a "cut and paste" operation. Now I need to be able to add the copied row back into the datagrid as a new row. Clues MRW You're going to want to access your Database information through your DataSet. The DataSet is basically a class converted version of your DataSet. You would do something like... MessageBox.Show("Row Data" & DataSe ...Show All
Wainz Refractor Crash
I installed Refactor 1.0.4.0 in Visual Studio .NET 2005 Beta 2 and it crashes every time I attempt to load the add-in. I uninstalled Refactor and attempted to install again with the same results. Finally, I reinstalled Visual Studio .NET 2005 Beta 2 with the same results. I am using a development testing computer that has Windows XP SP 2, Microsoft Office 2003, Visual Studio 6.0, and Visual Studio .NET 2005 Beta 2 installed. No other application ...Show All
tomatgdd Help needed, Program crashes !
Hi, I am doing a program that should pass a large memory chunck to a DLL file the problem is that my code crashes when I call the RtlMoveMemory API and I dunno why, here is the place in my code where it crushes If CommonDialog1.FileName = "" Then Close Exit Sub Else Open CommonDialog1.FileName For Binary Access Read As #1 Len = SourceFile End If FileLength = FileLen(CommonDialog1.FileName) Debug.Print "Filelength ...Show All
danwsc How does VB compare to C# part 2
I am sorry but my question was NOT answered at least not technically. But, what is clear is that there is a lot of strong feeling against VB's syntax that does not exist against C#. Several post indicated that they would not hire a VB programmer unless they programmed in C# syntax. I really find that disappointing. I thought the purpose of the framework having several syntaxes was to promote choice for the developer and make that choice s ...Show All
Luisgph Refactor slow and not quite stable
1. Opening VS2005 is slower, and opening a project is slower. No big deal, but if you start opening files before DXCore is finished loading, it hangs for quite a while. 2. Cursor movement is jerky, and somewhat annoying. This is on an AMD 3200+ w/GeForce6200. 3. Several times I accidentally hit both mouse buttons and/or keyboard keys, causing an IDE crash with loss of data. I mention this only FYI; these would not be big problems if I ...Show All
barrysolomon1 [VBA] problem with blank input fields
Hi all, I have written a short form in excel that executes a calculation based on user input from text fields. My problem is that when the fields are blank, and a user hits Calculate... there is a debug error. Is there anyway I can have a message box pop up and tell the to enter information and take them back to the input fields The code for the button is the following Private Sub CommandButton1_Click() dist = Sqr((TextBox1.Val ...Show All
