Canon provide SDK but mostly written in C++, my current application is on VB6.
Type: Posts; User: rothj0hn
Canon provide SDK but mostly written in C++, my current application is on VB6.
As much as possible i dont want to use any 3rd party for this. I'll be using it to generate ID so, what i want is my application to control the camera. create a live view and capture a picture for my...
How can i remote capture and create a live view on a PC using Canon EOS 1000D using VB6?
How can i remote capture and create a live view on a PC using Canon EOS 1000D?
Guys I need some opinion, which of the two codes is best to use, or if you have a suggestion on how to do it..
Private gcnRIS As ADODB.Connection
Private pstConnStr As String
Private...
Guys I need some opinion, which of the two codes is best to use, or if you have a suggestion on how to do it..
Private gcnRIS As ADODB.Connection
Private pstConnStr As String
Private...
Thanks
Regarding with the function..
If i had to add properties to my pet like age, gender, breed, color, and etc.. then it would be like this, .AddPet "Felix",...
Thanks All.
Another question, can i change the values of enum types during runtime?
Can i get the name of the elements not the values?
Private Enum myName
Alex = 1
Bert = 2
Charlie = 3
Danny = 4
Evan = 5
End Enum
Thanks a lot guys. Ill start OOP with this example.
Can you give me a sample based on person and pet? Im confused.
In my Person Class how can i create a new pet?
Should i create all the properties of pet class in person class?
So in my form...
It was just a sample. Thanks
Is this possible? And how?
For example i have to class Person and Pet.
Person Properties:
* Name
* Gender
* Age
* Pet
Guys do you have a tutorial and samples in OOP VB6..
Thanks
i want to create a system log. I will store the previous data in a objectA(class) and to new data to objectB(class). then loop to its property to determine what values are different. then save it to...
but how can i do it during runtime? i want to list all the property of my class and its values during runtime.
How can i list properties of a class during runtime?
Thanks
i try to ping the server and i notice every time i got a timeout response the file on transferring status will result to connection timeout.
what i am thinking is it might be an network problem. sometimes my data transfer is good, but most of the time in result to a timeout.
Public sub GetFTP()
On Error GoTo ImportErr
Dim host_name As String
Dim fso As New FileSystemObject
iTotal = 0
iSent = 0
grdFiles.RemoveAll
Hi guys, I always got a connection timeout or timeout error while doing my ftp transfer. If i get 10 files from server most of the time the 1st item is the only one that is successful the remaining...
how about the speed of transfer? winsock or Inet?
i dunno if winsock will be applicable on what im doing right now. Can it transfer file to pc that is not connected on the same network?
i dont have any idea with winsock. will it work even if the client and server are located remotely to each other?
How can i add progress bar for InetFTP transfer?
can i use filesystemobject to transfer file to ftp server?
i usually got a problem that it cant locate/find the ftp path.
my ftp path is ftp://121.1.60.150/Import/
im using an ftp site.
RemoteFileName = "ftp://121.1.60.150/C:/Test/"
is this correct?
Can i change the path on where to put all transfered file. currently it just go to the default path used by the ftp.
inetFTP.Execute , "Put " & _
gstExport & "\" & sFileName & " " &...
How to add WinHttp.WinHttpRequest?
<!--#include file="db.asp"-->
<!--#include file="FUNCTIONS.asp"-->
<%
Dim strValue
dim aResult, mResult
strValue = Request.Querystring("strValue")
Select Case lcase(strValue)
Im not familiar with it, and i guess it will take some time for me create another module for soap. Is there a way that vb6 can call a asp classic web services?
oic.. my FTP transfer is working now, i just thought using webdav is faster cause it only use filecopy commands.
I have another question, now than i can already send and received file via ftp...
do you have samples?
what im planing is my current vb6 application will send a delimited string to the web service then the web service will process this and save to the server database, then...
Hi guys. Im planing to transfer 1 data entry in my database to the server using web services, is this possible? how to do it? i have no idea.
The client computer and server are not connected on...
@dilettante, does it transfer file faster than FTP? sometimes i cant transfer file, then i ping the server, sometimes i got a request time out. does it affect the file transfer?
Sorry for the late reply. The server is not on LAN it is via net with static IP, from what i have done before i just create a virtual directory on IIS and then use HTTP Post and HTTP Get if im not...
I guess our technical can configure it to be an FTP server. What is the difference of using FTP vs HTTP. Ive already used HTTP transfer on vb.net but not in vb6.
Hi guys, how to transfer file to a remote server? What should i use? FTP, HTTP or Winsock?