I am surprised no one said NetMeeting - it comes installed on just about every windows computer I have ever touched and works great. The only bad thing is you need to have a directory server running, or be able to route to the computers IP address.
Greg Conely
www.ImageMentor.net...
Try using this instead of using a webbrowser. You will then have to parse through the URLs and get what you want. You can get the images using the same call if you want.
Public Function GetPageHTML2(ByVal URL As String, Optional ByVal TimeoutSeconds As Integer = 5) As String
'...
Following SqueakinSweeps' idea, make an EXE that launches the said application, waits for it to exit and then exits itself.
Greg Conely
www.ImageMentor.net
www.gregsdirectory.com
You can use the CreateObject procedure to create an ADODB object and then use that like you would in standard VB.
set adoCon = CreateObject("ADODB.Connection")
adoCon.Open(connectionstring)
set adoRs = adoCon.Execute(sqlstatement)
while not adoRs.Eof()
..
adoRs.MoveNext
wend
Greg Conely...
When you call the different projects, you are simply calling there EXE, DLL or OCX files, not individual objects within that project.
With that in mind, I have started using the "Plug-In" or "Add-In" method to link dlls within a product. I have not done much of this in VB6, but do know it is a...
Is the computer connected to a network of some sort? Also I would make sure that there is not the windows firewall blocking it - you can access this through the control panel. Also if you are using something else like Norton Internet security this may be causing an issue.
Greg Conely...
Will it show up as a Nothing object - and if that is the case you can do something like:
if isnothing(myarray) then
or
if not (myarray is nothing) then
Greg Conely
www.ImageMentor.net
www.gregsdirectory.com
Did you sign your control? Also, can you show us the code used in the web page to load your control?
Greg Conely
www.ImageMentor.net
www.seo-position-plus.com
newbie1983
You cannot easily write an addin for VB.Net in VB6. I tried to find a way to upgrade a plugin that I wrote for VB6 to .Net and couldn't find any way of doing it. Vb.Net uses a lot of different methods to intergrate.
Greg Conely
www.ImageMentor.net
www.seo-position-plus.com
I always use a Line Input command. Then seperate the CSV entries into an array using the SPLIT command. Here is an example
open "myfile.csv" for input as #1
while not eof(1)
line input #1, tmpvar
tmpArray=split(tmpvar,",")
....
wend
The tmpArray would then have each of the fields as...
Do you have Microsoft Excel installed? This script creates a new excel spreadsheet and populates it with the info. If you don't have excel installed, the script won't work. It shouldn't be too difficult to change it to dump to a CSV instead.
Greg Conely
www.ImageMentor.net...
Thanks trollacious - I didn't know about the >>
I always made a bunch of files and then used a copy command to put them together.
Greg Conely
www.ImageMentor.net
www.seo-position-plus.com
I am not sure exactly what you mean. Maybe an example would help. Normally, unless you are are using different languages, you can have one script file execute multiple scripts. But you may be able to manually combine your code and remove some redundent stuff.
Greg Conely
www.ImageMentor.net...
I normally use something like:
mycode......
' Check for an error
if err.number<>0 then
' there is an error, do something
end if
morecode.....
Greg Conely
www.ImageMentor.net
www.seo-position-plus.com
You should be able to use a simple batch file. Something like the following'
IPs.BAT
ping 10.1.1.114 > c:\pc1.txt
ping 10.1.1.132 > c:\pc2.txt
Greg Conely
www.ImageMentor.net
www.seo-position-plus.com
Go to here and use this tool along with their DrTCP utility.
http://www.dslreports.com/tweaks/
I changed my MNU for my clients and they are working alot better.
Greg Conely
www.ImageMentor.net
Go to here and use this tool along with their DrTCP utility.
http://www.dslreports.com/tweaks/
I changed my MNU for my clients and they are working alot better.
Greg Conely
www.ImageMentor.net
I have a Win 2K box using ICS to share DSL connection to other PCs. PC had one nic, but decided to install second to try to resolve. Now Win 2K box has 2 nics, one connected to LAN, other connected to DSL via cross-over cable. Host computer (one running ICS) connects\browses fine. Client...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.