Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
 
  HOME    TRACKER    Visual Basic




Extract Resource With Progress


Hello! this is My first post..
I need help to create-update progress bar when extracting .res file from compiled project. Code was taken from: www.vbcode.com. In My case res file is from 2-13 mb, so I would like to see when extracting is finished on slow machine. Thanks in advance.




View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread
Extract Cabfile From Resource?
Yo...

I've been reading a lot on those resource files...
and i figured i could use one.

So i added a .cab file to my exe...
and now i want to create the resource file on a custom location...
but as a test i used the following:

Code:
Private Sub Form_Load()
Dim byteArray As Byte

byteArray = LoadResData(101, "CUSTOM") '<-- the error is on this line...
Open App.Path & "file.cab" For Binary As 1
Put #1, , byteArray
Close #1
end sub()
...but now i get a runtime error 13: type mismatch

I suspect .cab files cant be copied from the resource??
or am i doing something wrong, here?

Thanks...

(Master)Tom.

Extract Resource File?
Hello,

Is there code out there that will allow me to extract the resource file from a vb executable? I want to grab the languages from the resource file.

Thanks!

How To Extract A File From A Resource
Hi friends, I want to extract a file from a resource file, but don't know how to do. How can I do this ? Pls give me the source code. Thanks.

Looking For Tool To Extract Hard-coded Strings Into Resource File
I’m looking for a tool to automatically extract strings from VB project to resource file. The project is too large to do the job manually.

So far, I’ve found one - ResMe String Extractor, which looks pretty cool, but the price tag seems a bit too high ($595). Anybody knows cheaper or possibly free tools?

Thanks!

.: Is It Possible To Extract "Multiple" Files From Resource (RES) File?
Hi everyone!
I need some another help on I/O file, please..
In this case, i'm using custom Res file and i want to extract multiple files from it to e specified destination. I an almost similar question in the forum, but a forgot to ask whether it is possible to extract more than one file in a push.


vb Code:
Private Sub Command1_Click()     Dim intFF as Integer     Dim strPath as String     Dim bytData() as Byte      intFF = FreeFile     strPath = App.Path & "data.dat"     bytData = LoadResData("Writings","CUSTOM")      Open strPath for Binary as intFF          Put intFF, , bytData     Close intFFEnd Sub


But the code above extract a single file only which is 'data.dat'. So, how should I do to extract let's say 3 custom files in a turn?

Anyway, thanks to schoolbusdriver for the code

Thank you.

How To Extract Resource File From Other File?
I want to grab a few resources from shell32.dll. I know there is some resource grabber software out there, but I only need to do this one time so I can't justify purchasing one of these.

Any help on how to grab a resource file from another file would be appreciated.

Resource Files : How To Import From A Text File Into A Resource String Table
Hi every one,

I am using a resource string file. I need to fill my string table with data from a text file, but the "paste" menu item is disabled. How to copy from a text file into a string tabel(resource file) without typing all the data?

Thanks

Resource Files && Resource Compilers
can anyone explain how these work and how to make them?

Cool Progress Bar V2.0 - Skin Your Progress Bars Or Use Nice Color Gradations!
Hey, I've made this neat control that works just like any progress bar, but you can choose an image for the background and another one for the foreground!

Now, here's the fun part: you can tell it to automatically draw a gradation or solid box to these images!

Full source code + OCX included (and a nice demo). Have fun

How To Show Progress In Progress Bar For Long Running Queries
Dear Friends,

I am executing following statement...

*****
Con.Execute "sp_MyProc '21-12-2002' "
*****

In this execute statement I'm executing a stored procedure which takes time from 1 sec. to even 1 or 2 hours, depending on the date which I'm pasing to the procedure. Here whole processing is done in database only not through VB.

Even sometimes I may fire long running queries in MS-SQL or MS-Access or ORACLE.

So in these situations how can I show the progress in my Progress Bar.

Even sometimes I'm doing such a processing that I'm not able to keep track of how much processing is done and how much is left. Please tell me how can I show progress in the prgressbar.

Kindly attend my problem.

Regards......
- Charansing..............

Progress Bar To Work In Sync With Bat File Progress ?
Well i doubt this is possible, but i want to register some OCX's via a bat file and use a prog bar to display the process.


VB Code:
cd %WinDir%system regsvr32/s file.ocx


^^ kind of thing.

Is this possible ?

How Can I Monitor The Inet Progress Using Progress Bar Control
Dear Friends,

I used a Internet Transfer Control to download a chunky HTML file and then parsed it. Can I show the downloading progress using the progress bar control?

Thanks

response = inetQuotes.OpenURL(query_url)

*Resolved* How Can You Slow Down The Progress Bar's Progress?
How can I make my progress bar move slower? Following is my code, as soon as I load the form the progress bar ends immediately. I won't my users to see the progress bar moves!
Please provide code, thank you.


Private Sub Form_Load()

Dim PrgCounter As Integer

ProgressBar1.Value = 1

ProgressBar1.Visible = True

ProgressBar1.Max = 10000

Do While ProgressBar1 < 10000

ProgressBar1.Value = PrgCounter

PrgCounter = PrgCounter + 1

Loop

End Sub

Progress Bar Showing Code-progress
How to make a progress bar that can show the portion of a part of codings have been completed?

Progress Bar Makes My Progress Slower ??
Hi,
I was wondering why when I put a progress bar, my process takes twice as long... I mean I know that it has to redraw and all but Am I doing something wrong.... ?

.min = .value = 0
.max = recordset.recordcount
do until recordset.eof
'Do something
.value = .value + 1
recordset.movenext
loop

Progress Bar Makes My Progress Slower ??
Hi,
I was wondering why when I put a progress bar, my process takes twice as long... I mean I know that it has to redraw and all but Am I doing something wrong.... ?

.min = .value = 0
.max = recordset.recordcount
do until recordset.eof
'Do something
.value = .value + 1
recordset.movenext
loop

Faking Progress With Progress Bar
Basically I have an operation in my code that finishes in a blink of an eye. However it is necessary to understand that it is working.

How do I fake like there is actually some progress going on but in reality its just a loop where the progressbar is incrementing.

Example:


VB Code:
For i = 0 To UBound(Mcf())                 i = i + 1            End If


Obviously this is worthless code but its to illustrate my question.
Now this processes nearly instantly. But I want to have the user see progress bar incrementing slow enough for them to realize what is going on...

Thanks IN Advance

Progress Bar To Monitor Progress
Hello

VS 2005
CF 2.0
WM5
I have created an application that scynchronizes the central database by sending changes to a web service.

This normally takes 5 to 10 seconds and the customer wants to have some kind of progress bar to show that something is happening.
This is some code that would explain what needs to be monitored. (Only showing the main parts - otherwise to much code to show)
Code:
'Synchronise Data with the central database
Private Sub MenuItem9_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MenuItem9.Click

Try

If (dsIncidents.HasChanges()) Then

dsChanges = dsIncidents.GetChanges()

'Send only the changes and return a fresh update from the central database

Dim updatedIncident As DataSet = ws.SynchroniseIncidentChanges(dsChanges)

'Assign to the global dataset

Dim objGlobals As New Globals()

objGlobals.IncidentData = updatedIncident

Else

'There was not changes made to the PDA incidents, so just download the latest incidents

Me.GetLatestIncidentData()

End If

End Try

End Sub

So when the code above is running it should display a progress bar to show how long it will take. Or it could show just a animation so the customer knows there is something going on in the background.

Many thanks for any advice and code samples,

Steve

Extract A Par Of A BMP Into A New BMP
Hello dudes

I'm new in this graphics management in VB6. I looked for an answer about my question but I had no luck. Please target me where I can look.

I'm coding an AVL software for the company I work for. I'll receive information about the mobiles GPS's and display it that on screen. I have done everything but the map showing, and that is what is worryimg me.

I have several VERY big BMP file, let´s say almost 100 mb each. They was generated by exporting a vectorized file. Each of them has their own georeferentiation (I hope the word exists). This means that I know the relation between px and miles for each map. (i.e. 120 px = 1 mile)

Depending of the mobile position, I'll have to show only a portion of the map, and as I cannot load the whole pic on memory, my idea is to somehow "cut" the original bitmap and make on the fly a new smaller temporary bmp, which will be the one showed on screen. These idea will be good for both doing zoom and pan.

The question is simple: where do I start looking for a solution?

Thx !

Extract Value!
In a Combo Box i have values like this..


"GF0171[Edit by Anis]"
"GF0181[Edit by John]"
"GF0191"

How i can extract the values, only "GF0171", from the string without brackets etc!..

Trying To Extract From Txt Box
Hello,
I am trying to extract data from a text box and put it into two diffrent text boxs. For example I have a text box named
name.text and lets say that the data in that box is Doe,John

So the question is, If i make two other text boxs, Fn.text and Ln.text, how am I able to get the last name Doe in Ln.text box and first name John in Fn.text ?

Thanks alot
Jim

Extract Bmp
anybuddy know how 2 get bitmaps from a separately compiled resource file?

Vb Self Extract?
Is there any way to create a project that, like a zip, unzips and moves the contained files to a certain directory?


any clue?

Extract .ico From .dll
How can I extract icons from a dll file

--------------------------------------------------------------------------------------------------
Programing today is a race between software engineers striving to build bigger and
better idiot-proof programs, and the Universe trying to produce bigger and better idiots.
So far, the Universe is winning. --- Rich Cook
http://www.freewebs.com/simpleapps/

Extract Wav From AVI
Just wondering if this is possible. Trying to create a prog that will be able to do this. Thanks for the help. THanks VIZ

Extract ToolBitmap From Ocx
Hi,
Can somebody help me with a function to extract the Toolbitmap image from an activex?
This means not the icon, therefore there are plenty of api functions, but just the bitmap image, (see Toolbitmap32 node in registry)

fg

Extract Solution Need!!!
I got a problem when Im trying to extract data from file to array.
Is there a good way to do it?
I know a way to do it but it takes allot of for:next loops, so the code does'nt look pretty.

where is some examples of what I need to be extracted:

Form("Big Bang",150,250,300,200,-1,1) 'Name,Left,Top,Width,Height,BackColor,Visible
Button("Check",20,80,70,30,-1,vbBlack,1,1,0) 'Caption,Left,Top,Width,Height,BackColor,TextColor,Visible,OnForm,Valu e
TextBox("NoName",20,50,80,-1,-1,-1,1,3) 'Text,Left,Top,Width,Height,BackColor,TextColor,Visible,OnForm
Font(9,"Arial",-1,-1) 'Size,Name,Bold,Transparency


Kimbo

How To Extract Files?
How can I extract files from a vb file
I mean: I want to make a program that when you run it
it extract another file, anyone know how?

Edit:
Bacause I want to extract the Inet OCX info system32 folder when someone running my prog

Webpage Extract
I would like to be able to connect to a webpage and extract certain info from that page {example} goto weather.com and retrieve the current radar image and place it on my form in a picture or image box. How would i go about this once ive connected to there server, or can i> Thanks upfront for any advice.

VBA To Extract Xls Properties
Hi, i'm new here. I just made a search on my network for all .xls files.
There's 52 000 files. Now i have the path of every in a database, and I'd like (with vba) get the property of each one.

I need :

- the version of Excel that created it.
- the creator of the file
- the last modified date
- and I need to know if there's code in the workbook (Modules)
----

What would be the fastest way of doing it?
And how can I open [vitually] the .xls and extract the info I need?


Thanks a lot for helping me!!

How To Extract Hyperlinks
Hello,

I have a worksheet (Sheet1) that has a random dispersion of hyperlinks throuhgout several cells. I would like to create a macro that identifies a cell that contains a hyperlink, copies the actual link, then places the address in the same cell on another worksheet.

For example, if cell C4 on Sheet1 contains the hyperlink: www.cnn.com, then I want cell C4 on Sheet2 to have the value: "www.cnn.com".

Any help is greatly appreciated!

-Aerosoob

Match And Extract
I have a variable called "data" and in it contains the following:


Code:
<li>
<a href="/show.do/1/255">Day Break</a>
</li>

<li>
<a href="/show.do/1/272">Dead Like Me</a>
</li>

<li>
<a href="/show.do/1/24">Desperate Housewives</a>
</li>

<li>
<a href="/show.do/1/25">Dexter</a>

</li>

<li>
<a href="/show.do/1/27">Dirt</a>
</li>

<li>
<a href="/show.do/1/26">Doctor Who</a>
</li>
I need to loop through the code and check that the href tag starts off with "/show.do/" then extract the numbers after and also the name (these will be put into an array). I am stuck for idesa because I dont understand regexp in vb6 and cant quite work out any other way of doing it! Any ideas?

Execute .Exe From .res Without Extract
Hi

How can i execute .exe file from resource file without extract it ???

Extract Into Array?
heya.
ive got an array that has 3 digits in it. each digit seperated by a space. so something like "3 12 2"

how would i exctract each digit and put it into another array so it looks like this:

oldarray = "3 12 2"

newarray(1) = 3
newarray(2) = 12
newarray(3) = 2

Extract Icon
if you add a custom book mark to firefox it auto finds the webpage icon and adds it to the book mark, i would like to do the same thing , does anybody have any idea how its done?

How To Extract Xml Data
Hello to all,
I want to extract an xml data, but I don't know how to do it. Will you please post some sample how to do it...
Thanks

Auto Self Extract
Hello:

I'm creating a new proyect about two programs.

The first one is for creating a configuration file (.txt) and the second one reads that .txt file.

Well, what I want to do now is to join the .txt file with the exe that reads that .txt file, so I have just a exe file.

How can I join the two files (exe and txt), for the exe to read the txt file without having both files present ?

Thanks,
AeroForce 64

Extract Text
A single cell contains city and date. vb: etten-Leur, 29 januari 2004
I want to extract/delete the city name (etten-leur), i want to keep the date as a string.

thnx in advance.

Werner

Extract Icons
Im making a shortcut program that will have a list of EXEs and i want to be able to display the icons of the EXEs. How do i extract an exes small icon(to BMP format) and resize it to 13x13?

Extract Items With VB5
I have searched this site for information on how to extract lines from a txt file in VB5. So far no luck.

Would any have an ideal how to extract a line from a text file then extract data from that line?

If anyone knows of some threads that would help me that would be Great!!


Thanks
New To VB

Extract Data
Hi,

I have an email column in a table where in I store email id's. I need to extract all email id's which are from hotmail.com and save them onto a file. How do I go about this. Thanks.

How To Extract String?
I need extract text strings between two defferent separator characters in string line.
How can I do it by VB programming???

Thanks for your help!!

Best Regards.

Extract Code From .exe
Does anyone know if there is a way to extract the code from a VB .exe file? If so, please advise me. Thank You

Extract / Output OLE
What is the code to output a OLE. e.g. I want my program to place ole1 on the desktop

Extract Filename
Here's the story:

i made a text editor and i have assigned the file type to the program and when somebody double clicks an .txt2 icon file i want it to open in my program and display the filename in the caption.

How can i extract the filename from a file that has been opened?

Extract Form From EXE?
Hiya,
I had a form and that worked perfect, but now I changed something (don't know what) and now it does things I don't want it to do.

So is there a program or something that can extract a form from the exe that I compiled?

Search And Extract
How am i able to search and extract names contained in a txt file?

What are the compare and extract functions?

Any tut's out there?

hypnotik

Extract Code From Exe
I recently had a major crash on my pc thanks to my 3 1/2 yr old daughter and i had to reformat my hard disk, losing everything.

But i had sent a programme to a mate who emailed it back to me, is there any way of extractiing the code from the exe file.

If anyone can help i will be so gratefull as it took me weeks to write it.

Thanks

Extract Data
Im trying to extract all my data from my database into a flat file csv. NAy tips or pointers, i defined my scripts but i get errors look below



Code:
Public Sub RunClaimProfile()
On Error Resume Next
Dim sCFRFILE As String
Dim lRecNum As Long
Dim rs As ADODB.Recordset
Dim strSQL As String
sExportFolder = "C:"
sCFRFILE = CFREXTRACT & "CLAIMPROFILE_" & Format(Now, "yyyymmddhhmmss") & ".txt"

Open sExportFolder & sCFRFILE For Output As #1 Len = Len(recCFR)
If Err <> 0 Then
MsgBox ("ERR: " & Err.Description)


Exit Sub
End If

Close #1

' Open sExportFolder & sCFRFILE For Random As #1 Len = Len(recCFR)
If Err <> 0 Then
MsgBox ("CFR Export File can not be created- Open err=" & _
Err.Number & ":" & Err.Description & " - notify IT immediately")
Exit Sub
End If

iOldRow2 = 0

strSQL = "SELECT * FROM CFR "

Set rs = New ADODB.Recordset
rs.Open strSQL, g_objConn

Do While Not rs.EOF

InitCFR
recCFR.RECEIVEDATE = (rs!RECEIVEDATE)
recCFR.GROUPID = (rs!GROUPID)
recCFR.EHPID = (rs!EHPID)
recCFR.PATOFFSET = (rs!PATOFFSET)
recCFR.PATNAME = (rs!PATNAME)
recCFR.DCN = (rs!DCN)
recCFR.LINSEQ = (rs!LINSEQ)
recCFR.LINEADJ = (rs!LINEADJ)
recCFR.UNITS = (rs!UNITS)
recCFR.POS = (rs!CFR_POS)
recCFR.SCDCODE = (rs!SCDCODE)
recCFR.DXDCODE = (rs!DXDCODE)
recCFR.CHARGE = (rs!CHARGE)
recCFR.DISALLOWED = (rs!DISALLOWED)
recCFR.ALLOWED = (rs!ALLOWED)
recCFR.COPAY = Format(rs!COPAY)
recCFR.DEDUCT = (rs!DEDUCT)
recCFR.COINS = (rs!COINS)
recCFR.OTHER = (rs!OTHER)
recCFR.PAID = (rs!PAID)
recCFR.CAPSVC = (rs!CAPSVC)
'recCFR.CFR_TRAILER = (rs!CFR_TRAILER)



lRecNum = lRecNum + 1
Put #1, lRecNum, recCFR
If Err <> 0 Then
MsgBox ("CFR Export File Write err=" & _
Err.Number & ":" & Err.Description & " - notify IT immediately")
Close #1
Exit Sub
End If
rs.MoveNext
Loop

rs.Close
Set dbs = Nothing

MsgBox ("Export complete - " & lRecNum & " records written to " & sExportFolder & sExportFileName)


End Sub

Heres where i define my structure

Code:
Private Type udtCFR


CFR_FORMTYPE As String * 1
CFR_RECEIVEDATE As String * 8
CFR_CLIENTCODE As String * 3
CFR_PROCESSDATE As String * 8
CFR_PROCESSTIME As String * 6
CFR_GROUPID As String * 8
CFR_GROUPNAME As String * 30
CFR_GRPALTID As String * 16
CFR_PROVTAXID As String * 9
CFR_NAME As String * 40
CFR_ADDRESS1 As String * 40
CFR_ADDRESS2 As String * 40
CFR_CITY As String * 20
CFR_STATE As String * 2
CFR_ZIP As String * 5
CFR_BANK As String * 30
CFR_BACCT As String * 17
CFR_ROUT As String * 9
CFR_TAXID As String * 1
CFR_PAYMTH As String * 1
CFR_PAYTO As String * 1
CFR_PRVTIN As String * 9
CFR_PRVSFX As String * 3
CFR_PRNAME As String * 40
CFR_PBRPAR As String * 1
CFR_PBRSPECIALTY As String * 3
CFR_PBRNETWORK As String * 8
CFR_EHPID As String * 24
CFR_PATOFFSET As String * 2
CFR_PATNAME As String * 40
CFR_PATADD1 As String * 40
CFR_PATADD2 As String * 40
CFR_PATCITY As String * 20
CFR_PATSTATE As String * 2
CFR_PATZIP As String * 5
CFR_PATREL As String * 1
CFR_PATSEX As String * 1
CFR_PATDOB As String * 8
CFR_PATACCTNO As String * 16
CFR_SCANBATCHID As String * 8
CFR_PROCBATCHID As String * 8
CFR_PAYTOBATCHID As String * 8
CFR_DOCUNUMBER As String * 17
CFR_DOCUDATE As String * 8
CFR_RANUMBER As String * 16
CFR_ENRSSN As String * 9
CFR_ENRUNIQUEID As String * 16
CFR_ENRNAME As String * 40
CFr_ENRADD1 As String * 40
CFR_ENRADD2 As String * 40
CFR_ENRCITY As String * 20
CFR_ENRSTATE As String * 2
CFR_ENRZIP As String * 5
CFR_CLAIMNUM As String * 16
CFR_DCN As String * 16
CFR_WORKSHEET As String * 10
CFR_RESERVED0 As String * 1
CFR_RESERVED1 As String * 3
CFR_RESERVED2 As String * 1
CFR_RESERVED3 As String * 17
CFR_RESERVED4 As String * 8
CFR_RESERVED5 As String * 67
CFR_RESERVED6 As String * 4
CFR_RESERVED7 As String * 30
CFR_LINSEQ As String * 2
CFR_LINEADJ As String * 2
CFR_PLANID As String * 8
CFR_PLANNAME As String * 30
CFR_PLNALTID As String * 16
CFR_POLICY As String * 16
CFR_INCEPT As String * 8
CFR_EXPIRE As String * 8
CFR_SVCDTEFR As String * 8
CFR_SVCDTETO As String * 8
CFR_SCDCODE As String * 6
CFR_DXDCODE As String * 5
CFR_MOD1 As String * 2
CFR_MOD2 As String * 2
CFR_UNITS As String * 8
CFR_POS As String * 2
CFR_TOS As String * 2
CFR_BILLTYPE As String * 3
CFR_CHARGE As String * 10
CFR_DISALLOWED As String * 10
CFR_ALLOWED As String * 10
CFR_COPAY As String * 10
CFR_DEDUCT As String * 10
CFR_COINS As String * 10
CFR_OTHER As String * 10
CFR_PAID As String * 10
CFR_LIFETIME As String * 10
CFR_LIMIT As String * 10
CFR_COBAMT As String * 10
CFR_OOP As String * 10
CFR_CAPSVC As String * 1
CFR_INSIND As String * 1
CFR_COBIND As String * 1
CFR_REASON As String * 1
CFR_OTHERINS As String * 1
CFR_SCDCLASS As String * 3
CFR_DXDCLASS As String * 3
CFR_CAUSECODE As String * 3
CFR_AUTHNUM As String * 16
CFR_AUTHSTATUS As String * 1
CFR_BENEFITCODE As String * 8
CFR_GLCODE As String * 16
CFR_PRCACC As String * 4
CFR_MEDACC As String * 4
CFR_LMTACC As String * 4
CFR_LINESTATUS As String * 4
CFR_CLMSTATUS As String * 4
CFR_REASONCODE As String * 4
CFR_PAT_CLMS As String * 5
CFR_PAT_VISITS As String * 5
CFR_PAT_CHARGE As String * 10
CFR_PAT_DISALLWD As String * 10
CFR_PAT_ALLOWED As String * 10
CFR_PAT_COPAY As String * 10
CFR_PAT_DEDUCT As String * 10
CFR_PAT_COINS As String * 10
CFR_PAT_LIFETIME As String * 10
CFR_PAT_LIMIT As String * 10
CFR_PAT_COBAMT As String * 10
CFR_PAT_OTHER As String * 10
CFR_PAT_PAID As String * 10
CFR_PAT_OOP As String * 10
CFR_PAT_BUCKETS As String * 100
CFR_POL_CLMS As String * 5
CFR_POL_VISITS As String * 5
CFR_POL_CHARGE As String * 10
CFR_POL_DISALLWD As String * 10
CFR_POL_ALLOWED As String * 10
CFR_POL_COPAY As String * 10
CFR_POL_DEDUCT As String * 10
CFR_POL_COINS As String * 10
CFR_POL_OTHER As String * 10
CFR_POL_PAID As String * 10
CFR_POL_LIFETIME As String * 10
CFR_POL_LIMIT As String * 10
CFR_POL_COBAMT As String * 10
CFR_POL_OOP As String * 10
CFR_POL_BUCKETS As String * 100
CFR_PPR_CLMS As String * 5
CFR_PPR_VISITS As String * 5
CFR_PPR_CHARGE As String * 10
CFR_PPR_DISALLWD As String * 10
CFR_PPR_ALLOWED As String * 10
CFR_PPR_COPAY As String * 10
CFR_PPR_DEDUCT As String * 10
CFR_PPR_COINS As String * 10
CFR_PPR_LIFETIME As String * 10
CFR_PPR_LIMIT As String * 10
CFR_PPR_COBAMT As String * 10
CFR_PPR_OTHER As String * 10
CFR_PPR_PAID As String * 10
CFR_PPR_OOP As String * 10
CFr_PPR_BUCKETS As String * 100
CFR_PPR_PROGRAMVER As String * 5
CFR_TRAILER As String * 2

End Type
Dim recCFR As udtCFR


thanks

Copyright © 2005-08 www.BigResource.com, All rights reserved