Hi Amrendra, You need to add reference to excel object library to ur project. in code , cretae one excel object using createobject("excel.applicatione") this...
Ohh yeah Installshield is the prefered one.But if you are looking for a free tool, try Inno Scripting. Its the smoothest and simplest tool and the wizard will...
replace : ifhd += " F" & i.ToString ifhd = ifhd + " F" & i.ToString ''' if tht is what you intend to do., VB does not work the way 'C' does...let me know if...
Not sure if this would be of help. On the main MDI form , put a picture control and inside these control load all ur child forms .. the mdi is a big time mess...
can you pls confirm if the system is slow due to loading/unloading of forms ... tht shd not be the case.how did you load the child on mdi ? put in a control...
I'm new to this list...and hoping to be involved in a lot of great dialogs with other programmers. I've recently moved from VB6 to VB2008. I have read a lot of...
Hi group members, Â I am doing one project on multimedia. Currently i am in initial stage of it. Â Now I want to play DVD in software. which is perfectly...
Yes it is slow due to loading the forms, by changing the autoload property to false and then only loading each form as needed it is much faster and I don't see...
Hello I am a new user, I need ur help regarding Visual Basic. I have just started studying it on my own. I need ur help regarding any book which you may refer...
I wrote a program that uses a file on the C: drive. In this file is all the data the program will need to load background pics, saved user data,password data...
I am creating a vb.net assembly for com interop with a vb6 application. In Visual Studio 2005, when I try to create a setup package with the Register for...
Make sure on the References tab of the vb2005 solution that you have set the CopyLocal property for the vb6 com item is set to True. That solved the same...
Hello everyone, I have a question, if you can answer it please remember I am a new to programming. Looks like the group has dealt with this before but I don't...
Step:1: U hv to download excel driver.. Step:2:I give u the sample coding to connect to excel file.. con.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data...
U can add file, where the project file and database resides for that, During deployment add that txt file along with ur exe file...the *.txt will be installed...
hello i will soon tell you with in a week otherwise  you should concern to www.vb.us the from i have learnt. Unlimited freedom, unlimited storage. Get it now,...
Dear all, Iam beginner in vb.net. May any help me to read and display dicom(.dcm) file in vb.net(pure) without using component from 3th party. I was try to...
Appreciate you taking the time for the response. The references tab is for references that the project needs, so perhaps I haven't made myself clear when...
thanks, I will give it a try very soon ... From: madhan2004_tup <madhan2004_tup@...> To: VisualBasic_Official@yahoogroups.com Sent: Monday, September...
Hi. was wondering, is there any info, from say microsoft, about setting up accessible forms, and controls in vb.dot net 2008 express? about what sizes, for the...
Hi. was wondering, is there any documentation, online say from microsoft, which outlines the default sizes to place on controls for developing windows ...
Hi, I got vb from downloading at microsoft/express by the guy at the computer store who put it on a cdrom, because I can't download it from a computer at the...
... Try this" Open "filename" for output as #1 for i=0 to grid.cols for j=0 to grid.row print #1, grid.textmatrix(i,j) & "," next j print #1 next i close #1...