Join 307,118 VB Programmers for FREE! Get instant access to thousands of VB experts, tutorials, code snippets, and more! There are 1,982 people online right now. Registration is fast and FREE... Join Now!
Does anyone have suggestions as to how to compile everything within a .exe that is necessary to run the VB6 job? The idea being no client installation required, or something. Thanks for any ideas.
The VB6 runtimes are present in all XP and Vista systems. I never install my programs, I just give the user the exe, and they place it in a folder. Use 'KISS' and avoid as many external dependencies as possible. Just use the intrinsic controls that do not require adding References/Controls. The only References/Controls that I have to 'Install' are The ADO Reference, and a grid (I use the free SGrid2). I have created a 'stand alone' installer for those (with no application code in the exe). The user just has to run that once. You can add extra functionality by using UC (User Controls) which are 'ctl' modules that you include within your project. They are compiled into it the program(no installation required).
Hey guys, im a very inexperienced coder in a programming class, and I am supposed to create a VB backgammon game. I have no idea where to start and I would be pleased if someone could come to my aid. Thank you
For starters, this thread is only for tutorial suggestions, second, without installing the application there is no running it.
hi there, im new at vb6 and just want to ask how can i make a .dfx file understandble for a vb6 code.. im doing this because im openingg a .dfx file in visual basic and control a step motor by this... i plan to make a simple form in vb6 which automatically converts a .dfx file to a VB code when it is opened through a dialog box.. thanks!..needed help badly...running out of sources...please!
This post has been edited by markguerina_08: 3 Jan, 2008 - 09:00 AM
For you VB6 programmers I am currently working on a tutorial for adding a system tray to your application, since it's not built into VB6 like it is in VB.Net.
For a tutorial i think along the lines of "Creating Controls via Property Pages" and what i mean by this, is...
Say if you have a custom control but you want to make it more userfriendly, for example, the status bar control under the Microsoft windows common controls. When you click on the Custom item in the properties window you can click 'Insert Panel'. and it will add a panel to the control on your form, i was just wondering if there could be a tutorial for that but for user controls.
Like for example, creating a label, I have searched everywere and i cannot seem to find a tutorial, or anything along the lines of such a thing.
Hope this is worth looking into. Kind Regards Devon
This post has been edited by devonknows: 11 Feb, 2008 - 12:24 PM
If you would like to see something in Classic Visual Basic post your request here and someone will write a tutorial on it. Remember, most of us have full-time jobs and families so you're not going to see your tutorial in a matter of hows, most of the time it will take a while, but whoever has decided to cover it will let you know here that they are working on it.
Hello Friends,
Download Visual Studio 2005
{Link Removed}
E-Books for Visual Basic & Java {Link Removed}
Download EBooks freely {Link Removed}
About UML( Unified Modelling Language) {Link Removed}
This post has been edited by PsychoCoder: 26 Feb, 2008 - 11:50 PM
I am using this code to add some buttons in my page ... how cand ai put some onclick/click events on those bottons .onlick=<function(parameters)> doesn't work so i was wondering if u can help me
Note: I use another visual basic code to take some rows out of a mysql database an display it on my page i want to have several buttons on my page witch call the same functions but with different parameters !
Thanks!
CODE
'Set btnObj = Controls.Add("VB.CommandButton", "delete" & id) ' With btnObj ' .Visible = True ' .Caption = "Delete" & id ' .Top = 720 ' .Left = 120 ' .Width = 2175 ' End With
I am very new to Visual Basic Programming...still doing a lot of Tutorials and reading books to learn what I can. But the best way to learn for me is to find a project and figure it out from the ground up....of course it helps to have tips or tutorials to help newbies like me.
So here is my suggestion for a tutorial:
Here is my task:
1. I need to automatically create a Table of Contents,Table of Figures, and Table of Tables in my Word documents. This would be easy to do if the document already had all the Figures or Table references indexed. But if the document is clean with no indexing done yet...then this leads me to issue two... 2. How can I create a macro or visual basic code that will go through an entire document and find all captions, Table, or figure references?
Examples:
Example1: Refer to Section 3.2.4 – Refer to text here. Example2: Table 1 – Table text here. Example3: Figure 18 – Figure text here.
These examples may be found scattered throughout the document.
I need to create VB code that will automatically find them, then highlight the caption found, create a new caption while removing the old.
Once the captions have been created, then the code needs to go through the word Document text and find references to the Caption Figures and Tables and create links pointing to the captions.
Finnally, the Table of Contents,Table of Figures, and Table of Tables can be automatically created.
I have some code already created, and am working on pieces of other code I think I need, but need to put it altogether and perhaps figure out in the tutorial the best way to go through this process in an orderly way as I am not exactly experienced and I don't really know what I am doing...
I hope this make sense, but I am certainly willing to detail further and post my code if needed. Since I am new I hope for a little direction here.
can u help me regarding how to use sub in module using visual basic 6 and when to declare it as public, private and just sub. because i have use it in my module Sub ViewRecord() end sub
and call it in
Private Sub Form_Load() Call ViewRecord end sub
but it produce an error it says invalid use of property
hi sir/ma'am... is it possible to send sms from vb to phone? i need a topic for my thesis project.. pease help me..give me suggestions... thanks..
QUOTE(PsychoCoder @ 11 Aug, 2007 - 09:56 AM)
If you would like to see something in Classic Visual Basic post your request here and someone will write a tutorial on it. Remember, most of us have full-time jobs and families so you're not going to see your tutorial in a matter of hows, most of the time it will take a while, but whoever has decided to cover it will let you know here that they are working on it.