Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
 
  HOME    TRACKER    Visual Basic




Very New To Visual Basic And I Have Some Questions


I'm very new to visual basic and I'm trying to create a program which will view a specified website when the URL is typed in the Textbox and Button is clicked.

Once the website is opened. I want my program to search that website for a specific HTML string (ex; <img src="images/ex.gif"> ). If it finds that specified string, it will do a popup notice and say "String Found". If it doesn't find it, It will refresh each 3-5 seconds until that image is found in the source code (the page is a PHP page and it dynamically changes).

Can anyone help me with this?




View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread
Visual Basic 101 Questions
I'm really new when doing projects with visual basic. so please bear with me. I just work out my first project and it turned out really good but I have several questions.

1) I noticed all my macros/vb code ended up on the excel sheet and not a module is this good/bad? It works fine but This created a problem with size which was resolved by reducing lines of useless code.

How would I separate a Private/public sub into module format?
I've tried to separate the two items and put into a module but I haven't broken the code.
(Example this continuous string is all located on the sheet and nothing is in the modules) It happened by mistake but works very well.
Private Sub CommandButton23_Click()
' SISAC Import Utility
destfile = ActiveWorkbook.Name
' open file
inputfile = Application.Dialogs(xlDialogOpen).Show
If inputfile = False Then Exit Sub
inputfile = ActiveWorkbook.Name
ActiveSheet.Range("D1").Select
inputSISAC = Selection.Value
Select Case inputSISAC
Case "v2004a"
CS_SAC
Case Else
' this displays a message if the value of cell D1 is not v2004a.
MsgBox "The file you selected was not a valid SISAC v2004a input file."
End Select
End Sub

Public Sub CS_SAC()
Workbooks(inputfile).Sheets("areas").Range("B2").Copy
Workbooks(destfile).Sheets("SENIOR MEMBER NOTES").Range("b1").PasteSpecial Paste:=xlValues


2) It seems smarter to put items into the module to save and isolate different tasks. So if I put a macro into a module how do I call the module for tasking?

3) what is the difference between a private and public sub


Thanks

Some Questions In Visual Basic 6
Hello everyone,

I have a question in VB 6:

1.) Currently, I am working on an application, which has two textboxes and a button to "clear" them. However, I am not sure how I would go about coding the clear button to reset everything that the user would type in the textbox. Does anyone know how to do this??

If someone could answer this, it would be much appreciated

2 Questions On Visual Basic 6!!!
I have two questions to ask about form interactment and they are as follows;

1. How can you make a form the main form because im sick of having to go back to the start to access the form i want to preview in run mode. Then after i can change it back. Also how do you cut a form out of one project and put it in another project.

2. How can i create really good looking text and make it 3D and basically just make a title that stands out.

Thanks for your help!!!!!!!!

Visual Basic Questions!
Hey Everyone im back again now

Anyways i have two points really to ask. One point is very basic and im sure you can help me with but the other point im just curious about. Anyways

1. When i load forms up i use
load form1
form1.show

and when i close them down with a back button i use
Unload me

Whats the way to load a form and close the previous one leaving just the loaded form loaded.

2. Is it possible to have a button or something where when you leave the mouse over and it opens another part (Like windows does when you leave it over programs) and then you can click on those selections that have opened up.

Thanks

Visual Basic 6 Questions
I'm trying to make a CSS generator, so bare with me here.

How can I make a button that will save the contents of a label to a text file? Either that, or copy it to the clipboard.

And is it possible to make a label pop-up in a new window (full screen) with that button to save/copy it?

Another question, I set up a list thing, now I want it when they click a list item, a frame will appear, such as they click body, and the frame called Body will appear and replace the frame that was there already. Say, Links frame was open, and I want the Body frame to take it's place when body is clicked in the list. Is this possible, where each frame has it's own buttons, inputs, variables, and commands?

One more, I don't know how to put this in question form, so say I have a combpbox, that looks like this:
-Option1
-Option2
-Option3
I want the user to select one, and then be able to output the choice, say they choose Option2, when the click the generate button, Option2's value would show.

Some Really Basic Visual Basic Questions
Hey all,

...I'm stressing the really here. Reading through some of these topics, it looks like you guys are all really advanced in this program.

I, on the other hand, am a complete VB newbie who needs to hand in a stupid project for calculus class tomorrow.

Long story short, we need to create a basic job application, about five or six forms long.

I have no idea how to code the buttons that I'm using. I need to make one command button send the user to the next form, and I need to make another exit out of the project entirely.

How would I go about doing this?

Thanks!

The Most Basic Of Visual Basic Questions
Can someone give me a code example of how to get from one form to another . . . (Hey, I'm a total newbie, what can I say?)


mikeycorn

Essential Questions About Vba And Visual Basic
Hi ^^. First time I am new using vba (thank you dear Boss) so please excuse me for what I will ask.

1. Is it possible to directly call vba functions from a visual basic form?
2. Practical question:

I have to write a program in visual basic 6.0 that checks each fields of a column in a .csv file and compare them to the information in another column in another file; to see if they are in. In fact I have to make an application with it because the people that will use it aren't familiar with using macros.

Until now, my boss used that macro:

Sub checkReceipts()
Range("I2").Select
ActiveCell.FormulaR1C1 = _
"=VLOOKUP(RC[-4],'[myreceipts.xls]Receipts'!C1:C2,1,FALSE)"
Range("I2:I65500").Select
Range("I65500").Activate

/* why can't we directly put something like Range("I2:I65500").Select
ActiveCell.FormulaR1C1 = _
"=VLOOKUP(RC[-4],'[myreceipts.xls]Receipts'!C1:C2,1,FALSE)"??? */

Selection.FillDown
Columns("I:I").Select
Selection.Copy
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
Range("A1").Select
Application.CutCopyMode = False

I don't really understand. Ok, the lookup functions seems to be used to check each field of my myreceipts.xls file but:

why when I am trying to do the same in visual basic 6.0 does it take like 15 times longer?I am probably doing the same the function does which is cheking the information by comparing two arrays...
Is there a function like VLOOKUP I could use directly from visual basic (for my application) that would be as efficient (fast) as this one?

I found something like this while browsing the net:

Dim Arg1 As Object
Dim Arg2 As Object
Dim Arg3 As Object
Dim Arg4 As Object
Dim returnValue As Object
Dim worksheetFunction1 As WorksheetFunction
returnValue = worksheetFunction1.VLookup(Arg1, Arg2, Arg3, Arg4)

But how do I use it? If I am right the returnValue should be my receipcolun I want to check if it is already in my receiptbook am I right?

so I should also make a second worksheetfunction for the .filldown right?


EDIT: Ok, first post AND in a wrong section >.< (I beg your pardon )

EDIT2: yeah, while reading me again it seems a bit confused, but my main question is why when I am cheking my receipts using the vb6 application I made which opens the 2 .csv file (1 with the list to check and the second with all the existing ones) and cheks for each of the new receipt if it is already in the receiptbook... just why does it takes so much longer than the macro my boss used to use?

Questions About Visual Basic In General
what i must knew if i want to be a master of vb, and they still made programs with visual basic now,or there are another thechnologie now.
i want to be adapted to the current technologies for creating a program!!

please your answer will be very very important to my heart!

thanks

Some Basis Questions Visual Basic
hi!
i have got some basic questions..

1)how to pass variables/object to a form? suppose i call the form
using load frmDA? or is there any otjher way?

2)how do i declare a object public (in a form) so that it is accessible to other form..
public a as calendar in the general declaration in the form did not work for me.
i had to add a new module, where i made the declaratiion and then it worked...

3)is it not possible for user defined object to be made public..? or is it that we have to declare all the public objects in a code module ?

thanking you in advance,

x11

Visual Basic Interview Questions
where will i get sample Visual Basic Interview questions for referance.

vnm31

Questions About Menus In Visual Basic
I need some help, could I get someone to describe the general process used to create menus in VB. Also could I get someone to explain the purpose of separator bars, checked items, and multi-level menus. Whats the difference between an access key and a shortcut key? What is a popup menu?

My Visual Basic 6 Questions And Problems
Good Day,

please forgive me if i post in wrong section. below are my problems regarding about visual basic 6.

what are the different between Modules and Class Modules?

what is Related documents? how to use it?

what is the importance of 'Modules', 'Class Modules' and 'Related Documents' in a vb project?

thanx

Random Questions In Visual Basic?
Hello,

I am creating a "Who Wants to be a Millioniaire" for fun and I want to know if and how to make the questions random instead of having all the same questions all the time?


Thanks

I Have Two Questions About Visual Basic 6 And Flash (Actionscript)...
I am developing a program with visual basic 6 and flash/actionscript.
I also want the app to include a internal console window in one of the forms.
So I thought I'd kill two birds with one stone...if you don't mind...

Here is the first question...

I am developing the GUI entirely from flash 8 and I was wondering...how do you use TSetProperty properly in visual basic 6? The syntax I think for this is:
ShockwaveFlash1.TsetProperty "target", property, value/expression
I tried to do this in visual basic and I get "Method for 'tsetproperty' of object 'IShockwaveFlash' failed"
What does this mean and how I execute this properly and error free?

Second question...

Is there a way to make a embeded console window that will run from a form and respond to basic user input? For a long time I have been creating batch files with visual basic and running them from a temp directory. But my goal is to create a seamless intergration between dos and visual basic.

I hope you will be able to answer my questions.

Thanks.
Chris

Help: Beginning Visual Basic Student Has Some Questions...can Anyone Help Me Out?
Hey all, as the topic implies, I'm a student in a beginning Visual Basic class. For our end-of-the-semester project, we need to code a simple (though complex for our understanding level) program that shows we've gained an amount of knowledge from the course.

For my project I'd like to do a guitar tuner...A program that will play the sound of a guitar string being plucked with the click of a designated command button. I would have six buttons, each corresponding to a string on a guitar.

Here's my question: Is it relatively easy to embed sounds in a program and have them readily available to play at the click of a button? If it invovles a lot of complex code not fit for a beginner I'll have to think of something else to do, but if it's simple enough I'd love to tackle it.

Any help would be appreciated!

I Have Two Questions About Visual Basic 6 And Flash (Actionscript)...
I am developing a program with visual basic 6 and flash/actionscript.
I also want the app to include a internal console window in one of the forms.
So I thought I'd kill two birds with one stone...if you don't mind...

Here is the first question...

I am developing the GUI entirely from flash 8 and I was wondering...how do you use TSetProperty properly in visual basic 6? The syntax I think for this is:
ShockwaveFlash1.TsetProperty( " target " , property , value/expression )
I tried to do this in visual basic and I get "Method for 'tsetproperty' of object 'IShockwaveFlash' failed"
What does this mean and how I execute this properly and error free?

Second question...

Is there a way to make a embeded console window that will run from a form and respond to basic user input? For a long time I have been creating batch files with visual basic and running them from a temp directory. But my goal is to create a seamless intergration between dos and visual basic.

I hope you will be able to answer my questions.

Thanks.
Chris

Random Questions In Visual Basic From A Database
Hello,

Some of you may remember me from the other day. I have decided I would like to try the approach of loading the questions for my "Who Wants To Be A Millioniaire" game from a database. I get the basics of creating a databse in Visual Basic like

1) Choose Add-Inns -> Visual Data Manager

2) Choose File -> New

3)Choose Microsoft Access -> Version 7.0MDB

4) For the name of the database I put "Millioniaire"

5) Then I clicked Add Field Button

Now I am not exactly sure on what to do? I know I need to add a table and I know how to do that, my question is how do I set up my table? How do I make it so it can check to see if the answers are correct and also I am in need of some help with the Visual Basic coding to import information from a database.

As you can probably tell I am not to fermilliar with databases
I thank you for any help you can assist me with!

Regards,
Mario

Visual Source Safe..and Some Basic Questions
Hi there, pardon my ignorance but what is Visual source safe used for? What happens when i say yes to Visual source safe when it asks if i want my project to be source safe? Also, when i try and save my current project under a different name, and i change the code and form layout of the current project, both projects have the same changes made to them.
In this way, how can i make changes without affecting the other because i would like to test differnt things on the second project without altering the first one.
Lastly, why is there an error message at the end when i try to package my program. The error message is "Make sure that you have access to the drive...."

Thank you.

Yours Sincerely,

Dexton

Two Newbie Questions: Shortcut Parameters + Visual Basic With Databases
Hello,

Im new to this forums so im a newbie.

Im having problems, Is there any way to use parameters with Visual basic programs?
Like shortcuts?

like:
"C:myprog.exe" /Hey

Is there any way to get this information? Because it could be useful to automate some tasks.

another question is:

Where is the best place to learn about Visual basic + Databases, because ive read alot. And none have worked for me (not at all)* and my book only helps me with spreadsheet databases...

I need to be able to very quickly check against the database using a loop or somthing like that.

Like a powerful quick search, when it finds somthing i dont want it to stop..just remember the collum/field/table where it found it on.

i just need a starting point so i can accomplish this. The things ive read are all based on ACCESS databases, This is what i like and should be quick + easy for me

Thanks!

*The examples dont seem to work right on my PC (errors and such)



Edited by - Improfane on 1/25/2004 4:50:27 PM

Word And Visual Basic [ How Can I Get The Save As Window Through Visual Basic? ]
Hi, I made a small program in visual basic that with the use of

Dim oWord as new word.application
Dim oDoc as new word.document

fills a document with some data from the visual basic.
I want when those data are loaded in word the save or save as window to appear.
The command oDoc.saveAs saves the document without even asking for a filename.

What Can I do?

How Do I Run A Program I Made In Visual Basic On A Computer Without Visual Basic?
I created a program in Visual Basic and I was curious at what I needed to do to be able to install or use this program on a computer without Visual Basic. Any help would be great! Thanks in advance.

Extracting Visual Basic Source Code From Visual Basic EXE
hi everyone,

Well actually the problem in my case is that i had mad an EXE in VB6 around a week ago and had stored the EXE and th source code in two diferent folders. By mistake somebody ha deleted the source code folder. I wanted to make some changes i the EXE code and Now i have only the EXE folder to deal with.

Is there any method by which i can extract the Visual Basic cod from the VB EXE. Is there any application or software which ca help me in this? Do give me the hyperlink for downloading th EXE for the extraction if possible.

Please let me know at the earliest.

Thanks in advance.

Ankit

Is Visual Basic Script As Ubset Of Visual Basic
Hello

Is visual basic script a subset of Visual Basic code?

Visual Basic Items Removed From Visual Basic.NET
A while ago (maybe up to a year) I had found a web page (probably a Microsoft MVP's home age) that had a list of about 100 things that were removed from Visual Basic in the transition to Visual Basic.NET. As it is, I would like to look at that again, but I can't seem to find it on my computer. Does anyone remember this page and/or have a copy of the link or the file that was on it. It has particular things like Debug.Print is no longer valid and MsgBox function is not supported. I've look on Microsoft's website and found a great deal of information about implementation difference, but I can't seem to locate this particular piece. If anyone could help I would appreciate it very much.

Thanks in Advnance

Nick August

Fwd: How To Disable Basic Functionality Of Back Space & Delete Key In Visual Basic
<html><div style='background-color:'><DIV>
<P><BR><BR><!-- END YOUR MAIL MESSAGE BEFORE THIS LINE--><BR></P></DIV>
<P><A href="http://www.flamingtext.com/hmail.html" target=_top><IMG alt="Image by FlamingText.com" src="http://hmail.flamingtext.com/hmail/2003/07/02/ flamingtext_com_1057144048_20660.gif" border=0></A> <BR><BR>
<DIV>Try to use API's i am sure u will get ur problem</DIV></P>>Hi all
<DIV></DIV>>
<DIV></DIV>>
<DIV></DIV>> can any one tell how to disable back space & delete keys in perticular
<DIV></DIV>>text box.
<DIV></DIV>>
<DIV></DIV>>thanks & regards,
<DIV></DIV>>Sridhar cs
<DIV></DIV>>
<DIV></DIV>>
<DIV></DIV>>
<DIV></DIV>>*Archives: http://www.OpenITx.com/g/visualbasic-l.asp
<DIV></DIV>>*Manage Subscriptions: http://My.ITtoolbox.com
<DIV></DIV>>*Leave Group: mailto:leave-visualbasic-l@openitx.com
<DIV></DIV>>*Questions: mailto: email@removed
<DIV></DIV>>*Terms of Use: http://www.ittoolbox.com/help/termsofuse.htm
<DIV></DIV>>*Copyright (c) ITtoolbox and message author. No redistribution.
<DIV></DIV>>
<DIV></DIV></div><br clear=all><hr>Add photos to your messages with <a href="http://g.msn.com/8HMTEN/2749??PS=">MSN 8. </a> Get 2 months FREE*.</html>

How To Disable Basic Functionality Of Back Space & Delete Key In Visual Basic
Hi all



can any one tell how to disable back space & delete keys in perticular
text box.

thanks & regards,
Sridhar cs

Code Change From Visual Basic.net - Visual Studio 2005
I am working on a tuturial that i have for Visual basic.net ( for now )

I am working with Visual Studio 2005.

I have been working on a code to change the text color by the name put into
the text box.

Visual Basic .Net code.
Label2.ForeColor = Color.FromName(TextBox1.Text)

i get the error
Name 'Color' is not declared.

I was wondering if someone can show me how things would be in Visual Studio.

thank you

Difference Between Visual Basic And Visual Basic.net
visual basic and visual basic.net?
i am very new to programming, and i was wondering if someone could explain the difference between visual basic and visual basic.net. i Know this may be a silly question to ask, but if i dont i will never find out.
i am designing a system for a chinese restaurant, hopefully i hope create it in Visual basic.
if anyone can help, i would be grateful.

What Are Advantages Of Visual Basic .net Over Visual Basic 6.0?
I am thinking of installing Visual Basic.net (standard version) in place of Visual Basic 6.0. I dont know what are the disadvantages of it and I am hesitating to do that. I thought that I should ask the forum before making this decisions.

Would someone help me to know the followings.
1. If I install VB.net, and if I do programming in VB.net, will I be able to run it in Visual Basic 6.0?

2. Can I do everything that I do in Visual Basic 6 in Visual Basic .net?

3. Are there things that I can do in Visual Basic . net which can not be done in Visual Basic 6.0?

4. Would you recommend Visual Basic.net in place of Visual Basic 6.0?

Thanks in advance.

[Solved]Visual Basic && Visual Basic.net
Wat is the difference between Visual Basic & Visual Basic.net?

I just dont understand.....are they 2 different programming languages? Are they related to each other?
Do they both need the Ms Visual Basic software to develop?.....
Which is more powerful & which is better for beginners?
What is there in Vb.net thats not there in VB....?
pls help me out with this...

Upgrading From Visual Basic 3 To Visual Basic 6
Has anyone upgrade a project from VB3 to VB6?

What Is The Different Between Visual Basic And Visual Basic Access?
hey!

actually i'm going to do a database to track student attendance, where the student need to scan their student ID card.

which software is suitable for me? Visual basic or Visual basic access?

actually what is the different between these two?

can anyone explain to me?

Upgrading From Visual Basic 3 To Visual Basic 6
<html><div style='background-color:'><DIV>
<P><BR><BR></P>
<DIV>
<DIV></DIV>
<P>Is it possible to upgrade a project from VB 3 to VB 6?</P></DIV>
<P>Avi Manor<BR><BR></P><BR><BR><BR></DIV>
<DIV> </DIV>
<DIV></DIV>
<DIV></DIV></div><br clear=all><hr>Get your FREE download of MSN Explorer at <a href='http://go.msn.com/bql/hmtag_itl_EN.asp'>http: //explorer.msn.com</a><br></html>

Visual Basic 6 To Visual Basic 5 Conversion
What has to be done to the files in a VB6 project to get it to run on VB5CCE?

DLL Visual Basic 6 On EMbedded Visual Basic 3.0
Hello Friends, as I can create a DLL for embedded. or as I can have something similar to FileListBox of VB6, I want to recover the archives that are in a directory in individual.




Hola Amigos, como puedo crear una DLL para embedded.

o bien como puedo tener algo parecido a FileListBox de VB6, quiero recuperar los archivos que se encuentran en un directorio en particular.

Basic Question On Visual Basic (counting Rows)
Hi friends,
i'm a novice of VBA. I'm trying to write a sub that needs to count the rows of my sheet.
I't seeems there's no way to understand automatically how many rows/columns are used in a sheet.

Can you help me, plzs?

URGENT Help Required Basic Visual Basic Code
How do I bring up records from a list box??? this is what I have so far of my programming...


Option Explicit
Dim FileName As String

Private Sub cmdAddFileWrite_Click()
Dim Name As String
Dim Age As String
Dim DOB As String


Name = txtName.Text
DOB = txtDOB.Text
Age = txtAge.Text

Open FileName For Append As #1
Write #1, Name, DOB, Age
Close #1
txtName.Text = ""
txtDOB.Text = ""
txtAge.Text = ""
txtName.SetFocus
End Sub

Private Sub cmdDisplay_Click()
Dim DataToDisplay As String
Dim Name As String
Dim Age As String
Dim DOB As String

Open FileName For Input As #1
lstdisplay.Clear
Do While Not EOF(1)
Input #1, Name, DOB, Age
lstdisplay.AddItem Name

Loop
Close #1
End Sub

Private Sub Form_Load()
FileName = App.Path & "AddPlayer.txt"
End Sub


That is wha I have so far I mean I have a list box there where it displays the data that has been inputted, now how do I get that to link up wit a record something to do with a module?

Basic Question About Excel Macros And Visual Basic
I have a macro in Excel that takes some input on data ranges and produces charts based on the input. I want to place those charts (a number of them are generated) at a certain point in my excel worksheet. I know I can nudge it over by a certain amount but I can never tell where Excel will place them so I would like to just say "hey chart, sit here". Being able to do that in relation to cells would be great. Also, I would like to know if there is any way to resize the chart without using the percent. Once again, in realtion to cells would be great. Thanks for your help.

Apply Windows Visual Themes From Visual Basic?
I am moderately new a visual basic - i know quit a bit - but not as much as some people - was just wondering - is it possible to make a visual basic program that applies a windows visual style - if so - how?

Data Type Conversion From Visual C++ To Visual Basic
I'm trying to convert some code from Visual C++ to Visual Basic. There are some types, however, that I cannot seem to figure out what they should be. The C++ types are dpecifically WORD and DWORD. What should they be in Visual Basic? I thought DWORD is a Long, but I have no idea what a WORD would be. Specifically, I'm determining the types from the BITMAPINFOHEADER structure.

Microsoft Visual Studio 6/Visual Basic 6 Sp6 RELEASED!!!!
Microsoft released Service Pack 6 for Visual Studio 6, download the latest(and final) service pack if you have VS6/VB6 installed.

Official Page
Official Page of sp6

List of Fixes
See the fixes from sp4 and sp5

Direct Download
Click here to download it (About 62mb)



Download it, it has many fixes included!



As BrianS told me: VB6 SP6, its only 26mb and VB Runtimes sp6 its only 1.02mb


Enjoy the new service pack! It is the LAST!!!!!

Linking To DLL's Created In Visual Studio From Visual Basic
Can anyone give me some usefull tips or links on how to link to routines writen in C++ from Visual Basic

I am aware of the

Declare Function CloseHandle Lib "testdll.dll" (ByVal hObject As Long) As Long

type notation, but I am curious on what I have to do with my DLL to allow this notation to work.

Any suggestions or links would be a great help, thanks!!!

Visual Basic Development && The Visual C++ Shared Objects
I having a really irritating problem. I'm developing an Add-in in Visual Basic... however, to do the development I'm doing, I require the "Visual C++ shared Objects" reference to be added to the project.

Here in lies the problem. I also need the VB command left [as in left string copy - ie. left("aaaaa", 2)] The only problem is that by adding the "Visual C++ shared Objects" reference, the LEFT command is overridden with the C++ version which returns a long (or something like that).

In the References window, I've already set "Visual C++ shared Objects" to the lowest possible priority... is there anyway to get around this arrangement?

Thanks in advance,
Bishop

How To Access Visual FoxPro Data In Visual Basic
I have a problem :(

I would like do delete a record in FoxPro data base with Visual Basic 6

I use ODBC kuhinja:

Const povezava = "Provider=MSDASQL.1; Persist Security Info=False; Data Source=kuhinja"

adott1.ConnectionString = povezava
adott2.ConnectionString = povezava

adott2.RecordSource = "SELECT sifra,grupa,naziv,nabavna,vpc " _
& "FROM izdelki "
adott2.Refresh

to view data in datagrid

I delete a record :

adott1.RecordSource = "SELECT * " _
& " FROM izdelki " _
& " WHERE sifra='" & adott2.Recordset!sifra & "'"
adott1.Refresh

Record is marked in FoxPro as deleted ( not yet PACK ) but in Visual Basic datagrid (adott2.refersh ) record is still in it.

How can i execute PACK in Visual Basic????

THX

sorry for bad english :)

Dumb Question About Visual Basic / Visual Studio...
From someone who has been programming as long as I have, this has got to be a dumb (DUH!!!) question.  But if I don't get it answered, I'm going to continue to run around in circles.  The problem stems from what appears to be a simple name change, and the fact that I only upgrade my software infrastructure here every few years, so I miss what's going on.

VB6 appears to be the last (terminating) version of Visual Basic.  There will be no VB7.  But, clearly, the language itself is not being terminated -- just called something else, or is being "assimilated" (resistance is futile) or absorbed into a larger platform, losing its identity as a stand-alone programming environment.

How does Visual Studio relate to Visual Basic?  Is the "next generation" version of Visual Basic now being called Visual Basic.NET?  Is VB.NET part of Visual Studio?  If I get Visual Studio, is VB.NET automatically part of that package?  Or is Visual Studio one thing, and VB.NET something else entirely, ordered as two separate things?  If I want to keep programming in VB (as a programming language/environment), do I now have to get Visual Studio instead?

Sorry to bother the more enlightened souls here with a DUH question -- but I gotta ask SOMEBODY...

Thanks.  You folks have been a GREAT help here.

I Want To Make An OCX By Visual Basic But Also Compatible With Visual C And Delphi If Can!
I created an OCX using Visual Basic 6.0 is there some way to make it work in another programming languages like Visual C or Delphi?

Most Basic Of Questions - How To Obtain Basic 6.3
Well I know this is going to sound really stupid, but here goes. I used to do some Basic coding in the very old days before VB (can you imagine a time like that?).

Since then I've been doing other things not related to programming, but now I have a need to sort out an application that uses VB 6.3 to merge various bits of Word and Excel.

I have Win XP and Office 2000 Professional on my PC, I know that there is a VB Editor within Excel, because it pops up to ask if I want to debug the application. But I can't see the full VB programme.

I presume that it is not included in Office 2000 Pro and is a separate programme that I have to buy? (Sorry, that I'm so out of touch). I also see that VB6 has been superseded by Studio and COM superseded by NET, but the application is writen using 6.3, so that's what I will have to use.

But where do I get it from?

Copyright © 2005-08 www.BigResource.com, All rights reserved