User Name
Remember Me?
Password
Home
Register
Calendar
Today's Posts
FAQ
Free Publications
Search
Page 1 of 2
1
2
>
Showing results 1 to 25 of 47
Search took
0.03
seconds.
Search:
Posts Made By:
Vladimir - SV
Forum:
Communications
07-16-2006, 07:29 PM
Replies:
0
Wininet API -> Filling an file-type field with "multipart/form-data" form encoded.
Views:
641
Posted By
Vladimir - SV
Wininet API -> Filling an file-type field with "multipart/form-data" form encoded.
Here's the problem:
I wan't to automatize the web form fill procedure in a fixed web page, the code of the form of that page is:
<form name="form" method="post" action="/cgi-bin/upload.pl"...
Forum:
General
05-20-2006, 08:35 PM
Replies:
3
Out Of Memory... Solved by a msgbox?
Views:
231
Posted By
Vladimir - SV
hehehe this thread start to seem stupid, I don't...
hehehe this thread start to seem stupid, I don't care.
Well, finally I got the problem and the solution, I want to share it with you as maybe someone could ever get into this same crazy situation....
Forum:
General
05-20-2006, 08:21 PM
Replies:
3
Out Of Memory... Solved by a msgbox?
Views:
231
Posted By
Vladimir - SV
hi again, I still testing this, and found...
hi again,
I still testing this, and found the problem, now need to know why it happen to solve it =(
I was compiling with auto-manifest integrated, as soon as I don't use any manifest on my...
Forum:
General
05-20-2006, 07:40 PM
Replies:
3
Out Of Memory... Solved by a msgbox?
Views:
231
Posted By
Vladimir - SV
Out Of Memory... Solved by a msgbox?
Hi,
Currently I'm working on a small app for a little company, I was fine until I did use this:...
Forum:
.NET General
05-10-2006, 01:27 AM
Replies:
12
how to 'ping' the IP address automatically?
Views:
742
Posted By
Vladimir - SV
http://www.xtremevbtalk.com/showthread.php?t=85147...
http://www.xtremevbtalk.com/showthread.php?t=85147
and a timer... or some chronometer class.
Forum:
.NET General
04-29-2006, 07:21 PM
Replies:
3
Calling module with variable name
Views:
219
Posted By
Vladimir - SV
There's no point in controlling in a indivual way...
There's no point in controlling in a indivual way the modules, I will do it this way:
-making just one module
-Making a sub in that module called "CommandBuilder" by example.
-Putting in that...
Forum:
General
04-26-2006, 09:39 AM
Replies:
4
Help
Views:
202
Posted By
Vladimir - SV
You could post some code...
You could post some code...
Forum:
General
04-26-2006, 08:37 AM
Replies:
5
encoding problem
Views:
294
Posted By
Vladimir - SV
I was wondering... why almost?
I was wondering... why almost?
Forum:
.NET General
04-26-2006, 08:36 AM
Replies:
4
NewWindow2 & NewWindow3 in Browser Control
Views:
636
Posted By
Vladimir - SV
Couriosly you have almost the same problem than...
Couriosly you have almost the same problem than here:
http://www.xtremevbtalk.com/showthread.php?t=260392
I put you the link in case someone found a solution there and it comes useful to you as...
Forum:
General
04-25-2006, 09:35 PM
Replies:
2
[VB6]Webbrowser & right click on a link
Views:
813
Posted By
Vladimir - SV
You mean when you right click the link? Look...
You mean when you right click the link?
Look at this in case you need further help with disabling [but as far as I know you already do it]:...
Forum:
General
04-25-2006, 08:56 PM
Replies:
3
html in vb help
Views:
214
Posted By
Vladimir - SV
Thanks a lot =); I will take some classes some...
Thanks a lot =); I will take some classes some day to improve it and be more active.
Forum:
General
04-25-2006, 08:10 PM
Replies:
3
html in vb help
Views:
214
Posted By
Vladimir - SV
You should search for "ASP" technology An...
You should search for "ASP" technology
An example:
http://www.htmlgoodies.com/beyond/asp/
http://www.w3schools.com/asp/asp_intro.asp
Forum:
General
04-25-2006, 06:39 PM
Replies:
6
[VB6]webbrowser&url
Views:
265
Posted By
Vladimir - SV
The only way that there can be a overflow there,...
The only way that there can be a overflow there, is that Y < X and that mean that there's not any ".com" in the text, where it leads to a invalid direction.
This is a modified solution:
Dim X...
Forum:
General
04-25-2006, 06:13 PM
Replies:
2
Dlportio Parallel Port Reading (Win xp)
Views:
691
Posted By
Vladimir - SV
Why not use "io.dll" from GeekHideOut? it's...
Why not use "io.dll" from GeekHideOut? it's really good, documented, and also it's free =)
Forum:
Communications
04-23-2006, 07:50 AM
Replies:
2
How to send data to a web page?
Views:
777
Posted By
Vladimir - SV
Did mean send data to a existing webpage or...
Did mean send data to a existing webpage or create a new one with your data and then render?
In anycase, just look for documentation on this forum about the "webbrowser" control, it's a powerful...
Forum:
Game Programming
04-23-2006, 07:48 AM
Replies:
5
Create something from nothing?
Views:
275
Posted By
Vladimir - SV
As a suggestion, put the "AutoRedraw" forms...
As a suggestion, put the "AutoRedraw" forms property to "True", so losing the focus don't lead to image erasing
Forum:
Excel
04-23-2006, 07:45 AM
Replies:
16
Object required??
Views:
352
Posted By
Vladimir - SV
and cboAmount.Text? did you have it?; by its name...
and cboAmount.Text? did you have it?; by its name seems to be a ComboBox...
Forum:
General
04-21-2006, 11:25 AM
Replies:
6
[VB6]webbrowser&url
Views:
265
Posted By
Vladimir - SV
Yes, that's what the code do, I will explain it a...
Yes, that's what the code do, I will explain it a bit with some obvious things added
'Variables where we store the location of the "www." and the ".com" place
Dim X As Byte
Dim Y As Byte
Dim...
Forum:
General
04-21-2006, 09:31 AM
Replies:
6
[VB6]webbrowser&url
Views:
265
Posted By
Vladimir - SV
use "instr" to find the "www" and another instr...
use "instr" to find the "www" and another instr to find the ".com", let say:
dim X as byte
dim Y as byte
x = instr(1, url, "www.", vbtextcompare)
y = instr(1, url, ".com", vbtextcompare)
...
Forum:
General
04-21-2006, 07:56 AM
Replies:
5
Convert String to executable code
Views:
546
Posted By
Vladimir - SV
A tip about it: Go to "Quick Links" -> "My...
A tip about it: Go to "Quick Links" -> "My Profile", and then click the link: "Find all threads started by Schnettchen" or "Find all post by Schnettchen"
That way you can track your own post :)
Forum:
General
04-21-2006, 07:53 AM
Replies:
5
encoding problem
Views:
294
Posted By
Vladimir - SV
try with <meta http-equiv="Content-Type"...
try with
<meta http-equiv="Content-Type" content="text/html; charset=unicode">
or
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-4">
you can try with "content-language"...
Forum:
Communications
04-21-2006, 07:42 AM
Replies:
2
DSL and InternetAutodial
Views:
299
Posted By
Vladimir - SV
If your modem is Telnet-capable, you can access...
If your modem is Telnet-capable, you can access the modem-log via telnet commands, therefore determining the status.
Look at www.portforward.com or google for your modem, or check the manual of it...
Forum:
General
04-19-2006, 06:22 AM
Replies:
5
encoding problem
Views:
294
Posted By
Vladimir - SV
You have the codepage of your webbrowser in...
You have the codepage of your webbrowser in baltic right? :confused:
And.. if that if true, or that doesn't is the solution, you could try to use UNICODE in your app.
...
Forum:
.NET File I/O and Registry
04-19-2006, 05:52 AM
Replies:
7
Best Method for storing Text Files in Arrays
Views:
545
Posted By
Vladimir - SV
1) Visual Basic 6 at least comes with a 'split"...
1) Visual Basic 6 at least comes with a 'split" function that could do the job of constructing the comma array, since it has integrated manage of dbases with "Visual Data" it will be better to work...
Forum:
General
04-18-2006, 07:51 AM
Replies:
7
How to get data from a website
Views:
838
Posted By
Vladimir - SV
<head> <title>Juego de Betfair – Póquer de...
<head>
<title>Juego de Betfair – Póquer de Intercambio, Blackjack de Intercambio y apostar en línea con Betfair.</title>
<meta name="description" lang="en" content="Juegue en línea juegos tales...
Showing results 1 to 25 of 47
Page 1 of 2
1
2
>
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
Announcements
Announcements
Visual Basic .NET (2002/2003/2005/2008, including Express editions)
.NET Knowledge Base
Tutors' Corner
Code Library
ASP.Net
.NET Communications
.NET Game Programming
Managed DirectX
.NET Office Automation
.NET File I/O and Registry
.NET Database and Reporting
.NET Interface and Graphics
.NET Installation / Documentation
.NET General
Xtreme .NET Talk
Legacy Visual Basic (VB 4/5/6)
Knowledge Base
Tutors' Corner
Code Library
Communications
Game Programming
DirectX
VBA / Office Integration
Excel
Word, PowerPoint, Outlook, and Other Office Products
API
File I/O and Registry
Database and Reporting
Interface and Graphics
Installation / Documentation
General
Other Languages
Web Programming
Miscellaneous Languages
General Discussion
Tech Discussions
Random Thoughts
Forum Questions / Concerns / Comments
Advertisement:
Free Publications
The ASP.NET 2.0 Anthology
101 Essential Tips, Tricks & Hacks - Free 156 Page Preview. Learn the most practical features and best approaches for ASP.NET.
subscribe
Programmers Heaven C# School Book -Free 338 Page eBook
The Programmers Heaven C# School book covers the .NET framework and the C# language.
subscribe
Build Your Own ASP.NET 3.5 Web Site Using C# & VB, 3rd Edition - Free 219 Page Preview!
This comprehensive step-by-step guide will help get your database-driven ASP.NET web site up and running in no time..
subscribe
Home
Register
Calendar
Today's Posts
FAQ
Archive
© Xtremevbtalk.com 2001 - 2013. All Rights Reserved.
Powered by vBulletin® Version 3.8.6
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.