Path.GetInvalidPathChars "Visual Basic 6.0 Classic" equivalent
Someone may remember putting me onto Link_File_1532711212003. I'm
using it for my VB6.0 lnkfile IMDB rating project. At that time I had
a problem with Microsoft updates breaking the IsLink function.
Now, I am finishing up interfacing the 32bit AMDBW14 title.exe program
and it produces a txt file for each IsLink entry in the folder. Once
all the txt files are sorted, the 1Kb files are, almost without
exception, unfound entries, and where the name needs cleaning.
Firstly, to clean the names, I plan to cycle through these extracted
1kb links to the now deleted txt files, where the not
|
3/12/2010 12:39:00 AM
|
0
|
Jimekus <jime...@gmail.com>
|
|
C:\WINDOWS\system32\ieframe.dll\1
Hello,
if you have problems with VB6 - C:\WINDOWS\system32\ieframe.dll\1
1. open regedit
2. search for: C:\WINDOWS\system32\ieframe.dll\1
3. change to: C:\WINDOWS\system32\ieframe.dll
4. save regedit
finished :)
---------------------------------------------------------------------------=
----------
Hallo,
wenn ihr Probleme mit VB6 habt - C:\WINDOWS\system32\ieframe.dll\1
1. =F6ffnet regedit
2. sucht nach: C:\WINDOWS\system32\ieframe.dll\1
3. =E4ndern zu : C:\WINDOWS\system32\ieframe.dll\
4. speichert regedit
fertig :)
|
3/12/2010 12:36:00 AM
|
0
|
netbase4web <netbase4...@web.de>
|
Which Endian routine is better?
I am converting big endian to little endian and have written these two
functions:
Function Endian32_UsingString(ByVal n As Long) As Long
Dim s As String
Dim d As String
Dim i As Integer
s = Right$("0000000" & Hex$(n), 8)
For i = 1 To 7 Step 2
d = Mid$(s, i, 2) & d
Next
Endian32_UsingString = CLng("&H" & d)
End Function
Function Endian32_UsingByteArray(ByVal n As Long) As Long
Dim big(3) As Byte
Dim little(3) As Byte
CopyMemory big(0), n, 4
little(3) = big(0)
|
3/11/2010 5:51:02 PM
|
3
|
MM <kylix...@yahoo.co.uk>
|
ComboBox Question
I'm doing a project which requires that I change a listbox to a dropdown
(style 1) combobox so the user can enter a part number. The combobox
is populated with anywhere from 1 to 10 part numbers. If there is only
one part number, I want the code to automatically select it. The following
code is OK for a listbox, but what is the equivilent for a combobox?
If partCount = 1 Then
lstPartNo.Selected(0) = True
End If
Thanks in advance for any help on this.
John
__________ Information from ESET Smart Security, version of virus signature database 4935 (20100311) __________
|
3/11/2010 3:52:45 PM
|
4
|
"John Simpson" <jas...@earthlink.net>
|
Vb variables in memory
How are vb variables stored in memory?
For example, if I have an array of bytes (0, 2, 4, 6), if I search a
process memory region that was compiled in VB, will I find a
contiguous 0x00 0x02 0x04 0x06? Or I need to search for an array of
pointers instead?
I found some pages in google that said VB variables are slightly
different that in other languages, but I couldnt find any detailed
explanation about it. I saw somewhere that VB variables are always
pointers to variants actually. What is the structure of these
variants?
Thanks a lot.
|
3/11/2010 12:45:50 AM
|
12
|
gerotica <pgerot...@gmail.com>
|
VB 6 & VS?
I just purchased VB6 upgrade. It was one CD for VB and about 7 CDs plus
startup manuals for Visual Studio. Is this what I was supposed to get?
I just opened the box so my questions might be answered as I get
further into it.
Earl
|
3/10/2010 9:20:08 PM
|
21
|
"Earl Partridge" <ea...@pearnet.com>
|
File Extensions and Directory Writes
I've run into a little problem with my current project.
I created a file and gave it my own filetype of .fdr.
Problem: When the user goes to download this file, it shows up in the
download directory dialog as "myfile.unk". In other words, it has the
..unk filetype because my Windows system does not know what a .fdr file
is.
Is there a way via code to add the .fdr filetype to the system?
Problem 2:
I want the user to download this .fdr file to his application
directory.
The directory defaults to c:\Program Files\MyApp
For Windows 7 (and likely Vista), it will not all
|
3/10/2010 9:01:33 PM
|
23
|
Webbiz <nos...@noway.com>
|
VB6 word .saveas method fails when installed
I'm attempting to open a Word document from local disk, modify contents of
embedded fields, and save the modifed document using the .saveas method. Code
looks like:
set wrdDoc = wrdApp.Document.Open("C:\foldername\doc1.doc")
wrdFileName = "C:\foldername\doc2.doc"
Call wrdDoc.SaveAs(wrdFileName)
wrdDoc.Close (false)
wrdApp.Quit
Doc1 opens, the fields get updated, and Doc2 gets written back to the local
folder. The application was developed on an XP system -- Word 2000. When I
create the distribution package and install it on a Vista desktop -- Word
2007 -- that has VB6 loade
|
3/10/2010 9:01:03 PM
|
1
|
=?Utf-8?B?R2FyeUFG?= <Gar...@discussions.microsoft.com>
|
Saving a ListView
I�d like to save/retrieve the contents of a listview to a file.
Here�s what I wish I could do:
Put FNum, , myListView
Get FNum, , myListView
But this gives an object reference error.
Is there better way to do this other than looping through each property
of each ListSubItem of each ListItem to create an array and then saving
the array?
Is it possible to use a for each loop to get all the properties or must
each be coded as:
ListItem (.tag, .text, .checked, etc)
ListSubItem (.tag, .text, .bold, etc)
Thanks,
|
3/10/2010 4:46:50 PM
|
9
|
tom88 <nos...@nospam.net>
|
Quick Graphic Question
I'm still working on my graphics understanding but have a need to do
something pretty quick for now. So I thought someone might tell me how
to do this quickly.
Here is my function that draws these RED DIAMONDS on my picturebox.
Private Sub DrawFDDiamonds(pic As PictureBox, x As Long, y As Long)
Dim p1 As POINTAPI, x1 As Long, y1 As Long
Dim oldPen As Long, oldBrush As Long
Dim pen1 As Long
Dim brush1 As Long
Dim FDDiamond(1 To 4) As POINTAPI
FDDiamond(1).x = 0: FDDiamond(1).y = 0 ' start point
FDDiamond(2).x = -8: FDDiamond(2).y = 15
FDDiamond(3).x = 0: FDDiamon
|
3/10/2010 5:57:07 AM
|
7
|
Webbiz <nos...@noway.com>
|
Array storage order???
Is there an issue in moving to VB - net/Fred/whatever from Classic in
array storage order or is it still column-major? That is, switching to
match C as opposed to Fortran convention didn't happen, too, did it
along w/ the other C/Java-like things?
Query came up in Fortran language group (c.l.f) wrt to using VB GUI
frontend. I realized I'm not absolutely sure, so before I respond
thought I'd check with those who are bound to know...
Actually, I did respond to the OP w/ the consistency of a major
advantage of VB in conjunction w/ Fortran DLLs and another respondent
asked if
|
3/9/2010 9:08:31 PM
|
4
|
dpb <n...@non.net>
|
Question about automating Word within vb6
Hi,
I have a program for writing reports that is used by companies whose users
are not very good with computers or using various other programs such as
Word or Excel. To make sure that the users always saved the reports with the
correct name and in the proper place, I have save and close options within
the program. To keep them from inadvertently using the Word Save or Close
options, I had a toolbar always on top which covered the Word options and
would allow the users to save the report within the program properly and in
the correct place. Since I use a .dot form if they trie
|
3/9/2010 7:47:01 PM
|
5
|
"Norm" <Nor...@spoof.com>
|
VB6 disks
Hello,
My Visual Sudio #1 disk, with VB6 on it, is now useless. If anyone knows
where I could get this CD, I would really appreciate.
Thank's
Jacquelin Hardy
jachardy-removethis-@videotron.ca
|
3/9/2010 7:31:20 PM
|
19
|
epilot10 <epilo...@yahoo.fr>
|
Print Server
does Microsoft have a tool to copy printers from a print server to another
server. I want to be able to use the 2d server as a backup server.
|
3/9/2010 6:47:02 PM
|
1
|
=?Utf-8?B?c293YnVn?= <sow...@discussions.microsoft.com>
|
Parsing Question
I've done parsing where you have one delimiter such as a comma or
space.
What if you have more than one?
Example data:
sStr(0) = "3/9"
sStr(1) = "3/11 3/15-"
sStr(2) = "3/8+ 3/12"
sStr(3) = "3/9 3/15"
sStr(4) = "3/8- 3/10+ 3/15"
The strings above are Month/Day with some having an additional - or +
character next to it.
These dates are extracted from Excel cells as strings.
I need to break those strings down into individual dates.
So for sStr(4), I need to parse out "3/8", "3/10" and "3/15". The -
and + are not to be returned.
My thinking is this:
1. To first r
|
3/9/2010 7:33:41 AM
|
9
|
Webbiz <nos...@noway.com>
|
Virtual memory increasing.
Hi,
I have developed an application in VB6 and if I run that executable ( for 40
hours continously) it keeps on increasing virtual memory until I recieve an
error like no more memory can be allocated. I have two machines and this
problem come only on one machine, I believe memory is managed by COM runtime
or VB runtime in VB6 by reference counting.
Can you please help me how can I solve this problem?
Best Regards
Ahmad
|
3/9/2010 6:16:01 AM
|
3
|
=?Utf-8?B?QWhtYWQ=?= <Ah...@discussions.microsoft.com>
|
Basic Graphic Questions
I have a charting program I created some time back.
It works well -- but is effectively the old legacy way of doing things.
That is:
Coordinate system is (0,0) in upper left corner.
I Paint everything. -- AutoRedraw = False.
If the form is resized, then a new scale is determined (via code) and the
graph is repainted.
--------------------------------------
I'm wondering if I missing something and that using a more OPP approach
might give me better control.
Questions
1) Is there a benefit to using the object (picturebox)
scale methods instead of calculating your own and th
|
3/8/2010 9:39:28 PM
|
16
|
"David" <NoWh...@earthlink.net>
|
Creating a Lookup Table
I'm going to create a lookup table for my charting application.
There aren't going to be very many items in this table, most likely
less than a 100. For the majority, no more than 20 items.
This table is to hold a symbol reference for the charts the user
creates. For example, say the user is viewing a chart of Cotton. How
this chart is actually named will be different for each user as they
can name it whatever they want. So what I want to do is give the user
the ability to assign the symbol (CT) to any chart that refers to
Cotton. This way, when the user pulls up a chart of Cotton
|
3/7/2010 11:56:19 PM
|
24
|
Webbiz <nos...@noway.com>
|
Datagrid problem
I am certain that this is so simple the solution will bring great
embarrassment.
The simple routine that follows results in a "Type Mismatch" error when
the "MS ADO Ext 2.8 for DDL & Security" is selected which it must be for
other parts of the app. All I want to do is set (and likely change)
some of the grids chracteristics at run time.
The datagrid is properly connected to an adodc source and, in fact, the
grid fills properly.
dim c as column
for each c in datagrid1.columns
do something
next
*** Sent via Developersdex http://www.developersdex.com ***
|
3/7/2010 10:31:40 PM
|
1
|
Jack Reed <reedesi...@earthlink.net>
|
Microdexterity Stamina
Does anybody know (Jim Mack?) where I could download (buy) the Stamina
library?
There is a link on the Microdexterity website (VBXtras) but that doesn't
lead anywhere.
RBS
|
3/7/2010 1:55:22 PM
|
7
|
"RB Smissaert" <bartsmissa...@blueyonder.co.uk>
|
OT: MS iPad-like device
In the alt.wireless.internet group, there was a post about MS's version of
the iPad.......
http://www.theregister.co.uk/2010/03/06/microsoft_courier_details_report/
The usual responses about, well the hardware's nice, but it's the apps that
matter....
And a comment was.....
"Of course, developers will be lining up to for Visual Studio Basic
Ultra-Lite Express Developers Edition, which requires signing the 200
page MS EULA, Release of Liability, and Loyalty Oath."
(That's all, I just got a kick out of that line.)
|
3/7/2010 1:21:57 PM
|
0
|
DanS <t.h.i.s.n.t.h.a....@r.o.a.d.r.u.n.n.e.r.c.o.m>
|
1.0e to VB6
....as the name says...
It's a double value...
Thank you very much!
Hermann
|
3/6/2010 6:29:11 PM
|
10
|
hermann leinen <h.lei...@gmx.de>
|
Create Folders and Write To Hard Disk Other than C:
My app can generate many gigabytes of data files (several megabytes each) per
the user choice. For those who wonder, this happens over many hours and or
days.
I am making XP and up a requirement for using the app.
So, for XP and up how do I do the following:
(1)Set permissions on a different hard drive (other than C:) to read, write
and delete data files.
(a)for this user
(b)for all users (common data).
(2)Create a folder (assumes this is different than "normal").
I may be totally wrong, but I assume that reading, writing and deleting the
file in this folder once
|
3/6/2010 1:36:36 AM
|
26
|
=?Utf-8?B?QmVl?= <...@discussions.microsoft.com>
|
VB6 and Start->Run
Hello,
We've all used the RUN in XP. When you just type in a program name the
control acts like a combobox. But. When you type in \\servername\ the drop
down appears to be a custom listbox sort of thing that gets updated each
time a "\" is typed in. So I'm trying to simulate this in a VB6 program and
looking to see if anyone has already done that or might shed some light on
any sample code.
Any help would be appreciated.
Rich
|
3/5/2010 6:47:38 PM
|
4
|
"R" <...@b.com>
|
Filling an excel range from a vb function
Ok guys, so i've found tons of threads that explain how to fill an excel
range from a sub in vb, but none that explains how to do so from a function
Suppose the following function (even if what i have to work with is much
more complicated... and it should fill 3 ranges with 3 different arrays...):
[code]
Option Base 1
Function fill(v As Range) As Double
Dim a(5, 1) As Variant
For i = 1 To 5
a(i, 1) = i
Next i
v.Resize(5, 1).Value = a
fill=0
End Function
[/code]
So, this little program takes the range v, and i want to fill it wit
|
3/5/2010 10:13:01 AM
|
5
|
=?Utf-8?B?bGlnaHRkcmVhbWVy?= <lightdrea...@discussions.microsoft.com>
|
VB Express
I haven't tinkered with VB for a while, the latest version I had/have is
VB4.
I have now upgraded to Windows 7 and looking for something that I can
manage without a lot of re-training. I downloaded VB Express. Is this a
totally
free version or is it a Trial version?
I only have a couple programs from VB4 that I want to convert, just for my
hobby tinkering.
Earl
|
3/5/2010 2:09:11 AM
|
32
|
"Earl Partridge" <ea...@pearnet.com>
|
What is the proper app destination in Windows 7 64 bit ?
Hello,
I just encountered that problem in Windows 7 64 bit although
Windows 7 32 bit does not have that problem.
User (?) installed my application in c:\Program Files(86) folder.
My app creates subfolders to App.Path during normal program operation.
Despite user being the administrator the subfolder cannot be created (there
is an error "File/Path Access Error"
How should I proceed in that case?
Should the installation insist on another program location (which one) or
should I consider something else?
Your help appreciated,
Claire
|
3/4/2010 9:42:19 PM
|
3
|
"Claire" <repl...@fra>
|
Error 20533 (unable to open Database) in Crystal Reports
I am using VB5 with Crystal Reports 3.0 on Win XP computers. This problem
occurs on network computers only!!
After adding a new database to an existing Envelope Report, I get error
20533 (Unable to open database) on network computers but not on the computer
on which the actual reportfile and database reside.
If I add a folder (which contains the new database) to the network
computers, the report runs just fine.
I have researched google but can't find a related problem or answer. This
started happening after I upgraded from VB4 to VB5 (VB5 has Crystal 4.6). I
have to u
|
3/4/2010 2:44:07 PM
|
4
|
=?Utf-8?B?RGVubmlzIFJvc2U=?= <DennisR...@discussions.microsoft.com>
|
disable mdi form resize
Hello,
How can I set the MDI form so that the user can not resize its dimension
(height, width) using mouse ?
Thanks
john s
*** Sent via Developersdex http://www.developersdex.com ***
|
3/4/2010 1:34:53 PM
|
13
|
John S <nospam>
|
Listview
Why can't I directly reference the tag of a subitem? This give an
invalid qualifier.
ListView1.ListItems(1).SubItems(2).Tag = 11
This doesn't.
Dim oSubItems As ListSubItems
Set oSubItems = ListView1.ListItems(1)
oSubItems(2).Tag = 11
Also could someone explain or point me to some document that explains
the use of listitem vs listitems and subitem and subitems. Nothing I've
found has cleared this up for me.
I think the following should give me a reference to subitem, but doesn't.
Dim oSubItem as ListSubItem
Set oSubItem=ListView1.ListItems(1).SubItem(2)
Thanks,
|
3/4/2010 3:07:46 AM
|
7
|
tom88 <nos...@nospam.net>
|
Correct Way To Wait
I have seen this talked about but still not sure which is the correct way to
do this.
Either way below seems to work.
A form is opened for the user to click on something.
The form is modless. It cannot be modal.
I want other events in the app (timer driven) and outside the app to have
max process time while the user is thinking.
so, do I use Sleep or a system timer or ...?
Do
DoEvents
Sleep 200&
Loop While bLoop
or
Do
DoEvents
WaitMS 200&
Loop While bLoop
The user clicking a button changes the state of bLoop to False.
WaitMS is a
CreateWaitab
|
3/3/2010 9:59:02 PM
|
17
|
=?Utf-8?B?QmVl?= <...@discussions.microsoft.com>
|
Debugging Tricks : Going Blank
Over the last months/years, I've been shown some simple approaches to
debugging here for which I'm grateful.
But for the life of me, I can't recall some of them and my scraps of
paper they were written on is buried deep amonst my many piled books
and papers.
So I'm putting a notebook together once and for all so I don't have to
repeat my desperate calls for help on a topic already addressed.
Perhaps some of you can remind me of a few basic items.
====================
Q. How does one get a list of the procedures in the order they are
being called within a VB6 project?
(I
|
3/3/2010 8:14:12 PM
|
55
|
Webbiz <nos...@noway.com>
|
PHP script
Hello!
Does anybody have a sample how to upload a file or text string to a
website folder by a PHP file which is located on the website?
Thank you very much!
Hermann
|
3/3/2010 5:39:45 PM
|
6
|
hermann leinen <h.lei...@gmx.de>
|
It is with a heavy heart that I scrap skins
I decided today to scrap the skinning in my app. It's just too much of
a pain to maintain/modify the skinning side without a detailed manual
to the reams and reams of code that it comprises.
I've quickly built an .exe version without the skins and it looks okay
on XP. Not as nice as with the skins, but much nicer than on Windows
98.
One thing that decided me was that I wanted to disable the File and
Tools menu during Playback of the MIDI file, but the menus still
stayed enabled as long as the skins were implemented! I searched high
and low through said reams of source code to try
|
3/3/2010 5:19:14 PM
|
9
|
MM <kylix...@yahoo.co.uk>
|
Redirection
Hi All.
I'm looking for a little function: Pass a string, return a string.
A VB6 app wants to write a file, The users chosen path is 'C:\FileName.ext'.
The app 'appears' to do this but actually writes to file to a completely
different path, something like
'C:\Users\UserName\AppData\Local\VirtualStore'
This is UAC Virtualization. AKA Data Redirection
I would like a function where I can pass the users chosen location and it
will return the the actual path that the file will be written to.
Any pointers please
Thanks
Ivar
|
3/3/2010 9:11:08 AM
|
6
|
"Ivar" <ivar.ekstromer...@ntlworld.com>
|
Modal Form Fails
I have a form that I developed that works without err.
Now I am integrating it into the main app.
the main form does this from the main app form in a picturebox click event.
frmX.Show vbModal, Me
fmX loads and fully executes the _Load event with no errors.
Error routines are in place and have been tested.
When the frmX _Load gets to the Exit Sub it generates this error.
"Form already displayed; can't show modally"
I have a breakpoint at the first line of frmX _Load so I know that it has
been started only once.
All other frmX.Show ... have a breakpoint and are not executed.
|
3/3/2010 3:24:01 AM
|
12
|
=?Utf-8?B?QmVl?= <...@discussions.microsoft.com>
|
"Path/File access error" in Windows 7
Hello,
I have moved my vb project files to c:\New Folder in Windows 7.
Now, when I start IDE, do some changes then Windows 7 does not allow me to
save them.
What is wrong with c:\New Folder location?
I appreciate your help,
Claire
|
3/2/2010 10:32:50 PM
|
4
|
"Claire" <repl...@fra>
|
VB6 With/End With - how to pass the object itself?
Suppose I have:
Sub AnyProc (cbo as ComboBox)
MsgBox cbo.Name
End Sub
With Combo1
AnyProc ?
End With
How can I refer to the object itself to pass to AnyProc? What I need
is a .Self property!
MM
|
3/2/2010 5:27:52 PM
|
44
|
MM <kylix...@yahoo.co.uk>
|
Graphic Draw Question
I use a picturebox to draw lines and such within.
I would like to plot some arrows on this picturebox.
Two kinds. A small blue UP arrow, and a small red DOWN arrow, at
various spots on this picturebox.
What is the best way to do this?
Should I create my two arrow pictures and save as a bitmap or
something, then have them appear on the picturebox where I want them?
Should I use drawing commands to draw point-to-point lines and fill?
My picturebox is redrawn each time I scroll the items drawn within. So
the arrows will also have to follow along. Which approach would be
best
|
3/2/2010 7:10:35 AM
|
25
|
Webbiz <nos...@noway.com>
|
Creating Reg-Free DLL situation
Greetings!
I'm in the process of learning about Reg-Free COM.
At the MSDN website (link below), I was able to successfully follow
along with the examples up to Step 7.
http://msdn.microsoft.com/en-us/library/ms973913.aspx
In Step 7, however, there is some code and discussion about GUID
values and placeholders. I'm lost here. It does not tell me what to do
with this code if anything.
I did run my DLL through the Oleview.exe tool to check it out, but I
really don't know what the heck I'm looking at.
Anyway, in Step 8 my 'client.exe' is suppose to run fine although my
SideB
|
3/2/2010 12:21:49 AM
|
4
|
Webbiz <nos...@noway.com>
|
trouble with Winsock control....
I didn't have any luck posting this over in the 'Controls' group, so I'm
reposting it here:
Hi All,
I'm sure this has been covered before, but I haven't found anything that
seems to help.
I'm trying to read the raw html data from a web page, so that I can
parse it and extract the information I need. The data is primarily text
that I wish to capture.
When I try to grab a page using the Winsock control, I get a 'page not
found error'. I know that the URL and page location are correct because
I can see a test file using a web browser.
Some (possibly) relevant code:
P
|
3/1/2010 6:41:53 PM
|
3
|
John Morley <jmor...@nospamanalysistech.com>
|
Using Double variable with a C++ dll
Hi,
I am using a dll written in C++.
One of the declarations is :
(In a module)
Public Declare Function S52_moveView Lib "libS52.dll" _
(ByVal horizontal As Double, ByVal vertical As
Double) As Long
(In the code of a form)
Select Case KeyCode
Case vbKeyUp
S52_moveView 0#, 1#
Case vbKeyDown
S52_moveView 0#, -1#
End Select
When passing a negative value (with vbKeyDown), the program jams, with
an overflow error, or with a division by zero error.
I have no idea why this occcurs.
Thank you for reading me, and eventual
|
3/1/2010 2:08:00 AM
|
3
|
u...@domain.invalid
|
Argument not optional in VB6 function
I'm trying to use a simple function, and pass two integer values to it.
Function Readb(intDev as Integer, intBank As Integer)
Do something
End Function
Using Readb 2,0 works fine, but
Using Readb txtBank.text results in an 'Argument not optional' error
message.
in the text box is 2,0 or 2, 0 - either one, Argument not optional.
What am I missing?
Any suggestions appreciated.
|
2/28/2010 3:00:54 PM
|
13
|
"Anita" <no_s...@mail.com>
|
Is there a way to convert a .TIF file in VB6
Hello.
I want to develop a VB6 program to convert a .TIF file to a .JPG file.
Is that possible using VB6?
Any help would be gratefully appreciated.
Thanks,
Tony
|
2/27/2010 5:02:01 PM
|
84
|
=?Utf-8?B?VG9ueSBHaXJnZW50aQ==?= <tony(nospam)@lakesideos.com>
|
system 7 live mail
placewhen typing a message in live mail my cursor is unstable and jumps all
oveddoing nowr the as it is now
anybody got any suggestions? . I don,t suppose its any use asking MS even if
I could contact them
|
2/27/2010 3:30:01 PM
|
1
|
=?Utf-8?B?RWRncmU=?= <Ed...@discussions.microsoft.com>
|
Best approach for Data Access
I would like to get an understanding on the methods of getting data to the web.
Basically, I am generatiing data on the fly on the pc as a stand alone app.
then i need to automatically get it on to the web in such a way that I can
retrieve it while at some remote location.
Suggestions and terminology appreceiated.
The only two methods I know about are email and FTP but I really do not know
how to do either.
(1) eMail - send an attachment to an eMail site.
I have not seen how to do this. Some VB6 eMail routines say they can do it
but so far the ones that I have played with just do
|
2/27/2010 12:21:02 AM
|
2
|
=?Utf-8?B?QmVl?= <...@discussions.microsoft.com>
|
Best approach for Control control
I have three groups of controls all related to the same thing.
each group represents the user choice in different ways mathematically.
group one has two controls - visual mouse placement on two pictureboxes.
groups two and three have three parameters- a slider and a text box for each
param.
the user can use any group to set his choice.
as the user adjusts the controls in one group, the other groups must track
as computed.
so it is all coded up and as expected, I have interactions caused by
programmatically setting one control and it trying to process it as if it saw
the user a
|
2/26/2010 11:55:01 PM
|
9
|
=?Utf-8?B?QmVl?= <...@discussions.microsoft.com>
|
set list sorted at runtime
Hi all,
I know we all have short memories here, so I'll act like I'm from
washington and ignore my recent trolling scandal as though it never
happened.
I have a list box which in one case I want set to sorted = false and in
another as sorted = true.
I'm sure the reason the sorted property cannot be set at run-time is
becuase the 'sort' is realy just inserting into a sorted list, therefore
the list does not really support sorting, however. I promise, I will only
flip the sorted property when the list is empty.
Is this possible?
thx
kp "it was my evil twin" g
|
2/26/2010 8:56:37 PM
|
5
|
kpg <...@spam.com>
|
BUY FAKE PASSPORTS OF NETHERLANDS,FAKE DUTCH PASSPORTS FOR SALE! FAKE UNITED STATES(USA) PASSPORT
Our team is a unique producer of quality fake documents.
We offer only original high-quality fake passports, driver's licenses,
ID cards, stamps and other products for a number of countries like:
USA, Australia, Belgium, Brazil, Canada, Italia, Finland, France,
Germany, Israel, Mexico, Netherlands, South Africa, Spain, United
Kingdom. This list is not full.
To get the additional information and place the order just visit our
website:
http://www.sellingpassports.com
>> Contact e-mails:
General support: support@sellingpassports.com
Technical support: tech@sellingpas
|
2/26/2010 7:27:04 PM
|
2
|
John Dawson <t...@sellingpassports.com>
|
Creating formatted XLS file with VB6
Hi
I'm creating a new Excel file (referenced: Microsoft Excel 10.0 Object
Library) and I have a column of 13 digit numbers which Excel being helpful
as usual is showing in scientific notation, I've tried prefixing the column
content with an apostrophe which works for CSV files being read into Excel
but apparently not in XLS files.
Code Extracts:
Dim XL As Excel.Workbook
Dim XLA As Excel.Application
Dim XS As Excel.Worksheet
Set XLA = New Excel.Application
Set XL = XLA.Workbooks.Open(XLSName)
Set XS = XL.Worksheets(1)
tLn = Split(XLSContent, vbCrLf)
t
|
2/26/2010 4:26:20 PM
|
26
|
"Dave O." <nob...@nowhere.com>
|
need socket ocx recommendation
Hello ,
Currently I use api socket ocx downloaded from
www.planet-source-code.com. I plan to replace it with other ocx that
works better soon. Could you give me information about the best socket
ocx ?
I also have another question : Is there any socket ocx that has
multithread capability on windows ?
Thanks
Rony
*** Sent via Developersdex http://www.developersdex.com ***
|
2/25/2010 7:03:22 PM
|
11
|
rony g <nospam>
|
Add Property to MS VB Objects
In this case a picturebox?
Currently I use a structure which tracks each picturebox
and holds the variables I need.
However, if it is possible to add a property to the MS Picturebox object,
this structure could be eliminated.
|
2/25/2010 5:54:37 PM
|
7
|
"David" <NoWh...@earthlink.net>
|
Printing extra page
I'm revisiting an older project with a printing
routine that works well except for one thing:
It always spits out an extra blank page at the
end. In the past I found online info. that
seemed to impy this was a VB problem. I also
found "solutions" that didn't work. Before I
start that search again, does anyone have
the skinny on this problem?
|
2/25/2010 4:04:58 PM
|
22
|
"mayayana" <mayay...@nospam.invalid>
|
Print API instead of Common Dialog (VB6)
Hi All
I've been shyed away from using the common dialog control for my 'open' and
'print' requirements due to bundling issues (I'm trying to do a portable
app), resources, etc and although I found a great and straightforward API
routine for the 'open' aspect (using the comdlg32.dll API call) there
doesn't appear to be the same method for printing. All I want to do is
bring up the print dialog so that they can choose their own printer. At the
moment, I'm sending my print jobs straight to the default printer, but this
isn't always the best way in a school environment.
Any
|
2/25/2010 2:46:39 PM
|
3
|
"Mojo" <ple...@dont.spam.com>
|
Last MSDN applicable to VB6
Hi any one know what is the last MSDN release applicable to VB6
|
2/25/2010 10:19:02 AM
|
6
|
=?Utf-8?B?RXJpYyBNYWFzZG9ycA==?= <EricMaasd...@discussions.microsoft.com>
|
STUMPED! VB6 app on Win7 64 system
I have a small application that installs just fine on XP, Vista and
Win 7 32 & 64 bit.
The program even runs on all of these as well.
The problem?
On my Windows 7 64-bit laptop that is a 2.1ghz Dual-Core with 4g
memory, this application runs so slow it makes you think it locked up.
-------------------
Well, I placed a few 'caption' lines in the code to try and determine
where this bottleneck was occurring. This is an example of that code
segment that Win7 64 drags on.
For X = 0 To HighDatesCount - 2
For Y = X + 1 To HighDatesCount - 1
|
2/25/2010 7:49:38 AM
|
22
|
Webbiz <nos...@noway.com>
|
rotate problem
Have I got a virus on both my machines, or has everybody's Vista rotating
circle hourglass cursor stopped rotating? Or should I just be glad that
Micro$oft's inability to produce a secure operating system has caused Vista
to start to lose its childish cartoon behaviour ;-)
Mike
|
2/24/2010 9:50:28 PM
|
4
|
"Mike Williams" <M...@WhiskyAndCoke.com>
|
lParam help needed for PostMessage
How do I set a repeat count for 5 when sending tab keys to a window?
The following sends one tab sequence.
ret =3D PostMessage(lHwnd, WM_KEYDOWN, vbKeyTab, 0&)
Thanks
-mike
|
2/23/2010 5:51:08 PM
|
4
|
Mike <dies...@not.com>
|
Fixing/ Rounding
Hello,
I want to calculate how many rows I need in a grid for a given number of
cells when the number of columns is limited to let's say 6.
Somehow I don't find any better way than using Mod because
lCellCount=1917
lMaxCols = 6
would return 319,5
but VB6 rounds that down to 319 instead of rounding it up.
This means I get 1 row less than I really need.
I was only able to help me by using Mod but that looks fishy/ unncessary
to me.
Here is my code:
Dim lRows&
lRows = lCellCount \ lMaxCols
Dim iMod%
iMod = lCellCount Mod lMaxCols
If iMod
|
2/23/2010 11:37:20 AM
|
6
|
hermann leinen <h.lei...@gmx.de>
|
Sudden Run-time Error '-2147221504 (80040000)'
Hi,
I just opened a project that I haven't worked on in a couple of days,
and suddenly when I try to run or compile I get an error in any code
that tries to create a new object from one of my ActiveX DLLs (also
contained in the project, project compatibility set).
The error is:
Run-time error '-2147221504 (80040000)':
No Permission (probably unregistered Types in the Interface-Def)
The line is just: Set so_Lib = New SL5RfStock.CLibs
The code never gets to the Class_Initialize event of SL5RfStock.CLibs.
I've tried compiling the SL5RfStock.dll outside of the project group
(i
|
2/22/2010 9:47:53 PM
|
2
|
JPB <jasonpeterbr...@gmail.com>
|
Outlook 2007 and second inbox created
With a recent setup of Outlook 2007 on my home cpu, a second inbox was
created, "Inbox in <xxxxxxxx>". All received email goes in this inbox. I
setup using IMAP and have gone through multiple setting options, but nothing
changes. I only need the primary inbox to work, but it does not. Also, my
primary inbox is called personal folders, which I am not accustomed to. How
do I switch which inbox my email is received?
|
2/22/2010 7:24:02 PM
|
2
|
=?Utf-8?B?QU1B?= <...@discussions.microsoft.com>
|
Run VB exe's in Win 7
Hi
If I copy a VB Exe from my Desktop with OS XP Pro it fails to run on my
laptop with OS Win 7.
Can I get this to work?
Thanks
|
2/22/2010 5:25:01 PM
|
17
|
=?Utf-8?B?TG9uZG9uTGFk?= <London...@discussions.microsoft.com>
|
I am starting to prefer comboboxes than textboxes
I my VB6 Know The Notes app, which I am currently enhancing with extra
features, I have been using dropdown comboboxes on one or two forms.
Because when one has the alternative, textboxes, one has to do loads
of checking, like is it numeric only, what happens in
LostFocus/GotFocus, what happens when you select a menu (no LostFocus
triggered), range checks etc. The combobox does away with all those
since its list contains only valid values, so it is just not possible
for the user to select an invalid value.
Obviously, there will be plenty of cases where you may need to enter a
large
|
2/22/2010 4:14:28 PM
|
38
|
MM <kylix...@yahoo.co.uk>
|
VB6 program and localization to many languages
Hello,
I have my VB6 app with MS Access 2000 DBMS.
Will I be able to localize the program interface to many languages (Russian,
English, Azerbaijani and so on) or I need to upgrade its code to VB.NET
platform at first?
Thanks in advance.
|
2/22/2010 2:04:01 PM
|
3
|
=?Utf-8?B?SXZhbiBBYnJhbW92?= <IvanAbra...@discussions.microsoft.com>
|
PSet Problem
Some time ago (a couple of years ago I think?) I reported a problem with the
GDI SetPixel function (and also with the VB Pset function which uses it)
when Vista is not running in Aero. When Pset (or SetPixel) is used whilst
Vista is not running in Aero then it fails to draw the pixel if bit 8 is set
in the value you pass it for the X coordinate (the Y coordinate is okay in
this respect). I've just tried it again and the problem is still not fixed
(at least on the copies of Vista on my own two machines, both of which are
up to date and one of which is an early version and one of w
|
2/22/2010 11:01:05 AM
|
6
|
"Mike Williams" <M...@WhiskyAndCoke.com>
|
VB6 application with manifest file
Hello,
I have this rather "hairy" VB6 program that depends on quite a few
external components.
I have now successfully used "Make My Manifest" to produce a manifest
file, so that I no longer need to run a "proper" install.
Just copy a folder with everything needed to the target machine.
However, since the app uses a vwf codec, I still have to ensure that
this codec is installed on the target machine.
Is there a way to include the codec in the manifest file, and have a
100% xcopy deployment?
I assume that the "real" problem here is that I the fourcc code of the
codec nee
|
2/22/2010 9:41:29 AM
|
5
|
=?ISO-8859-2?Q?Johan_St=E4ck?= <jo...@stack.se>
|
Miniature/ preview scale quality issue
Under Vista and higher Windows stores a miniature view of a form right
before it is being minimized to the tray. When the user hovers over the
tray icon, Windows shows the miniature view.
I need to do this in my own app (as a preview function of how some files
look).
I tried it with StretchBlt first (=resulted in awful resizing), then
AlphaBlend (slighlty better results), but none of my attempts came
somehow near to the Windows results.
Does anybody know which function Windows is using to scale down the
preview image?
Thank you,
Hermann
|
2/22/2010 7:55:30 AM
|
1
|
hermann leinen <h.lei...@gmx.de>
|
Use Registry ?
I have always used INI files as a way to store program settings. This INI
file was always stored in the app install directory.
Would it be better to use an INI file stored in the COMMON_APP_DATA folder
or just continue to use the registry via SaveSetting/GetSetting ?
(This is an attempt to become UAC compliant.)
TIA,
DanS
|
2/21/2010 1:59:30 PM
|
5
|
DanS <t.h.i.s.n.t.h.a....@r.o.a.d.r.u.n.n.e.r.c.o.m>
|
Special Folder Location
CSIDL_COMMON_APPDATA.........Is this a valid folder for Win2K thru Win7?
(How can I be sure the program works thru Vista & 7 when we don't have a PC
w/Vista or 7 on it ?!?!.....(Rhetorical))
TIA,
DanS
|
2/21/2010 1:29:40 PM
|
4
|
DanS <t.h.i.s.n.t.h.a....@r.o.a.d.r.u.n.n.e.r.c.o.m>
|
Add DLL at runtime.
I have a problem.
I'm making an app in VB9 VS 2008.
The app is going to be a form MDI and a menu.
What I need to do is search app.path/Plugin or something like that and find
..DLLs.
My DLLs will have a couple of functions.
First I need the Main form to add a menuitem in the menu.
This menu item should then declare an instance of a form in the DLL as an
MDIchild and open the form.
I have looked high and low on the internet and MSDN to find what I need
without success.
As I'm writing both the main program and the DLLs that make up the add-in
functionality I'm thinking I
|
2/20/2010 11:46:02 PM
|
1
|
"Tomas Andersson" <tomas.anders...@heatex.com>
|
Read/Write INI on Program File Vista Problem
I have a VB6 program that reads application settings from INI file... until
now most users used the app on Win XP and there is big hassle running the
program on Vista as Program File under Vista is Read Only... Under Vista
users manually copies the INI file to Writeable directory like Documents;
edit the INI file and then copy it back to Program Files thus rendering
changing application settings through the VB app impossible.
I would like to change program settings from INI to say egistry. But I don't
know how to to go about this. Can VB6 create registry keys for an app during
|
2/20/2010 10:29:04 PM
|
8
|
"jpBless" <jp3blessNoS...@hotmail.com>
|
.Tag length
What is the documented length of a .Tag in VB6?
Link please.
If not documented, what is the general consensus?
It is defined as string, but does that mean it follows all string attributes?
Yes, I searched but could not find it MS Live and Newsgroup.
If found by search, tell me what you used as search criteria.
Thanks.
|
2/20/2010 10:00:01 PM
|
2
|
=?Utf-8?B?QmVl?= <...@discussions.microsoft.com>
|
marvendas@gmail.com Kit completo de Solenoides ( solenoid ) + chicote Para Cambio automatico 01M hidramatico Audi A3 Vw Golf gti turbo 52200
Contato: marvendas@gmail.com
marvendas @ gmail.com
marvendas no gmail.com
Kit completo de solenoides para Volkswagem e Audi.
O kit contem:
5 solenoides
2 Epc ( solenoides de pressao )
1 Chicote
Serve para qualquer modelo VW ou Audi fabricados de 1995 ate hoje com o cambio automatico de 4 marchas � 01M
Pre�o: R$ 1900.00
Temos outras tipos de solenoides e artigos importados, nao deixe de fazer uma consulta antes de comprar!
Audi a3 automatico
Audi a3 1.8 t automatico
Audi a3 1.8 turbo automatico
VW Golf gti automatico
VW Golf 2.0 automatico
VW Golf 1.8 turbo auto
|
2/20/2010 3:27:11 AM
|
0
|
kit solenoites audi solenoid.chicote<kit.solenoites.a...@solenoid.chicote.com>
|
use sendmessage to find folders and files in the folders in vb6
Hello
I am trying to quickly show the txt-files which are located in for
example 320 subfolders of a folder and read the content of those files
in a listview of a form. I can't find a QUICK way to do this. Should I
use Sendmessage to do this? And if Yes ,how should I do this?
Thanks
Charles van der Werf
|
2/19/2010 9:42:23 PM
|
0
|
catharinus <csvanderw...@planet.nl>
|
use sendmessage to find folders and files in the folders in vb6
Hello
I am trying to quickly show the txt-files which are located in for
example 320 subfolders of a folder and read the content of those files
in a listview of a form. I can't find a QUICK way to do this. Should I
use Sendmessage to do this? And if Yes ,how should I do this?
Thanks
Charles van der Werf
|
2/19/2010 9:05:02 PM
|
13
|
catharinus <csvanderw...@planet.nl>
|
Hex Editor & VB6
I have a old VB6 exe that is important to a client for continued use. The
source code is not available. A hard coded string within the source code
needs to be changed, otherwise the exe is no longer of use to them. Is it
possible to use a HexEditor to open the exe and change the string and resave
the exe? Would this idea be a viable solution? The string is not a constant.
It is a hard coded string in the source. I did try opening the file in a Hex
editor but only found it showed the strings that were declared as
constants --I could not see any strings that were actually in the co
|
2/19/2010 6:52:59 PM
|
46
|
"Jerry West" <...@comcast.net>
|
New Installation
Hi All
Have installed VB6 and MSDN on to my new laptop, It's Winders 7 64bit. I got
2 problems (amongst others):
1. Each time VB6 starts I get a box saying Please wait while winders
configures micro$oft office 2007. It then tells me it cannot find required
files, It does this 4 times. This PC used to have a trial version of office
installed but no longer has. How to stop it doing this?
2. A full install of MSDN was done a few times, MSDN is missing those links
at the top of the help file pages. Things like 'See Also, Properties,
Methods, Events, Applies to'. Where have my link
|
2/19/2010 3:26:45 PM
|
8
|
"Ivar" <ivar.ekstrome0...@ntlworld.com>
|
Slider math
I have a slider that should accept values from 5 to 5000.
Since this cannot really be done by .Min and .Max, I have made it so
that the slider values are internally converted into a logarithmic scale
like this:
Private Sub pTellValueFromSlider(ByVal nValue As Integer)
Dim lMin&
Dim lMax&
lMin = 5
lMax = 1000
Dim lRes&
lRes = 10 ^ (log10(lMin) + ((nValue - Me.slider1.Min) / _
Me.slider1.Max * (log10(lMax) - log10(lMin))))
Me.Caption = lRes
End Sub
This works great: When the slider is in the middle, it tells
|
2/19/2010 9:16:59 AM
|
7
|
hermann leinen <h.lei...@gmx.de>
|
error line source code
is there a way to get the actual line of source code of an error that
occurs?
i.e. source code: a=1/0
error description returns "a=1/0"
i can think of an ugly way of doing it, basically put line numbers in
the code to get the error line, then compare that to the .frm text and
copy the text where it matches on the line number. I am hoping there
is a better and easier way.
|
2/18/2010 11:44:36 PM
|
10
|
...@b.com
|
check record size before update
I have a VB6 application using an ADODB.Recordset to write to an SQL server
database. It generates the error below because the record size has exceeded
the 8060 character limit. I know I can cancel the update after the update
instruction, but I am wondering what code I may be able to use to check the
record size before the update instruction to see if it will exceed the limit.
Thank you for any help.
-2147217885 microsoft odbc sql driver sql server cannot create a row of size
8294 which is greater than the allowable maximum of 8060
--
BruceL
|
2/18/2010 3:09:01 PM
|
4
|
=?Utf-8?B?QnJ1Y2VM?= <Bru...@discussions.microsoft.com>
|
Dell Studio 17 laptop in India
Dell Studio 17 is the multimedia laptop that is meant to replace your
desktop systems. Notebook is packed with Intel Core2 Duo processors,
17.3-inch Hi-Def display, 1GB graphics card and JBL with SRS premium
sound effect to turn your notebook into a multimedia powerhouse.
For More Details
http://www.shoppingreps.com?SourceId=1120
|
2/18/2010 10:27:55 AM
|
0
|
Elango <gcra...@gmail.com>
|
Tiled background picture on MDI form
Hi all,
I used in some apps a tiled background picture - usually on an form -
to display a company logo.
That's easy, load the logo into a StdPicture und use PaintPicture in
2 nested loops to paint the logo "tiles" on the form background.
In a new app I have to tile the customers logo on the client area of
a MDI form. And the MDI form has no PaintPicture, ScaleMode,
ScaleX, or ScaleY.
I first thought about StdPicture.Render but it seems for the destination
ScaleMode must be vbPixels.
I came up with two solutions in plain VB6 and used the second:
1) a PictureBox on the MDI form
|
2/17/2010 7:39:39 PM
|
4
|
"Helmut Meukel" <NoS...@NoProvider.de>
|
DESCARGAS - ANTIVIRUS GRATIS 7654
Muchos problemas de rendimiento y seguridad de tu computador son causados por
virus maliciosos, la mejor forma de combatir esto es tener instalado un
Antivirus reconocido y actualizado en tu computador
Descarga gratis Antivirus en:
http://antivirus-gratis-descarga.blogspot.com/
Links de contenido del sitio web:
http://antivirus-gratis-descarga.blogspot.com/
http://antivirus-gratis-descarga.blogspot.com/2009/08/que-es-un-antivirus.html
http://antivirus-gratis-descarga.blogspot.com/2009/08/descarga-gratuita-de-antivirus.html
http://antivirus-gratis-descarga.blogspot.com/2009/0
|
2/17/2010 6:40:02 PM
|
0
|
=?Utf-8?B?YW50aXZpcnVzIGdyYXRpcw==?= <antivirusgra...@discussions.microsoft.com>
|
LockWindowUpdate
Hello!
When my form is resized or if the user clicks something from my menu,
lots in/ on the form changes (controls are resize, textboxes are moved).
Unfortuntately it's not an MDI scenario, else I would simply load
another form where everything is already placed where it should be.
During the resizing a lot of repaints occur because I need to place some
controls over others.
I was not able to draw everything myself on one dc and then blit
everything as soon as everything was prepared, but I need to use some
OCXes as well (while 1 of them is one that I don't have the sourc
|
2/17/2010 2:38:52 PM
|
13
|
hermann leinen <h.lei...@gmx.de>
|
ToolTipText Font
Is the ToolTipText Font fixed across country version character sets?
What is the ToolTipText Fontname for US?
Can we change the ToolTipText Font? How?
|
2/17/2010 1:42:01 AM
|
4
|
=?Utf-8?B?QmVl?= <...@discussions.microsoft.com>
|
App w UC distro
Hi,
If I have an app where I created 8 different User Controls, they are only
added when running, are they "compiled in" in the exe? Do I need to use a
hidden Form with one each on that Form, to get them auto-included? Tried to
read and understand, but no...
Would be nice to know before I let my fellow testers laugh at my not working
app... ;)
TIA/Henning
|
2/16/2010 9:47:18 PM
|
9
|
"Henning" <computer_h...@coldmail.com>
|
Question about rtf files
Hi,
I use rtf files for the help file in several programs and was wondering if
there was anyway to make bookmarks and hyperlinks in an rtf file? I have
created the files with both bookmarks and hyperlinks in Word and then saved
the file as an rtf, but the hyperlinks do not carry over.
Does anyone know of a way to do this? Or should I just invest in a program
to convert Word files to chm files?
Any help or direction appreciated.
Thanks,
Norm
|
2/16/2010 9:25:11 PM
|
14
|
"Norm" <Nor...@spoof.com>
|
Alternate Color Dialog
I am using the API to open the color dialog.
I would like to also open my own color dialog along side.
(1) how can I lock the two together so if I move one, the other follows?
or at least initially have them side by side or mine underneath?
(2) how do I communicate from my dialog to the API common dialog.
(a) to Close both from my dialog - i.e. send a cancel to the API if the
user chooses my selection.
(b)to put the selection from my dialog into the API Dialog custom colors?
|
2/16/2010 8:07:02 PM
|
13
|
=?Utf-8?B?QmVl?= <...@discussions.microsoft.com>
|
pcnetsecurity@gmail.com =?UTF-8?B?QXNzaXN0w6puY2lhIFTDqWM=?= =?UTF-8?B?bmljYSAgbWFudXRlbsOnw6M=?= =?UTF-8?B?byBkZSBjb21wdXRhZG9y?= =?UTF-8?B?ZXMgaW5mb3JtYXRpY2Eg?= =?UTF-8?B?Vml0w7NyaWEtZXMgMTU0NTA=?=
Contato: pcnetsecurity@gmail.com
Contato: pcnetsecurity @ gmail.com
Planos a partir de R$ 250,00 .
Assist�ncia T�cnica
Prestamos assist�ncia t�cnica nos computadores de sua empresa ou resid�ncia, e tamb�m possu�mos uma equipe qualificada para fazer a manuten��o no pr�prio local.
- Contratos de Suporte e Manuten��o
Reduza os custos de sua empresa com solicita��es de visitas t�cnicas para seus computadores, elaboramos um contrato de manuten��o integrado para sua empresa onde disponibilizamos: t�cnicos, equipamentos de suporte e substitui��o, e atendimento no hor�rio comercial ou
|
2/16/2010 5:18:23 PM
|
0
|
Assitencia manutencao remocao de virus computador pc<manutencao.assiten...@computador.pc.com>
|
Using DIR() to read a directory.
My VB5 reference manual states that directory names "are retrieved in
no particular order". On my computer they are always retrieved in
ascending order (converting all characters to upper case). Do
different versions of Windows return the directory entries otherwise?
|
2/16/2010 5:12:29 PM
|
2
|
NadCixelsyd <nadcixel...@aol.com>
|
Commom Dialog Error
Hi all.
Yes I am using good ol VB6.
Can anyone do this and see if you get the same result.
The example taken straight from AllAPI example of bringing up the open\save
dialog box.
I create a little exe and run it on Winders XP and Vista and all works as
expected. But if I run the exe on my Winders 7 64bit machine where VB6 is
not installed the program goes straight to the msgbox saying cancelled was
pressed.
Is this a Winders 7 issue or a 64 bit issue.
Any suggestion for a work around
AllAPI Example Code Below
Thanks
Ivar
Option Explicit
Private Declare Function GetOpen
|
2/16/2010 11:35:57 AM
|
5
|
"Ivar" <ivar.ekstrome0...@ntlworld.com>
|
Save Icon in different sizes
Hi all, I am using Visual Basic 2008. I have Visual Basic code (see
below) which changes the Form icon image with PictureBox image. My
question is that what code line I should use in code below that I can
save this icon on a path in different sizes like 16 x 16 or 32 x 32
etc. Please can any friend can help
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles Button1.Click
Dim img As New Bitmap(PictureBox1.Image)
Dim g As Graphics = Graphics.FromImage(img)
g.DrawImage(img, 0, 0)
Dim Hicon As IntPtr =
|
2/16/2010 9:44:51 AM
|
2
|
K <kamranr1...@yahoo.co.uk>
|
vb6
Why is this newsgroup still active? I thought Microsoft killed VB6 in 2002?
|
2/15/2010 8:54:01 PM
|
7
|
=?Utf-8?B?SmFrZSBUaGUgSGF3aw==?= <Jake The H...@discussions.microsoft.com>
|
[OT] RIP DLLHelp
I just tried to lookup a DLL and found this message:
http://support.microsoft.com/dllhelp/
DLLHelp
The DLL Help application was retired on February 8, 2010 and is no longer
accessible.
|
2/15/2010 8:18:36 PM
|
8
|
"Nobody" <nob...@nobody.com>
|
If you had to move from VB6...
In another thread, someone said that compared to VB Fred, VB6 was
pathetic.
This low attempt to turn me from my private choice of language slid
off my back like water on a duck.
However, it did pique my curiosity.
If I had to move from VB6, which language would I choose.
Which language would most resemble it in IDE, ease of coding and, yes,
RAD quality.
I would accept a learning curve about the same I had to go through
with VB6. About a hundred hours to get a simple database program
running (from picking up the course book) and about a year or two to
get moderatly proficient
|
2/15/2010 3:33:01 PM
|
81
|
bitshif...@sympatico.ca
|
command line build...turn on or off the auto-increment option
C:\Program Files\Microsoft Visual Studio\VB98\VB6.exe /MAKE /OUT
"C:\src\MyApplicationSourceFiles\MyApplication.vbp.log"
"C:\src\MyApplicationSourceFiles\MyApplication.vbp" /outdir
"C:\BuildResults\MyApplication\"
The above is what I have now.
Is there any way from the command line to turn on/off the "auto increment"
option?
My motivation is that........when I do a "Gold Build", I want to increment.
But when I do a non-gold-everyday routine build, I don't want it to auto
increment.
This is actually the one leftover vb6 project that I'm trying to get into
our CI (Con
|
2/15/2010 3:27:09 PM
|
13
|
"sloan" <sl...@ipass.net>
|
Where Am I
I click the mouse on an component on the form.
I want to know the X,Y mouse position relative to the top,left of the form.
The mouse down event gives me the x,y of the position of the mouse in the
control in its container.
The container may be in any depth of containers.
How do I universally get the mouse x,y relative to the form left,top?
|
2/14/2010 11:31:01 PM
|
7
|
=?Utf-8?B?QmVl?= <...@discussions.microsoft.com>
|
How to read HID of PC component
Hello,
How can I read HID (hardware id) of PC component, like hard disk hid,
mainboard hid, processor etc. ?
Please help.
Thanks in advance
Johns
*** Sent via Developersdex http://www.developersdex.com ***
|
2/14/2010 7:29:07 PM
|
3
|
John S <nospam>
|
Ever had to judge a new to-be-hired in interview ? REPOST
Subject: Ever had to judge a new to-be-hired in interview?
This is a repost and is the result of a group effort by many, very
many of you.
I repost it because I reworked/corrected it and feel it should be
given to the world.
-------------------------------------
Well, we have.
The place where I worked routinely received hundreds of resume
whenever we actively looked for VB programmers or not, not counting
the unsollicited ones we received in job lot.(That was about in the
2000's)
After wading through that morass and selecting the few hopefulls, we
then had to call them in i
|
2/14/2010 7:08:51 PM
|
16
|
bitshif...@sympatico.ca
|
Percentage of user for each system
Anybody has any idea about the percentage of user for each system ?
I've seen one number of 1% for Win 98 SE.
I don't think it can be that low but, hey...
I personally have Win 98 SE for basic compilation
Win NT 4.0
Win 2000
Win XP for general work
and Win Vista for testing.
Just to give an idea: I've had clients who had trouble installing on
Win 2000 when the compilation was not done on my Win 98.
I'll do my own research but I want your estimates, guy.
Thanks in advance.
|
2/14/2010 7:06:34 PM
|
3
|
bitshif...@sympatico.ca
|