Should I Move To .Net?
Should i move to ".Net" from "VB6ee"?
I use VB to buld my experience up. I want to move to a more advance language but dont know which one, is .Net much harder to learn thatn VB6 was? or are they almost the same?
Eventualy i want to learn C or C++ or somthing
Thanks
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Form Caption Title Move && Move??
does everybody who can provide source code let me know how to make form caption title move & move??
add a timer control to count it moving.
caption title from left side move to right side, then form right side move to left side. repeat and repeat.
thanks!
here is small example which is title run & run, but I need it move & move.:
Code:
Public tit1 As String
Private Sub Form_Load()
tit1 = "This title can run and run!.......... "
Form1.Caption = title1
Timer1.Interval = 200
End Sub
Private Sub Timer1_Timer()
L = Len(tit1)
tit1 = Mid(tit1, 2, L - 1) + Left(tit1, 1)
Form1.Caption = tit1
End Sub
Move A Control In Run Time With MOUSE MOVE
I build with the MOUSE MOVE event a posibility to move a control in RUN TIME
But the move is not so good
Someone have a idea about a improve way to do this task
Thanks
Move 2 Or Move Listitems With Drag Drop
Hi vb-forum:
I need to move among items into a list viewwith drag drop function, how can i move it? in this moment I can move just one but i need to move 2 or more in a group. I hope you can give me a tip.
Thanks in advance and regards.
Move 1 Form..all Opened Forms Move With It
Hello,
I am trying to find documentation on how to have all opened forms move when moving 1 form. I have a project where up to 5 forms will be shown on the screen. Now if I move the main form I want all the other opened forms to move with it. I have been unable to find such documentation or links to pages where someone has done this to get an idea on how to do this. Thanks
Move Previous Button - Not Move? Why?
It caused error "type mismatch"
Because I use the previous button to display a report, one person by one person. so I need to use the counter and myRec.
VBA Listbox Move Up And Move Down
The following code will provide move up and move down functionality for a VBA ListBox. This works for all potential modes of list box selecting:
1) single select
2) Multi select (using the ctrl key)
3) Extended select (using the shift key)
Basically, it will take the selected item and move it up or move it down. So blocks of selected items will move succesfully, multiple selected items, etc.
I do not take full credit for writing this...Herilane also assisted. It was a tag team effort.
Code:
Private Sub cmd_Up_Click()
Dim i As Long
Dim leaveAlone As Boolean
Dim pos As Long
Dim Temp As String
pos = 0
For i = 0 To ListBox1.ListCount - 1
leaveAlone = False
If ListBox1.Selected(i) Then
If i = pos Then
leaveAlone = True
End If
pos = pos + 1
If leaveAlone = False Then
Temp = ListBox1.List(i - 1)
ListBox1.List(i - 1) = ListBox1.List(i)
ListBox1.List(i) = Temp
ListBox1.ListIndex = i - 1
ListBox1.Selected(i) = False
ListBox1.Selected(i - 1) = True
End If
End If
Next
End Sub
Code:
Private Sub cmd_Down_Click()
Dim i As Integer
Dim leaveAlone As Boolean
Dim pos As Long
Dim Temp As String
pos = ListBox1.ListCount - 1
For i = ListBox1.ListCount - 1 To 0 Step -1
leaveAlone = False
If ListBox1.Selected(i) Then
If i = pos Then
leaveAlone = True
End If
pos = pos - 1
If Not leaveAlone Then
Temp = ListBox1.List(i + 1)
ListBox1.List(i + 1) = ListBox1.List(i)
ListBox1.List(i) = Temp
ListBox1.ListIndex = i + 1
ListBox1.Selected(i) = False
ListBox1.Selected(i + 1) = True
End If
End If
Next
End Sub
Move Next/Move Previous
I use a list view to pick out a record which fills data on a separate form. The data are edited and saved. Then if I want to scroll through the database from the present record, I have two arrows to move forward or backwards.
The database is indexed on fldTitle. fldTitle is not unique to one record for two artists can be working together i.e. Getz & Mulligan if I want to show all works for a particular artist.
When I get to the first title of duplication, the move next button stops after showing both artists of the same title. When I move previous and get to the first title of duplication, the button skips the second record and moves to the next title.
Here is my code for both:
Code:
Private Sub MoveNext()
sSql = "SELECT * FROM Artists ORDER BY fldTitle"
If rs.State = adStateOpen Then rs.Close
rs.Open sSql, cn, adOpenKeyset, adLockOptimistic, adCmdText
Do Until rs.Fields("fldTitle").Value = frmSSTab.txtTitle.Text
rs.MoveNext
Loop
rs.MoveNext
If rs.EOF Then
rs.MoveFirst
If rs.BOF Then
Exit Sub
End If
End If
'fill form with data
End Sub
Private Sub MovePrevious()
sSql = "SELECT * FROM Artists ORDER BY fldTitle"
If rs.State = adStateOpen Then rs.Close
rs.Open sSql, cn, adOpenKeyset, adLockOptimistic, adCmdText
Do Until rs.Fields("fldTitle").Value = frmSSTab.txtTitle.Text
rs.MoveNext
Loop
rs.MovePrevious
If rs.BOF Then
rs.MoveLast
If rs.EOF Then
Exit Sub
End If
End If
'fill form with data
End Sub
Thanx for the help.
Move --> Zip --> Overwrite --> Move Bak
Hey,
OK, here is what i got so far. Ill use this:
Code:
Public Function unZip(file As String, dir As String) As Long
Dim zip As String
zip = "c:program fileswinzipwzunzip -dybc " & file & " " & dir
unZip = Shell(zip)
End Function
to unzip/overwrite the files, but before the unzipping I want to move the original files to a tmp folder. How wuld I move these files? I see examples on moving text files but i get a 75 error all the time when i try to move things other than .txt files. Am i typign something wrong here?
Code:
FileCopy "C:Program FilesSierraARC*pcm", "C:Program FilesSierraARCPloader mp"
Kill "C:Program FilesSierraARC*pcm"
Move Next, Move Previous
The cursor moves to the next or previous record when I press the cmd
button twice which I think is quite unusual.
Private Sub CmdNext_Click()
On Error Resume Next
RS.MoveNext
If RS.EOF Then
MsgBox " You have reached the end of file!", vbApplicationModal, "End of
file"
End If
If RS.EOF Then
Exit Sub
End If
ShowInTexboxes 'loads data into controls from database
End Sub
--
Chilangisha B Changwe
email@removed
--
http://www.fastmail.fm - Or how I learned to stop worrying and
love email again
Move
This makes the boundrys of my game where the image can not move off the screen by moveing up, down, left, or right.. i am going to turn it in to a maze type game but when i add lines and some code it wont work or it for example blockes you going down but when you go to the end of the line you can go down
EXMPLE
-----------------------------
|---------- |
| |
| |
| _______________________ |
image starts on the top left cornor, you move right till the line not under the image then you can go down but it wont let me do that.
Code:
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
'Directions Arrow Keys
Select Case KeyCode
Case vbKeyUp
If Image1.Top > Shape3.Top + Shape3.Height Then
Image1.Top = Image1.Top - speed.Caption
End If
Case vbKeyDown
If Image1.Top + Image1.Height < Shape1.Top Then
Image1.Top = Image1.Top + speed.Caption
End If
Case vbKeyRight
If Image1.Left + Image1.Height < Shape2.Left Then
Image1.Left = Image1.Left + speed.Caption
End If
Case vbKeyLeft
If Image1.Left > Shape4.Left - Shape4.Left Then
Image1.Left = Image1.Left - speed.Caption
End If
End Select
'Speed Keys
End Sub
How To Move?
How can I make my game-character walk across the scenary background by using the coordinates (x,y) method?
And how can I make the character move with the arrows of the keyboard.
Move In To C
Hello guys! Actually this is nothing to do with VB.I've been programming with VB for severaly years and I thought to move in to C++ or C#.
I know little about C++, and VisualC++ really confuse me.
Well.. some start the programm with sub main() .It starts with the ugly dos prompt. right??
And some starts with WinMain(). and create the form with that.
I mean.. in VB normally we have sub Main() or Form_Load().Its not that hard to unerstand VB.
But what about Forms in C++.How they work.
What should I choose C++ or C#.What are the differences?
Please somebody help me to start programming in C.I know basic this like loops,function,strucs,File IO..etc!
Where can I found good tutorials.(I'm planing to do graphics programming with DirectX and with graphics engines)
Thanks!
How Can I Move
A beginner
Hi, I am 14 Y.O., well I am making a game, a maze-like game, the first test I did was with label and the "if _ then" code, but the only thing a get from this was a blue square that move inside the labyrinth whit the help of four commands for up, right, left and down.
Now I am looking for another goal, to put an image of my character to move inside the labyrinth ,but I think you cant put an image inside a label, so I used picture box, but I cant make it move like on the label, so I post here an example of the first maze (the one with labels) for anyone to see it and help me to modify the code in order to move a the image, or to find a better way to do it.
How To Move A Map?
i have a map for my game,
but i want to move the map by going up
(just like the classic starship or flying games),
how to do this? do i need two maps?
or do i need to use the "tile" ?
but i dunno how to use the "tile"....can u tell me?
Move Map?
Hi, im new to gaming programming, and fairly new to programming at all, couple of weeks of experience.. well, i get the basic idea of programming.. but i want to make a simple game.. i got all the basics, but there is just one thing that i cant figure out.. the game is like the early Grand Theft Auto games, you see the character from above, but would like to get a little help on the map.. now.. i cant figure out how to, and its hard to describe this in words.. how to movee to another location on the map, like when the character starts to walk south, you start to see new houses in the south, while the houses in north start to disappear..
like.. you see new areas while the old areas disappear when you walk in some directions..
any idea of what i am talking about?, if so, please help :P
ADO Move
With an open rescordset, MoveFirst and MoveNext works.
If I use MovePrevious or MoveLast I get errors.
MovePrevious Error "Opperation in not allowed in this context"
MoveLast Error "Rowset does not support fetching backwards"
Any suggestions?
Ernie
Move No Value
I have a part in my code where I'm using a window to double function as a entry box for a save as file name and as a display to show the file was in fact saved properly.
What I have now is the field stays propagated with the result "File Saved" until a new name is typed.
How can I make this message only appear for save 5 seconds, and then set that value to nothing?
Move The Box
What I want to do is very simple but I can't get it to work
Basicly I have 4 shapes, they are in an control arrary and called simply Shape1(0) to Shape1(3). I also have a command button that when I click it should start at shape 0 and move along the shape colouring them red with each click. I came up with the following code block that I assumed would work...
Code:
Dim IntShapeCount As Integer
---
Private Sub Command1_Click()
IntShapeCount = IntShapeCount + 1
Shape1.Item (IntShapeCount)
Shape1.Item.BackColor = vbRed
End Sub
Of course it dosen't work, can anyone help me out here???
Rs.move
I'd like to code vb6 so user can click in textbox type a number then hit "Enter" on keyboard and the record will scroll to number corresponding to what user typed?
The part I don't know how to do is after user types number in textbox, how do I initiate recordscroll by having user hit enter key?
Move A Pic
How can I move a picture horizontal at the form?
PLZ help me
Move
Code:
Public Function go1()
Option1.Top = Option1.Top - 30
Option1.Left = Option1.Left - 30
End Function
Public Function go2()
Option1.Top = Option1.Top + 30
Option1.Left = Option1.Left + 30
End Function
Private Sub Option1_Click()
If Timer1.Enabled = False Then
Timer1.Enabled = True
Else
Timer1.Enabled = False
End If
End Sub
Private Sub Timer1_Timer()
If Option1.Top = 0 Then
go2
ElseIf Option1.Top = 4560 Then
go1
Else
End If
Could someone try this and tell me whats wrong? I'm trying to make a thing that moves and if you click it stops and when it touches a certain place it goes backwards. The form needs to have 2 objects. A button (Option1) and a timer (Timer1).
Move To ADO.
Hello All
I have three questions.
I recently had an immense problem with my multi-user VB6 app, which used an Access97 database (DAO). It started to slow down to a crawl when the db was situated on MS Small business server 2003. You could literally watch the work station screen refresh it was so slow. After pulling my hair out a few times I think I finally figured out what was going on. I was under the impression that I should make a connection to the database only when the app needed data and once that data was received disconnect.
This approach seemed to be causing problems with the .ldb file. i.e. each connection needed to be recorded by Access in the .ldb (in order to control record locking etc.) and this process was taking up an immense amount of time! I have since re-coded the app to make a connection and open a small recordset when it starts up. This recordset is only set to nothing when the app closes. Hey Presto!! problem solved. The app runs like a dream, so fast even I am amazed.
I am now in the middle of converting the app from DAO to ADO. I am testing the code on Access 2000.
Q1. Has anyone had a similar speed issue with Access 2000?
Q2. I am aware that the advantage of ADO is that I can (within reason) change the database (i.e. use SQL sever or MSDE) and simply change the connection string in the code. Is this correct? Or am I simplifying things a little.
Q3. What database would you recommend if not Access 2000?
Thanks for your help. I hope my intro will help someone who is stuck with the same speed issue. It caused me so much pain.
Move Me!
Hi! I have this code:
Code:
Private Sub MainMenu_Click()
frmMain.Show
Me.Hide
End Sub
I want to move the frmMain
so that the frmMain will show on the exact "top and left" of the screen as the "Me" form
(the design of the two forms are alike, so people will not notice that i changed the form, I know I can do that without using two forms and use two picturebox on one form but it's easier this way)
I've seen people "vibrate" the browser with Java, does vb have an API for moving the form?
Not Move
Is there a way that you can make the form so it will not move at all if someone trys to move it??? Well thx for the help
Move Up
hi friends,
how can i move one line up in a richtext box programmatically,
thanx
Move
how do make my form unable to move when user drag any part in my form?
Help On MOVE NEXT
hi guys
a simple question..... i created a form WITH link to access DB and i created a button call Next in it i wrote adodc1.recordset.movenext
then everytime when i press next until the very last and i press again it will give me a EOF OR BOF error pls help
I Move !!
creating movements in VB is somehow simple...
Though the question is how to make them move in a networking environment. So far I have not receive any satisfactory feedback.
I used
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = vbKeyDown Then
Shape1.Top = Shape1.Top + 100
Call mdlPackets.SendChat(KeyCode)
End If
End Sub
but how do I send it????
Move~!
Ok here is my problem how can I get the "sorted list" to appear in a text box after it has been sorted?
Private Sub Form_Load()
Me.WindowState = vbMaximized
End Sub
Private Sub Label1_Click()
Label1.Caption = " This is the list to be sorted" & vbCrLf & _
"Vincent VanGogh 2" & vbCrLf & _
"Wilfrid Laurier 4" & vbCrLf & _
"Abraham Lincoln 6" & vbCrLf & _
"Ludwig Beethoven " & vbCrLf & _
"George Byron 12" & vbCrLf & _
"George Washington 9" & vbCrLf & _
"Winston Churchill 16" & vbCrLf & _
"Albert Einstein 22" & vbCrLf & _
"Leonardo DaVinci 34" & vbCrLf & _
"Issac Newton 21" & vbCrLf & _
"Galile Galileo 14" & vbCrLf & _
"Stephen Hawking 27" & vbCrLf & _
"Edgar Allan Poe 18" & vbCrLf & _
"Carl Gauss 33" & vbCrLf & _
"William Shakespeare 33" & vbCrLf & _
"Maria Curie 89" & vbCrLf & _
"John Nash 43" & vbCrLf & _
"James Michener 32" & vbCrLf & _
"Mahatma Gandhi 29" & vbCrLf & _
"Genghis Khan 19"
End Sub
Private Sub Command8_Click()
End
End Sub
Private Sub Command1_Click()
Dim number(1 To 20) As Integer
Dim counter, temp As Integer
Dim temp2 As String
Dim nme(1 To 20) As String
Dim height(1 To 20) As Integer
Dim weight(1 To 20) As Integer
number(1) = 2
number(2) = 4
number(3) = 6
number(4) = 12
number(5) = 9
number(6) = 16
number(7) = 22
number(8) = 34
number(9) = 21
number(10) = 14
number(11) = 27
number(12) = 18
number(13) = 33
number(14) = 89
number(15) = 43
number(16) = 32
number(17) = 29
number(18) = 31
number(19) = 19
number(20) = 20
nme(1) = "Vincent VanGogh"
nme(2) = "Wilfrid Laurier"
nme(3) = "Abraham Lincoln"
nme(4) = "Ludwig Beethoven"
nme(5) = "George Byron"
nme(6) = "George Washington"
nme(7) = "Winston Churchill"
nme(8) = "Albert Einstein"
nme(9) = "Leonardo DaVinci"
nme(10) = "Issac Newton"
nme(11) = "Galile Galileo"
nme(12) = "Stephen Hawking"
nme(13) = "Edgar Allan Poe"
nme(14) = "Carl Gauss"
nme(15) = "William Shakespeare"
nme(16) = "Maria Curie"
nme(17) = "John Nash"
nme(18) = "James Michener"
nme(19) = "Mahatma Gandhi"
nme(20) = "Genghis Khan"
height(1) = "150"
height(2) = "57 "
height(3) = "66"
height(4) = "59"
height(5) = "53"
height(6) = "52"
height(7) = "55"
height(8) = "61"
height(9) = "52"
height(10) = "54"
height(11) = "63"
height(12) = "52"
height(13) = "55 "
height(14) = "52"
height(15) = "57"
height(16) = "58"
height(17) = "62"
height(18) = "54"
height(19) = "59"
height(20) = "58"
weight(1) = "150"
weight(2) = "57 "
weight(3) = "66"
weight(4) = "59"
weight(5) = "53"
weight(6) = "52"
weight(7) = "55"
weight(8) = "61"
weight(9) = "52"
weight(10) = "54"
weight(11) = "63"
weight(12) = "52"
weight(13) = "55"
weight(14) = "52"
weight(15) = "57"
weight(16) = "58"
weight(17) = "62"
weight(18) = "54"
weight(19) = "59"
weight(20) = "58"
For Index = 1 To 18
For counter = 1 To 19
If number(counter) > number(counter + 1) Then
temp = number(counter)
number(counter) = number(counter + 1)
nme(counter) = nme(counter + 1)
number(counter + 1) = temp
nme(counter + 1) = temp2
End If
Next counter
Next Index
Print "This is the sorted list"
Print " Age"; " Height"; " Weight"
Print nme(1); number(1); height(1); weight(1)
Print nme(2); number(2); height(2); weight(2)
Print nme(3); number(3); height(3); weight(3)
Print nme(4); number(4); height(4); weight(4)
Print nme(5); number(5); height(5); weight(5)
Print nme(6); number(6); height(6); weight(6)
Print nme(7); number(7); height(7); weight(7)
Print nme(8); number(8); height(8); weight(8)
Print nme(9); number(9); height(9); weight(9)
Print nme(10); number(10); height(10); weight(10)
Print nme(11); number(11); height(11); weight(11)
Print nme(12); number(12); height(12); weight(12)
Print nme(13); number(13); height(13); weight(13)
Print nme(14); number(14); height(14); weight(14)
Print nme(15); number(15); height(15); weight(15)
Print nme(16); number(16); height(16); weight(16)
Print nme(17); number(17); height(17); weight(17)
Print nme(18); number(18); height(18); weight(18)
Print nme(19); number(19); height(19); weight(19)
Print nme(20); number(20); height(20); weight(20)
Print
End Sub
.move
I can move a picture left and right with .move .left, but when I try to do the same thing wiht .top it doesn't work
can someone give me an example of how to move a picture or text up and down?
thanks
(VB6)
I Cant MOVE!!
HELP ok, now that I have ur attention let me explain my stiuation. I got some gifs off a website now how do i put them into vb? i use an image box but all i see is the gray background of the image box. and yes I have the picture set to the correct file. HELP
Can You Tell Me How To Move ...
Hi,
I'm getting used to VB now, but still do have the odd problem that I can't figure out. I need to know how to move a mouse cursor remotely over a UDP connection. I have this so far:
On the first form: 'in a timer function...
Dim Point as POINTAPI
Dim Crp as String
GetCursorPos Point
Text1.Text = Point.x ' Just to see the X-Y
Text2.Text = Point.y
Crp = Text1.Text +", "+Text2.Text
Winsock1.SendData Crp
An on the Second form:
Private Sub Winsock1_DataArrival()
Dim strData As String
Winsock1.GetData strData
txtOutput.Text = strData ' To make sure the X-Y made it
SetCursorPos strData
End Sub
But I get an error that the SetCursorPos "Argument not optional".
I would guess that I would have to somehow Use the Left and Right functions to extract the appropriate #'s ?
Or is there an easier way?
Any help is very much appreciated!!
Thanx a million,
Scott
Move Next
hello,
i'm having a simple problem of moving a record next. The code im using is the simple rs.movenext but it only moves to the next record once. the quote im using is
[vbcode]
rs.open "select..."
rs.movenext
[/vbcode]
i did have a if statement but i got rid of it.
Move ?
hi
i'm trying to move a cmd button to another location when the user clicks on an option button.
i've put that sentence:
cmdStart.Move(5640, 600, cmdStart.Width, cmdStart.Height)
and it says that it was expecting a "=".
how is "move" used, then?
i'm getting mad on google, there's almost nothing
thank you
Edited by - xadap on 10/31/2005 9:11:56 AM
Move Next
hi......
i'm using datagrid to show my Database. i have a problem to make the row pointer move to the next row. is it possible to be done?
What Should Be My Next Move?
I've been a VB6 application programmer in a bank for 3+ years now, and I'm fairly confident of my programming skills and want to remain a programmer until... forever! But I'm having this feeling of being left behind because of the all the .NET stuff everybody seems to be crazy about. Do you think I should join the bandwagon and/or what should be the next skill I should learn being a VB programmer?
File Help [please Move]
1. How can I create and write to a text file? I tried
Code:
FSO.OpenTextFile(DBPath & "Stations" & StationName & ".txt", ForWriting, True).Write Text1 & ";" & Text2
MsgBox "Radio station added successfully."
and it says Object Required Error 424.
2. How can I make my menu show all of the files in the folder? (Caption=filename) and when clicked I want it to fill in the fields Text1 and Text2 with the ones stored in the text file as Text1;Text2.
Please help me! =]
How To Move 2 Frames Together?
Hi guys, I need some help: I have one frame that calls 3 other frames. What I want is that when the first one moves, the other 3 copy exactly the same movements alltogether. Any ideas?
Filelist And Move
why don't this one work?
Set FSObj = CreateObject("scripting.filesystemobject")
For Each Item In FSObj.GetFolder(sPrevFolder & "imagesvarer").Files
lOK = lSQL_lookup("images", "name", "filename=" & Item.Name)
If Not lOK & "" <> "" Then
Void = MoveFile(Item.Name, sPrevFolder & "imagesvarer", sPrevFolder & "imagesvarerXtra")
End If
Next
Set FSObj = Nothing
Function:
Public Function MoveFile(pFilename As Variant, pFrom As Variant, pTo As Variant)
Set fFSO = CreateObject("scripting.filesystemobject")
If fFSO.FileExists(pFrom & pFilename) = True Then
fFSO = FSO.CopyFile(pFrom & pFilename, pTo & pFilename)
fFSO = FSO.DeleteFile(pFrom & pFilename)
End If
Set fFSO = Nothing
End Function
Form Move
Hello,
I Have form border style 0-None
can i move form with mouse draging,like blue field in top of every windows form,but from Label or some control on form?
Thank`s RL
Move Rectangle
I have an Image in a PictureBox and I want to draw rectangle on it with Graphics.FillRectangle(Brush, Rectangle).
It works fine, but now I would like to move the rectangle over the Image to change its location.
Any ideas ??
Thanks
PS: I use VisualBasic.Net 2005 ... thîs post should be in the .Net section not in the Legacy section. Sorry for that.
Move But No Copy
fs is a file system object.. i put the msgboxes primarily to help me to debug
''''''''''Now move it
If MsgBox ("Moving " & fil.Name & " to C:ftpfolderloggerdata")= vbCancel Then Wscript.Quit 1
fs.MoveFile "C:ftpfolder" & fil.Name , "C:ftpfolderloggerdata"
''''' it moves the file just fine but never makes it to the next line to display or copy
If MsgBox ("Copying " & fil.Name & " to C:ftpfolderloggerdatacopyhere")= vbCancel Then Wscript.Quit 1
fs.CopyFile "C:ftpfolderloggerdata" & fil.Name , "C:ftpfolderloggerdatacopyhere" , true
any ideas? Does MoveFile return something i need to deal with?
Move Through MSHFlexGrid
Is there an easy way to get to a row in the MSHFlexGrid based on knowing data in specific columns? Or maybe to get to the row in the underlying recordset with the "Find" method, then instantly going to its row in the grid? Any suggestions would be greatly appreciated.
Thank you!
MOVE Image, Please Help!
Heloo everybody, can you explain me please how to move picture up, if
I press up arrow?
Thanks!
|