Showing results 1 to 25 of 500
Search took 9.33 seconds.
Search: Posts Made By: charlie
Forum: General 06-30-2010, 08:53 AM
Replies: 3
Views: 848
Posted By charlie
Thanks for the response, vb5prgrmr. .Silent...

Thanks for the response, vb5prgrmr.
.Silent doesn't work by itself. I already tried it. And I cannot disable script errors because I need them to test the webs (beyond this little application)... :(
Forum: General 06-30-2010, 03:54 AM
Replies: 3
Views: 848
Posted By charlie
Exclamation WebBrowser control crashes navigating

Hi there!

I made a quick application with VB6 to monitorize several webs of the company I work for. It's very simple: with a WebBroser control the application navigates through the web pages...
Forum: Tech Discussions 08-16-2008, 02:14 PM
Replies: 5
Views: 363
Posted By charlie
I'm using static IP on the XP computer while the...

I'm using static IP on the XP computer while the Vista laptop uses automatic configuration... But the subnet mask is set correctly. Could it be a problem anyway so all PCs must use the same...
Forum: Tech Discussions 08-16-2008, 06:25 AM
Replies: 5
Views: 363
Posted By charlie
Thanks NEOLLE for the article, but it says the...

Thanks NEOLLE for the article, but it says the same as always: naming the workgroup. I installed the service in the article, just in case the was something with mine... But it keeps doing nothing.
...
Forum: Tech Discussions 08-15-2008, 08:20 PM
Replies: 5
Views: 363
Posted By charlie
Question Workgroup between XP and Vista

Hi there!

I recently bought a laptop with Windows Vista Home Premium inside. When I got several PCs with Windows XP I could share files, folders, printers... between them only setting the same...
Forum: Web Programming 05-05-2008, 12:06 PM
Replies: 4
Views: 1,275
Posted By charlie
In HTML I already know the size of the TD. The...

In HTML I already know the size of the TD. The problem is that I'm not treating an IMG object but a BACKGROUND one. :( And the BACKGROUND cannot be resized, only repeated.
Forum: Web Programming 05-02-2008, 06:08 PM
Replies: 4
Views: 1,275
Posted By charlie
SOLVED - No solution

I've been surfing the web for a solution and I found nothing. It's not possible unless using CSS3, so we'll have to wait until it's released... :(
Forum: Web Programming 05-02-2008, 05:18 PM
Replies: 4
Views: 1,275
Posted By charlie
Background image adjustment in CSS

Hi there!
I'm having trouble with the background image for a cell (<td>) in a table.
In short, is there a way to adjust the size of the background image to the size of cell itself?
(See attached...
Forum: Interface and Graphics 01-31-2008, 05:24 AM
Replies: 3
Views: 276
Posted By charlie
I think this has been asked before on this...

I think this has been asked before on this forum...

But if you don't want to mess up with it, the best you can do is making an image with the text and displaying only that image...

Or you can...
Forum: General 01-30-2008, 02:48 AM
Replies: 6
Views: 261
Posted By charlie
What?!?!?! Code equivalent to doubleclicking...

What?!?!?!

Code equivalent to doubleclicking a random file: make a list of every file on your drive and open it.

Letting the system decide how to open it: you should access to the file opening...
Forum: Excel 01-29-2008, 10:13 AM
Replies: 1
Views: 406
Posted By charlie
I don't understand very well what you gonna...

I don't understand very well what you gonna achieve. Anyway for changing the dimensions of an array you have 2 choices:
1. Creating a brand new array.
2. Trying the ReDim() statment. See the MSDN...
Forum: General 01-24-2008, 08:39 AM
Replies: 7
Views: 348
Posted By charlie
Well, depending on the range or the amount of...

Well, depending on the range or the amount of ciphers of the numbers you can store them into one numeric variable and divide it to extract a specific number. I mean:

Numbers generated: 3, 7, 4, 2...
Forum: Interface and Graphics 01-21-2008, 12:31 PM
Replies: 3
Views: 2,522
Posted By charlie
Yes. But, as I told you, be sure the TextBox only...

Yes. But, as I told you, be sure the TextBox only contains a number (not characters) between 0 and 180.
Use these events: Change, Keypress, KeyDown.
Forum: Interface and Graphics 01-21-2008, 03:43 AM
Replies: 3
Views: 2,522
Posted By charlie
Set the .Value property of the scroll bar to the...

Set the .Value property of the scroll bar to the value of the TextBox. Set the .Min and .Max properties to 0 and 180 as well.
The events of the scroll bar should be something like:

Private Sub...
Forum: Word, PowerPoint, Outlook, and Other Office Products 01-17-2008, 08:31 AM
Replies: 4
Views: 414
Posted By charlie
The only easy way is setting the TabStop property...

The only easy way is setting the TabStop property of every control on the form to FALSE as MPi says. I think it's failing because when you press the Tab key, it changes the focus to the next control...
Forum: File I/O and Registry 01-16-2008, 04:24 AM
Replies: 4
Views: 351
Posted By charlie
Maybe the ShelExecute()...

Maybe the ShelExecute() (http://allapi.mentalis.org/apilist/ShellExecute.shtml) or ShellExecuteEx() (http://allapi.mentalis.org/apilist/ShellExecuteEx.shtml) functions could help you.
Forum: File I/O and Registry 01-15-2008, 03:32 PM
Replies: 2
Views: 484
Posted By charlie
The Shell() function could help you! By the...

The Shell() function could help you!
By the way, no question is stupid. ;) Welcome to the forum!
Forum: Interface and Graphics 01-13-2008, 05:36 PM
Replies: 24
Views: 844
Posted By charlie
Maybe THIS could help you......

Maybe THIS could help you... (http://www.xtremevbtalk.com/showthread.php?t=245434)
If not, make a search on the forum. I'm pretty sure it has been discussed.
Forum: Interface and Graphics 01-13-2008, 12:57 PM
Replies: 24
Views: 844
Posted By charlie
WhateverForm.WhateverLabelName.Caption =...

WhateverForm.WhateverLabelName.Caption = WhateverLabelName.Caption
Forum: Interface and Graphics 01-13-2008, 12:20 PM
Replies: 24
Views: 844
Posted By charlie
if I understand what you say : clicking one...

if I understand what you say : clicking one picturebox in Form1 and "send" this image to one picturebox in Form2, right? If it is, then see answer #2.
Since you now have the PictureBoxes in an array...
Forum: Interface and Graphics 01-13-2008, 10:26 AM
Replies: 24
Views: 844
Posted By charlie
I'm a bit lost as well... What do you want to...

I'm a bit lost as well... What do you want to achieve? Selecting one image from Form1 and it appearing on Form2?
Forum: Interface and Graphics 01-11-2008, 07:26 PM
Replies: 24
Views: 844
Posted By charlie
You don't bother, pal! We're here for giving and...

You don't bother, pal! We're here for giving and taking help! ;)
Well, in my 1st version I was supposing there was always the same amount of images equal to the amount of pictures. A little...
Forum: Interface and Graphics 01-10-2008, 10:48 AM
Replies: 24
Views: 844
Posted By charlie
Well, the order doesn't change. I just replaced...

Well, the order doesn't change. I just replaced the first "B" for its order number.
The code does the same as before I change it. I only changed the code for a shorter and more automatic one.
When...
Forum: Interface and Graphics 01-10-2008, 10:13 AM
Replies: 24
Views: 844
Posted By charlie
Well, first of all: things you can improve: ...

Well, first of all: things you can improve:

- 1 -
Change the absolute paths for relatives ones.
You have:
Picture1.Picture = LoadPicture("c:\Color Grade\vazio\vazio.jpg")
Change it for:
...
Forum: Interface and Graphics 01-10-2008, 08:15 AM
Replies: 24
Views: 844
Posted By charlie
Why don't you attach the code in the thread...

Why don't you attach the code in the thread instead sending a mail to me? This way everyone can see the resolution process... You can even attach the whole project but avoid including the .EXE file...
Showing results 1 to 25 of 500

 
Forum Jump
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