comp.lang.basic.visual.misc
http://groups-beta.google.com/group/comp.lang.basic.visual.misc

Today's most active topics:

* Weird form behavior - 7 new
  
http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/b5b6233d59baffd6

* looking for an imaging control - 5 new
  
http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/a1fafc9fe5b8a684

* Large integers - 3 new
  
http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/330c03a6012d7904

* Programmer pay rates in the US - 3 new
  
http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/ce04adf6a237999d

* Using the systray in VB6 - 2 new
  
http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/42502cf053c72696

 
Active Topics
=============

Large integers - 3 new
----------------------------------
... 10.000 that is... ... ;-> All the text was copied straight out of MSDN, 
didn't write a single letter myself. <g> ... -   Thurs,  Aug 26 2004 1:43 
am
3 messages, 3 authors
http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/330c03a6012d7904

Using the systray in VB6 - 2 new
----------------------------------
Try mine. www.microcreate.co.uk and browse through the VB6 source code. The 
menu will have to be done manually, but it does include a demo so you can see 
how. And (if I've remembered to update it) it also includes the balloon tips 
for XP. ... ... -   Thurs,  Aug 26 2004 3:58 am
2 messages, 2 authors
http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/42502cf053c72696

Speed of running app - 2 new
----------------------------------
I tried the Move command and it was faster. However, after a little thought, I
tried the SetWindowPos API and it was much, much faster. In fact, the form now
appears almost instantly compared to the other methods. So I think I'll stick 
to that. I will try your timer to check the results. ... ... -   Thurs,  
Aug 26 2004 4:03 am
2 messages, 2 authors
http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/1c78a9a48967778d

Full Screen / Kiosk Mode in VB6 - all new
----------------------------------
I'm sorry, but when I test it I get the same appearance as with iexplore.exe -
k. I simply create a new Standard Exe. I then changed border style to none and
windowstate to Maximized. Thats it. It works for me. I have run iexplore.exe -
k. at the same time and switched between the two and I can't see a difference.
Tim "rd"  skrev i meddelandet news:[EMAIL PROTECTED]
google.com... ... ... -   Thurs,  Aug 26 2004 4:22 am
1 message, 1 author
http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/9fa0ce35d97eb756

TreeView Queries...Urgent - 2 new
----------------------------------
DEAR ALL, I HAVE A QUERY IN TREEVIEW.I AM USING VB6. IN TREEVIEW I ALREADY 
CREATED THE TREE.IS THERE ANY WAY TO CREATE COULMNS IN TREEVIEW JUST LIKE 
HIERARCHICAL GRID.I AM EXPLAINING THE DATA ... IN THSI WAY DATA REPRESENTATION
IS POSSIBLE IN TREEVIEW. IF YES PLEASE GIVE ME SOME GUIDELINES. REGARDS ARIJIT
CHATTERJEE ... -   Thurs,  Aug 26 2004 5:06 am
2 messages, 2 authors
http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/322e415f86d0316e

Recognizing current media player song - 2 new
----------------------------------
Here you go: Private Sub Form_Load() Dim MP3Info As clsMP3Info Set MP3Info =
 New clsMP3Info MP3Info.Filename = "<path to the mp3 file you want to read" '
e. g. MP3Info.Filename = "c:\mymusic\killertune.mp3" Debug.Print MP3Info.
Title Debug.Print MP3Info.Artist Debug.Print MP3Info.Album Debug.Print MP3
Info.Comment Debug.Print MP3Info.GenreString Debug.Print MP3Info.BitRate 
Debug.Print MP3Info.Frequency Debug.Print MP3Info.FormattedTime 'many others
Set MP3Info = Nothing End Sub ... ... -   Thurs,  Aug 26 2004 5:10 am
2 messages, 2 authors
http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/a40f31c8ee2be807

looking for an imaging control - 5 new
----------------------------------
Does anyone know of a way to do the following. I need either a free, open 
source, or very inexpensive control. I want to be able to allow someone to 
crop an image to the exact size that i specify. The user should be able to 
zoom in and out, and of course move the crop square around. here is a picture
of what i am trying to achieve: http://209.94.100.52/~tcasey/imagecrop.jpg 
Thanks! ... -   Thurs,  Aug 26 2004 5:49 am
5 messages, 3 authors
http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/a1fafc9fe5b8a684

csv data file - all new
----------------------------------
Frank, I though your reasoning was good - I don't know how many times I've 
seen "disk full" errors when in reality it was that the root directory entry 
space that was full. Mike Ober. ... ... -   Thurs,  Aug 26 2004 6:24 am
1 message, 1 author
http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/ad155502a4498d5f

Weird form behavior - 7 new
----------------------------------
If I was reloading the form somehow then  it would happen when running the 
project too, which it doesn't. It only happens in the compiled EXE. The form
is launched as the startup object; it isn't called anywhere else. There is no
code in the form queryunload or unload events. This is in the terminate event:
 Private Sub Form_Terminate() On Error GoTo EH If DebugMode And 
MSComm1.PortOpen Then MSComm1.PortOpen = False Open App.Path & "\
settings.txt" For Output As #1 ... Close #1 ... -   Thurs,  Aug 26 
2004 7:25 am
7 messages, 4 authors
http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/b5b6233d59baffd6

How to Tell If Computer is Locked - 2 new
----------------------------------
I've got a scheduled task that I'd like to only run when the computer is 
locked- i.e. the user or a screensaver has locked the computer. Does anybody 
know how to tell if the PC is in this state? I'm sure there's a registry value
or something I can look at. Thanks ... -   Thurs,  Aug 26 2004 7:57 am
2 messages, 2 authors
http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/30b53e21a191bae0

Programmer pay rates in the US - 3 new
----------------------------------
... I am a programmer with over 20 years experience, including ten with Visual
Basic. I have worked for some major clients, and have often been brought 
back for additional projects. I have been out of work for over a year because
of the amount of work in this area that has been farmed out to India and 
Pakistan. My current asking rate is only 40% of what I was getting two years
ago. Even so, I'm not working. Stay in India. That's where all the good 
programming jobs are now. Austin ... -   Thurs,  Aug 26 2004 9:23 am
3 messages, 3 authors
http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/ce04adf6a237999d

treeview backcolor - all new
----------------------------------
On Mon, 23 Aug 2004 12:00:09 +0200, "Hans Eekels"  you typed some letters in 
random order: ... That is a big help... Great! thankyou Groetjenz, Mickey..
. -   Thurs,  Aug 26 2004 12:17 pm
1 message, 1 author
http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/80c8c7d13d8e7fa3

How can I delete the LDB file...? It didn't delete itself because a remote 
user didn't do a proper shutdown. - all new
----------------------------------
If this is a dumb question, bear in mind I am new to MDB. A customer has 
approx 6 computers (win9x) connected together. One win98 computer has some 
shared folders on it's C drive which everyone can access. They call it the 
server and no one sits at that station. I installed an application on 4 
computers and I placed its MDB file on the "server". Whenever I go there, I 
notice that I can't delete the LDB file, even when everyone shuts down their 
application and computer. The LDB file appears to contain names of various 
users. I suspect... -   Thurs,  Aug 26 2004 12:38 pm
1 message, 1 author
http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/f5ac80a48894d98b

Dongles... - 2 new
----------------------------------
... I remember having a similar experience with MaxiPC layout software. We had
a dongle, but we also stumbled across a TSR ("starsave.exe") that elminated 
the need for the dongle. ... -   Thurs,  Aug 26 2004 1:07 pm
2 messages, 2 authors
http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/af13081289b9844e

Forms Freeze - 2 new
----------------------------------
Can someone explain why forms freeze when performing functions that takes time?
 Example, I have a command button that copies a file from SOURCE to 
DESTINATION. When I click the button, a particular file copy takes about 20 
seconds. During this time, my form is locked, if often blanks out or turns 
white, labels don't update, etc. Once the file is copied, all other parts of 
my function complete and the form functionality returns. I see this with VB6 
or NET. I am self taught and I'm guessing this is covered in VB101 - but it's.
.. -   Thurs,  Aug 26 2004 1:58 pm
2 messages, 2 authors
http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/733710334b5d8482

Terminating a process in Visual Basic - all new
----------------------------------
In my code, I need to terminate or close a running program. Its listed in 
Windows Task Manager as desklook.exe I have used the following code to close 
outlook before, but can't find the right syntax to make it work with this 
program desklook.exe perhaps some of you have a few hints. Thanks Dim objOL 
As Object On Error Resume Next Set objOL = GetObject(, "Outlook.Application") 
If Err = 0 Then objOL.quit Set objOL = Nothing End If End End Sub ... -
   Thurs,  Aug 26 2004 2:30 pm
1 message, 1 author
http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/c0fb56fe1327445

inet err handle - all new
----------------------------------
using the ms inet control to connect to an FTP server. I can get it to work 
perfectly, and transfer the files that i need without a problem. What I would 
like to be able to do is test a user/pass on a ftp server. using the inet1.
Protocal = icFTP i want to authenticate against the server. if it connects 
successfully then msgbox "Settings are OK" disconnect else msgbox "
Couldn't establish a connection." I tried using the inet1 statechanged event
that i found on the following web page, that didn't make any... -   Thurs,  
Aug 26 2004 10:47 pm
1 message, 1 author
http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/6beb91d3399cdffe

API for Unicode-check - all new
----------------------------------
Does there exist an API (or other function) to check if a printer or printer 
driver supports Unicode printing? Background: I recently changed our VB6-app 
to support Crystal Reports 9.0 coming from 8.5. CR9 supports only Unicode 
printing. In order to always change customers printer driver settings (mostly 
from PCL to Postscript) and to test if all applications are still working, I'd
like to see if the printer supports CR9. Do other people have printing 
experiences with CR9.0? Thanks Patrick Simons, MCP ... -   Thurs,  Aug 26 
2004 11:26 pm
1 message, 1 author
http://groups-beta.google.com/group/comp.lang.basic.visual.misc/browse_thread/thread/72edb951fc517fee

 

=======================================================================

You received this message because you are subscribed to
the Google Groups "comp.lang.basic.visual.misc".  

comp.lang.basic.visual.misc

http://groups-beta.google.com/group/comp.lang.basic.visual.misc

Change your subscription type & other preferences:
* click http://groups-beta.google.com/group/comp.lang.basic.visual.misc/subscribe

Report abuse:
* send email explaining the problem to [EMAIL PROTECTED]

Unsubscribe:
* click http://groups-beta.google.com/group/comp.lang.basic.visual.misc/subscribe


=======================================================================
Google Groups: http://groups-beta.google.com   



------------------------ Yahoo! Groups Sponsor --------------------~--> 
$9.95 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/J8kdrA/y20IAA/yQLSAA/BCfwlB/TM
--------------------------------------------------------------------~-> 

 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/kumpulan/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 

Reply via email to