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




What Controls Are These?


I would like to know what the two large items on both sides of the red arrow are. Primarily what they are called, or if youd like to tell me how to implement them that would be cool too




View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread
File Size And Multiple Controls In A Single OCX (like Common Controls)
I have been working on several controls that all draw with similar graphic methods, such as UseXPTheme, System, OfficeXP, Office2003, etc. DaVBMan reminded me that I can have several public controls in a single ocx like the Common Controls do. So far I have an autohide toolbar, custom button, custom frame with titlebar, scrollable container, and a system listbox. I also have a few more ideas for additional controls.

Here is what my concern/question is. For arguments sake, let's say the name of my main ocx is IDKControls. Then pretend that the size of the complete ocx is 1 meg. Somebody adds a reference to my ocx so all these controls show up in their vb toolbox. Then let's say the only control from the ocx they use is the custom button. When they build their setup for their program, is the entire size of the main ocx included in their compiled app, or just my control(s) that they use?

I guess my primary reason for asking is I'm trying to decide whether to set my controls up as stand-alone controls, or whether to go with the main ocx that contains all the controls. If I go with a single ocx I can move most of my graphic methods to a module that would be used by all the controls.

I have learned a lot in the past few months about drawing custom graphics, but when it comes to designing something like this I am still dealing with some very large holes in my knowldedge! Thanks


God Bless America

ZOrder And Layer (putting Intrinsic Controls Above ActiveX Controls)
Hi, in VB, it seems that intrinisc controls cannot be above/in front of (in zorder) usercontrols.

Is there anyway around this?

- Alex

User Controls And Windows Installer --controls Aren't Getting Registered
Hi,

Can anybody give me the rundown on what I need to do toget my user control to install with my application. I have a moving graphic control that uses a slider [MS windows Common Conrols 2(6.0)].It runs just fine when I test-install on my development drive--Win2K Pro on my secondasry IDE..

Well, that's no big trick since VS 6 Enterprise is already installed, and my control was registered locally when I built it. The problem is that when I reboot to my testing drive--NTS4 on my primary IDE-- it finds a data type mismatch. At first, I was getting a message saying that MSCOMCT2.OCX was not properly registered, or that a component was missing. After I included the control in the components for my main project [where it is not used directly, only through my user control], I no longer got the error for that component. It still doesn't start up properly though. I'm wondering what I'm missing in my installer.

Another thing I'm wndering about--and I don't know if this is related--is the ADODC controls. I have had problems with the events for these controls. A week ago, when I tried switching from ADO 2.0 to ADO 2.5, the compiler didn't recognize the signatures for these events, and I had to switch back to get them to work. Now the situation is reversed. The compiler started objecting to ADODC events again, and I had to switch the reference to ADO 2.5 to get the program to compile. Could this be the source of the data type mismatch that NT4 sees?

Any suggestions for how I can get the installer to install dependably would help.

Thanks,

Joseph

Joseph

Compare Main Form Controls To Subform Controls
Hello,

I have a form frmMissyFact and within this form I have a subform frmMissyFactbackup. the sub form is an exact copy of the mainform. The data source is different. What I am trying to do is compare the controls value on the mainform to the controls value on the sub form and if they don't match set the back color to Yellow. Basically the user want to know what has changed from the week before. I am trying to use a for loop. this is the code I have.

Private Sub Form_Current2()

Dim ctl As Control
Dim frmMain As Form
Dim frmSub As Form

Set frmMain = Me
Set frmSub = Me.frmMissyFactbackup.Form

For Each ctl In frmMain.Controls
If ctl.Value = frmSub.ctl(ctl.Name).Value Then
'set to normal color
Else
ctl.BackColor = vbYellow
End If
Next ctl

I keep getting a runtime error. Application defined or object defined error.

Does anybody have any Ideas on how i can make this work. I know I can write an if statement for each control but if theres a loop I can use it would be better.
Thanks,

Splitter Controls- Maximising Multiple Controls Per Pane?
I'm using MBP Splitter, but all splitters seem to do the same thing in this case- they maximise the control which is allocated to each pane of the splitter.

In my case, I have a Rich Text Box plus three labels which I want to place in a pane, but that isn't possible because the splitter only accepts one control to be allocated. My solution is to allocate a picture box element to the pane, then place the RTB & labels in that. That seems to work but I'm concerned as to how to resize the RTB when the pane changes size. Do I simply change the picture box control's size and assume the RTB will follow suite or do I have to resize both the picture control and RTB at the same time?

|
+--JDMils
|
+--VB6
+--VB Dot Net
|
+-- Navman GPS Forums @ http://forum.jdmils.com
|

Referring Controls Of User Controls In Class Module
Hi,
I'm developing an ActiveX control for Web application. ActiveX control has User Control form and Class Module. I want to refer the image control placed in user control in Class Module. Can u please send me a sample coding.

thanks in advance,

Lighweight Controls Above Image Controls - A Solution
I've been for the last 2 days searching and diggin' in the forum archives because I wanted to know whether I could make lightweight controls (labels and lines in my case) appear on top of a picture box, which finally turned out to be almost impossible (or more or less hard, better).

Well, I don't know if this has been posted before, so here I go. I use an Image control instead of a Picturebox, and set its Zorder to 1. Then I put the labels and lines and set its Zorder to 0. This way you can have an image and put labels above it. Obviously an Image control has a lot less features than a PictureBox, but if you're in my case (you only need to load an image that will serve as template) it does the trick very well.

Iterating Through Controls Collection Where Some Controls Are Arrayed
Colleagues,

Can I access the arrayed controls through the Form.Controls collection? I’ve tried the following code, but I get a run-time error.


Code:
Dim lin As Variant

lin = Me.Controls("linTran01")
‘linTran01(0..4) is a control array
‘I get a Run-time error 450 on this line “Wrong number of arguments or invalid property assignment.”

lin(0).BorderWidth = 5


Thanks,
- Nick

Difference Between Image Controls And Picture Box Controls
Could anyone tell me four differences between Image Controls and Picture box controls?
Thanks, Andy

Word 97 - Events Of Controls Made With Controls.add
I'm looking for a way to trap the events of controls made with the controls.add-methode.

f.e. a textboxes made with controls.add ....

    Set Mycmd = Controls.Add("Forms.textbox.1")
    
    Mycmd.Left = 10: Mycmd.Top = 10
    Mycmd.Width = 90: Mycmd.Height = 15.75
    Mycmd.Text = "This is the content of the TextBox1"

    Set Mycmd = Controls.Add("Forms.textbox.1")
    
    Mycmd.Left = 10: Mycmd.Top = 20
    Mycmd.Width = 90: Mycmd.Height = 15.75
    Mycmd.Text = "This is the content of the TextBox2"


... creates two nice textboxes.
But I cannot trap the events of the textboxes ...


Private Sub TextBox1_KeyPress(ByVal KeyAscii As MSForms.ReturnInteger)
    Stop
End Sub


... because it does not recognise the object textbox1, textbox2 etc..

Anyone a idee how to solve this?

Please notice that I'm using VBA in Word 97
With greetings and thanks in advance for your reply,

Adrey



Edited by - Adrey on 4/22/2003 1:25:45 PM

Exposure Of Controls Within User-created Controls
I'm playing the lottery here because I'm sure my question is so specific that only a few may know the answer, but what's life if you take no chances? Sorry for the epic nature of the post, but to boil it down - I need to know how to make a user control with standard VB controls on it exposed to the outside world.

I am using Borland's Silktest to test a complex application written in VB6.0 and C++ (COM). Silktest is pretty clever - it somehow automatically grabs out the bits of the interface so that you can write automated testing applications that interact with the application rather than recording keystrokes and mouse clicks.

What happens is you run your application with Silktest pointing at it. Silktest will recognize ActiveX controls and allow you to interact with those controls in your script, so I may see a text field and be able to read what's there, or even insert data into the field.

However, we've noticed a really odd thing - on a panel that my company wrote, if that panel contains user-built controls, those controls are fully exposed to Silktest. However, if that same form has something simple on it, like a VBLabel (which Silktest has built in support for!) it won't show up at all. As I mouse over our home-grown controls I see them show up with a unique identifier in Silktest. As I mouse over a vanilla VB label, I see it represented as an image, along with the entire rest of the control.

I think the problem has to be that the simple controls are not exposed to the outside world in the same way as our user built controls. My question for the VB gurus of the world - is there something I can do to expose these controls? If so, where do I get at it?

My developers are swamped, and they didn't know the answer off-hand. I will try to get VB loaded on my system and start experimenting, but I thought that just maybe someone knew the answer offhand.

I have to throw myself on the mercy of the boards - I am 5 years from any kind of real programming. I'm now out of retirement to write some automated testing scripts for an application I worked on an eternity ago. If it sounds like I don't know what I'm talking about, I'm sure you're right!

And thanks for reading if you made it through!

How To Know The Names Of Controls If We Create The Controls At Same Time
here the problem is, in the command button click event fuction i am generating 4 checkboxes and one more command button. so if i click the generated command button then i should get one text file depending upon the values of checkboxes. so i need to write a fuction for the generated command button. now what happend is, the names of the check boxes which i have created in the click event are local to that fuction. now if want to access the same names in another fuction then it is giving error as (object required). here i need to declare the controls globally. how can we declare controls globally. so now what i have to do.
please help me.

How To Know The Names Of Controls If We Create The Controls At Same Time
suppose i have generated 3 or 4 check boxes. i have created like this
Open "c:userdata
allapal28-5-03 VBVB Examplesinput.txt" For Input As #fileNo

Do While Not EOF(fileNo)
Line Input #fileNo, strLine
Set ctlName = Form1.Controls.Add("VB.CheckBox", strLine, Form1)
ctlName.Visible = True

ctlName.Caption = strLine

ctlName.Left = ctlName.Left + wid

ctlName.Top = ctlName.Top + hig

wid = wid + 1200

Loop
that input.txt contains weight,height,class, marks.

now in the screen i got 4 check boxes. but i am not able to know the names. depending upon their values i have to generate a file. for that i need to know their names.
please help me.
thanq

Draw You Own Controls Instead Of Using Image Controls
Hi all. I need some advice of you people

I have design a usercontrol that acts like an the vb6 commandbutton, but with a mouseover event and other features. This controls works fine to me.

What I am using are varius image controls to store the pictures of the command button with his release, over, pressed and up state.

Well ... I'm wondering if it's possible, instead of using image controls that loads jpg that was myself who draws the control in code with vb functions and apis.

my question is too is a better and faster method.

Here I attach a capture of the usercontrol where are placed the buttons that I'm actually using to this




Thanks very much

ActiveX Controls Vs. Shape Controls
I'm writing a program that allows a user to drag symbols (rectangles, lines and circles) from a stencil onto a drawing page. My symbols may also be labelled by the user - very similar to Microsoft Visio. I'm unsure as to what approach would be best. Should I create my own control with a label and a shape or do I just use the shape control provided and fit any labels within the boundaries of the shape.

Using active X controls provides me with the standard mouseup, click etc events that come with controls whilst using shapes would mean that I have to write my own algorithms for drawing, resizing, labelling and dragging.

Also how can I show the user that the control they've clicked on is ready for resizing or dragging. Vision does it with the use of several blue squares should I just change the border colour.

Please help I'm not asking for code or anything just the idea(s) (behind implementing my own visio)

Thanks
James.

Embedded Controls Vs UserForm Controls
Hello All...

I am (almost done) building a database/spreadsheet program that I have been using a UserForm with controls to manipulate. I would now like to switch to using embedded controls on a sheet within the workbook. The first thing I have noticed in trying to do this is that the embedded controls...(so it seems) can't do anything with a cell range unless it is part of a "Sheets" reference???... even if I select the sheet itself I still can't refrence a cell within the active sheet unless I call the sheet name first. e.g:


Code:
Sheets("Sheet2").Select
[A1].Select

This code gets an object error if I use an embedded control
but works fine with a userform control.

However this works fine for both:


Code:
Sheets("Sheet2").Select
Sheets("Sheet2').[A1].Select

Any Ideas???

Dynamically Loading Controls Into Controls...
I haven't worked with creating my own controls much in the past, and I need a bit of help. I've made two controls, one is a kind of listbox, another is an item to populate the listbox, that can hold pictures, text, etc. My question is how would I dynamically load an item control into the list control as part of an array?

^^^ I hope that makes sense

Adding Controls Using Me.Controls.Add() Into An Array Possible?
Adding controls using this method is it possible to create an array like this?

I have "always" (didn't know any better) just added controls using Load(), which I already have Control(0).

If I don't have any existing controls and want create a control array with this method? Can't seem to find anything in MSDN.

User Controls Being Painted Over By Other Controls , Please Help !!!
the problem i am facing is this control is being painted over by any other controls on the form.

can u please help me in this.

thanks

bye

pratik

Adding Controls To Controls At Runtime?
Heres a new one. How to add controls to other controls(like frames) at runtime, ideally with the control already on the form.




BoyIdiot

I never think of the future - it comes soon enough.
Albert Einstein
  

Edited by - Boyidiot on 4/5/2004 4:37:17 PM

Licensing Controls Dll Controls Ocx Controls
i can see my setup.lst file with the bootstrap files
this is a copy of it so what do i do next????
stumped me!!!



Code:
[Bootstrap]
SetupTitle=Install
SetupText=Copying Files, please stand by.
CabFile=Calvin.CAB
Spawn=Setup1.exe
Uninstal=st6unst.exe
TmpDir=msftqws.pdw
Cabs=1

[Bootstrap Files]
File1=@VB6STKIT.DLL,$(WinSysPathSysFile),,,3/26/99 1:00:00 AM,101888,6.0.84.50
File2=@COMCAT.DLL,$(WinSysPathSysFile),$(DLLSelfRegister),,5/31/98 1:00:00 AM,22288,4.71.1460.1
File3=@MSVCRT40.DLL,$(WinSysPathSysFile),,,2/8/99 1:00:00 AM,326656,4.22.0.0
File4=@OLEPRO32.DLL,$(WinSysPathSysFile),$(DLLSelfRegister),,3/8/99 1:02:26 PM,164112,5.0.4275.1
File5=@STDOLE2.TLB,$(WinSysPathSysFile),$(TLBRegister),,3/8/99 1:02:26 PM,17920,2.40.4275.1
File6=@ASYCFILT.DLL,$(WinSysPathSysFile),,,3/8/99 1:02:26 PM,147728,2.40.4275.1
File7=@OLEAUT32.DLL,$(WinSysPathSysFile),$(DLLSelfRegister),,3/8/99 1:02:26 PM,598288,2.40.4275.1
File8=@MSVBVM60.DLL,$(WinSysPathSysFile),$(DLLSelfRegister),,5/10/99 1:00:00 AM,1384448,6.0.84.95

[IconGroups]
Group0=Calvin
PrivateGroup0=True
Parent0=$(Programs)

[Calvin]
Icon1="Calvin.exe"
Title1=Calvin
StartIn1=$(AppPath)

[Setup]
Title=Calvin
DefaultDir=$(ProgramFiles)Calvin
AppExe=Calvin.exe
AppToUninstall=Calvin.exe

[Setup1 Files]
File1=@ANSI-GEN,$(AppPath)internet,,,8/24/99 4:26:22 PM,3669,0.0.0.0
File2=@README,$(AppPath),,,8/24/99 4:26:24 PM,531,0.0.0.0
File3=@R2HW95.EXE,$(AppPath)internet,,,8/24/99 4:26:24 PM,158720,0.0.0.0
File4=@R2H95.BAT,$(AppPath)internet,,,8/24/99 4:26:23 PM,749,0.0.0.0
File5=@PC-SYM,$(AppPath)internet,,,8/24/99 4:26:23 PM,3618,0.0.0.0
File6=@PC-GEN,$(AppPath)internet,,,8/24/99 4:26:23 PM,3463,0.0.0.0
File7=@PCA-SYM,$(AppPath)internet,,,8/24/99 4:26:23 PM,3618,0.0.0.0
File8=@PCA-GEN,$(AppPath)internet,,,8/24/99 4:26:23 PM,3618,0.0.0.0
File9=@NAV-PANL,$(AppPath)internet,,,8/24/99 4:26:22 PM,1983,0.0.0.0
File10=@MAC-SYM,$(AppPath)internet,,,8/24/99 4:26:22 PM,4237,0.0.0.0
File11=@MAC-GEN,$(AppPath)internet,,,8/24/99 4:26:22 PM,3571,0.0.0.0
File12=@LICENSE.RTF,$(AppPath)internet,,,8/24/99 4:26:22 PM,8137,0.0.0.0
File13=@license,$(AppPath)internet,,,8/24/99 4:26:22 PM,12,0.0.0.0
File14=@HTML-TRN,$(AppPath)internet,,,8/24/99 4:26:22 PM,9750,0.0.0.0
File15=@HTML-MAP.V4,$(AppPath)internet,,,8/24/99 4:26:22 PM,6138,0.0.0.0
File16=@HTML-MAP,$(AppPath)internet,,,8/24/99 4:26:22 PM,6447,0.0.0.0
File17=@ANSI-SYM,$(AppPath)internet,,,8/24/99 4:26:22 PM,4260,0.0.0.0
File18=@RTF-CTRL,$(AppPath)internet,,,8/24/99 4:26:24 PM,16791,0.0.0.0
File19=@Open Vacancies.rpt,$(AppPath)
eports,,,11/2/99 1:11:01 PM,17900,0.0.0.0
File20=@Vacancy.rpt,$(AppPath)
eports,,,11/2/99 1:11:56 PM,92160,0.0.0.0
File21=@timesheet.rpt,$(AppPath)
eports,,,11/2/99 1:11:35 PM,30970,0.0.0.0
File22=@Outstanding_Timesheets.rpt,$(AppPath)
eports,,,11/2/99 1:11:18 PM,25564,0.0.0.0
File23=@VacancyConfirmation.rpt,$(AppPath)
eports,,,11/2/99 1:12:14 PM,72704,0.0.0.0
File24=@Forecast_Revenue.rpt,$(AppPath)
eports,,,11/2/99 1:05:45 PM,15990,0.0.0.0
File25=@Invoice_Expense.rpt,$(AppPath)
eports,,,11/2/99 1:10:26 PM,273267,0.0.0.0
File26=@Invoice_Employee.rpt,$(AppPath)
eports,,,11/2/99 1:09:58 PM,274536,0.0.0.0
File27=@Invoice_Contract.rpt,$(AppPath)
eports,,,11/2/99 1:06:20 PM,255019,0.0.0.0
File28=@Invoice_Consultancy.rpt,$(AppPath)
eports,,,11/2/99 1:05:59 PM,268740,0.0.0.0
File29=@IV_Form.rpt,$(AppPath)
eports,,,11/2/99 1:10:45 PM,76800,0.0.0.0
File30=@Applicants.rpt,$(AppPath)
eports,,,11/2/99 12:58:47 PM,34224,0.0.0.0
File31=@Client.rpt,$(AppPath)
eports,,,11/2/99 1:00:02 PM,35944,0.0.0.0
File32=@CandidateList.rpt,$(AppPath)
eports,,,11/2/99 12:59:32 PM,27361,0.0.0.0
File33=@Candidate.rpt,$(AppPath)
eports,,,11/2/99 12:59:07 PM,100864,0.0.0.0
File34=@Contract.rpt,$(AppPath)
eports,,,11/2/99 1:00:22 PM,80836,0.0.0.0
File35=@Actual_Revenue.rpt,$(AppPath)
eports,,,11/2/99 12:58:28 PM,18508,0.0.0.0
File36=@Calvin.ico,$(AppPath)pics,,,8/24/99 4:26:26 PM,766,0.0.0.0
File37=@redge16.bmp,$(AppPath)pics,,,8/24/99 4:26:27 PM,824,0.0.0.0
File38=@PRINT.BMP,$(AppPath)pics,,,8/24/99 4:26:27 PM,246,0.0.0.0
File39=@PREVIEW.BMP,$(AppPath)pics,,,8/24/99 4:26:27 PM,1318,0.0.0.0
File40=@PASTE.BMP,$(AppPath)pics,,,8/24/99 4:26:27 PM,246,0.0.0.0
File41=@NEW.BMP,$(AppPath)pics,,,8/24/99 4:26:27 PM,246,0.0.0.0
File42=@HELP.BMP,$(AppPath)pics,,,8/24/99 4:26:27 PM,246,0.0.0.0
File43=@HANDSHAK.ICO,$(AppPath)pics,,,8/24/99 4:26:27 PM,1078,0.0.0.0
File44=@FIND.BMP,$(AppPath)pics,,,8/24/99 4:26:27 PM,246,0.0.0.0
File45=@EDIT.ICO,$(AppPath)pics,,,8/24/99 4:26:27 PM,1078,0.0.0.0
File46=@DELETE.BMP,$(AppPath)pics,,,8/24/99 4:26:27 PM,246,0.0.0.0
File47=@CUT.BMP,$(AppPath)pics,,,8/24/99 4:26:27 PM,246,0.0.0.0
File48=@COPY.BMP,$(AppPath)pics,,,8/24/99 4:26:27 PM,246,0.0.0.0
File49=@CLOCK02.ICO,$(AppPath)pics,,,8/24/99 4:26:26 PM,1078,0.0.0.0
File50=@SAVE.BMP,$(AppPath)pics,,,8/24/99 4:26:27 PM,246,0.0.0.0
File51=@MDAC_TYP.EXE,$(AppPath),,,3/18/99 1:00:00 AM,6492488,21.1.3711.11
File52=@RDOCURS.DLL,$(WinSysPath),,$(Shared),3/26/99 1:00:00 AM,151552,6.0.84.50
File53=@MSRDO20.DLL,$(WinSysPath),$(DLLSelfRegister),$(Shared),3/26/99 1:00:00 AM,397312,6.0.84.50
File54=@MSPDOX35.DLL,$(WinSysPathSysFile),$(DLLSelfRegister),,4/24/98 1:00:00 AM,250128,3.51.623.0
File55=@MSLTUS35.DLL,$(WinSysPathSysFile),$(DLLSelfRegister),,4/24/98 1:00:00 AM,166160,3.51.623.0
File56=@MSTEXT35.DLL,$(WinSysPathSysFile),$(DLLSelfRegister),,4/24/98 1:00:00 AM,165648,3.51.623.0
File57=@MSEXCH35.DLL,$(WinSysPath),$(DLLSelfRegister),$(Shared),4/24/98 1:00:00 AM,330000,3.51.623.0
File58=@MSEXCL35.DLL,$(WinSysPathSysFile),$(DLLSelfRegister),,4/24/98 1:00:00 AM,250128,3.51.623.2
File59=@MSXBSE35.DLL,$(WinSysPathSysFile),$(DLLSelfRegister),,4/24/98 1:00:00 AM,287504,3.51.623.0
File60=@MFC40.DLL,$(WinSysPathSysFile),$(DLLSelfRegister),,2/7/99 1:00:00 AM,924432,4.1.0.6140
File61=@THREED32.OCX,$(WinSysPath),$(DLLSelfRegister),$(Shared),1/12/96 12:00:00 AM,200704,1.0.41.0
File62=@MSOUTL32.OCX,$(WinSysPath),$(DLLSelfRegister),$(Shared),1/12/96 12:00:00 AM,78848,4.0.29.22
File63=@GAUGE32.OCX,$(WinSysPath),$(DLLSelfRegister),$(Shared),1/12/96 12:00:00 AM,63488,1.0.24.0
File64=@SSCSDK32.DLL,$(WinSysPath),,$(Shared),10/29/98 4:02:34 PM,901120,1.0.3.7
File65=@u252000.dll,$(WinSysPath),,$(Shared),11/8/98 4:00:00 PM,55808,7.0.0.5
File66=@u2lsamp1.dll,$(AppPath),,,6/3/99 5:00:00 PM,27136,0.0.0.0
File67=@u2ldts.dll,$(AppPath),,,6/3/99 5:00:00 PM,38400,0.0.0.0
File68=@u2lcom.dll,$(WinSysPath),,$(Shared),11/8/98 4:00:00 PM,24576,1.0.0.14
File69=@u2lbar.dll,$(AppPath),,,6/3/99 5:00:00 PM,40960,0.0.0.0
File70=@u2l2000.dll,$(WinSysPath),,$(Shared),11/8/98 4:00:00 PM,56320,7.0.0.5
File71=@u25total.dll,$(AppPath),,,3/9/97 5:00:00 PM,59904,0.0.0.0
File72=@u25store.dll,$(AppPath),,,3/9/97 5:00:00 PM,61440,0.0.0.0
File73=@u25dts.dll,$(AppPath),,,6/3/99 5:00:00 PM,44544,0.0.0.0
File74=@u2fxls.dll,$(WinSysPath),,$(Shared),6/3/99 5:00:00 PM,126976,7.0.100.2
File75=@u2fwordw.dll,$(WinSysPath),,$(Shared),6/3/99 5:00:00 PM,59392,7.0.100.0
File76=@u2fwks.dll,$(WinSysPath),,$(Shared),6/3/99 5:00:00 PM,19968,7.0.100.0
File77=@u2ftext.dll,$(WinSysPath),,$(Shared),6/3/99 5:00:00 PM,50688,7.0.100.0
File78=@u2fsepv.dll,$(WinSysPath),,$(Shared),6/3/99 5:00:00 PM,17920,7.0.100.0
File79=@u2frtf.dll,$(WinSysPath),,$(Shared),6/3/99 5:00:00 PM,61952,7.0.100.0
File80=@u2frec.dll,$(WinSysPath),,$(Shared),6/3/99 5:00:00 PM,14336,7.0.100.0
File81=@u2fodbc.dll,$(WinSysPath),,$(Shared),11/8/98 4:00:00 PM,93184,7.0.0.16
File82=@u2fhtml.dll,$(WinSysPath),,$(Shared),6/3/99 5:00:00 PM,143872,7.0.100.0
File83=@u2fcr.dll,$(WinSysPath),,$(Shared),6/3/99 5:00:00 PM,8192,7.0.100.0
File84=@u2dapp.dll,$(WinSysPath),,$(Shared),6/3/99 5:00:00 PM,10240,7.0.100.0
File85=@u2dvim.dll,$(WinSysPath),,$(Shared),6/3/99 5:00:00 PM,32256,7.0.100.0
File86=@u2dpost.dll,$(WinSysPath),,$(Shared),6/3/99 5:00:00 PM,37888,7.0.100.0
File87=@u2dnotes.dll,$(WinSysPath),,$(Shared),6/3/99 5:00:00 PM,38400,7.0.100.0
File88=@u2dmapi.dll,$(WinSysPath),,$(Shared),6/3/99 5:00:00 PM,18432,7.0.100.0
File89=@u2ddisk.dll,$(WinSysPath),,$(Shared),6/3/99 5:00:00 PM,8704,7.0.100.0
File90=@p2soledb.dll,$(WinSysPath),,$(Shared),6/3/99 5:00:00 PM,171008,7.0.100.16
File91=@p2ssyb10.dll,$(WinSysPath),,$(Shared),6/3/99 5:00:00 PM,138240,7.0.100.2
File92=@p2ssql.dll,$(WinSysPath),,$(Shared),6/3/99 5:00:00 PM,140288,7.0.100.7
File93=@p2sora7.dll,$(WinSysPath),,$(Shared),6/3/99 5:00:00 PM,142848,7.0.100.3
File94=@P2SODBC.DLL,$(WinSysPath),,$(Shared),6/3/99 5:00:00 PM,222208,7.0.100.26
File95=@p2smon.dll,$(WinSysPath),,$(Shared),6/3/99 5:00:00 PM,193024,7.0.0.65
File96=@p2sifmx.dll,$(WinSysPath),,$(Shared),6/3/99 5:00:00 PM,145408,7.0.100.2
File97=@p2irdao.dll,$(WinSysPath),,$(Shared),6/3/99 5:00:00 PM,50688,7.0.100.2
File98=@p2ctdao.dll,$(WinSysPath),,$(Shared),6/3/99 5:00:00 PM,36352,7.0.100.2
File99=@p2bxbse.dll,$(WinSysPath),,$(Shared),6/3/99 5:00:00 PM,199680,7.0.100.0
File100=@p2bdao.dll,$(WinSysPath),,$(Shared),6/3/99 5:00:00 PM,79872,7.0.100.2
File101=@p2bbnd.dll,$(WinSysPath),,$(Shared),11/8/98 3:00:00 PM,59392,7.0.0.3
File102=@p2bbde.dll,$(WinSysPath),,$(Shared),6/3/99 5:00:00 PM,143360,7.0.100.0
File103=@crxlat32.dll,$(WinSysPath),,$(Shared),11/8/98 4:00:00 PM,60416,7.0.0.0
File104=@mfc42.dll,$(WinSysPath),$(DLLSelfRegister),$(Shared),4/27/99 1:00:00 AM,995383,6.0.8447.0
File105=@MSVCRT.DLL,$(WinSysPath),,$(Shared),2/2/99 1:00:00 AM,266293,6.0.8397.0
File106=@crpaig32.dll,$(WinSysPath),,$(Shared),11/8/98 3:00:00 PM,229888,5.0.0.2
File107=@IMPLODE.DLL,$(WinSysPath),,$(Shared),11/17/96 11:00:00 PM,18944,1.0.0.1
File108=@crpe32.dll,$(WinSysPath),,$(Shared),6/1/99 7:01:56 AM,5796864,7.0.100.3
File109=@crystl32.ocx,$(WinSysPath),$(DLLSelfRegister),$(Shared),11/8/98 3:00:00 PM,993996,6.1.0.609
File110=@MSWORD8.OLB,$(WinSysPath),,$(Shared),11/21/96 1:00:00 AM,459776,8.0.0.3514
File111=@MSINET.OCX,$(WinSysPath),$(DLLSelfRegister),$(Shared),6/24/98 1:00:00 AM,115016,6.0.81.69
File112=@DBGRID32.OCX,$(WinSysPath),$(DLLSelfRegister),$(Shared),6/24/98 1:00:00 AM,525352,5.1.81.4
File113=@RICHED32.DLL,$(WinSysPathSysFile),,,5/7/98 1:00:00 AM,174352,4.0.993.4
File114=@RICHTX32.OCX,$(WinSysPath),$(DLLSelfRegister),$(Shared),5/7/99 1:00:00 AM,204296,6.0.84.18
File115=@COMCTL32.OCX,$(WinSysPath),$(DLLSelfRegister),$(Shared),6/24/98 1:00:00 AM,609584,6.0.80.22
File116=@TABCTL32.OCX,$(WinSysPath),$(DLLSelfRegister),$(Shared),5/7/99 1:00:00 AM,209408,6.0.84.18
File117=@MSMASK32.OCX,$(WinSysPath),$(DLLSelfRegister),$(Shared),5/7/99 1:00:00 AM,166408,6.0.84.18
File118=@COMDLG32.OCX,$(WinSysPath),$(DLLSelfRegister),$(Shared),5/7/99 1:00:00 AM,140288,6.0.84.18
File119=@VB5DB.DLL,$(WinSysPath),,$(Shared),6/18/98 1:00:00 AM,89360,6.0.81.69
File120=@MSREPL35.DLL,$(WinSysPathSysFile),,,4/13/99 1:00:00 AM,415504,3.51.2404.0
File121=@MSRD2X35.DLL,$(WinSysPathSysFile),$(DLLSelfRegister),,4/24/98 1:00:00 AM,252176,3.51.623.0
File122=@EXPSRV.DLL,$(WinSysPathSysFile),,,4/14/99 1:00:00 AM,379152,6.0.0.8269
File123=@VBAJET32.DLL,$(WinSysPathSysFile),,,1/22/99 1:00:00 AM,30992,6.0.1.8268
File124=@MSJINT35.DLL,$(WinSysPathSysFile),,,4/24/98 1:00:00 AM,123664,3.51.623.0
File125=@MSJTER35.DLL,$(WinSysPathSysFile),,,4/24/98 1:00:00 AM,24848,3.51.623.0
File126=@MSJET35.DLL,$(WinSysPathSysFile),$(DLLSelfRegister),,4/13/99 1:00:00 AM,1046288,3.51.2723.0
File127=@DAO350.DLL,$(MSDAOPath),$(DLLSelfRegister),$(Shared),4/27/98 1:00:00 AM,570128,3.51.1608.0
File128=@Calvin.exe,$(AppPath),,,11/2/99 2:47:17 PM,1343488,4.5.0.0



thats it all from the setup file!!!

Controls Not Looks Like WinXP Controls
why my Application's Controls not looks like WinXP Controls?

Sheridan ActiveX Controls And FarPoint ActiveX Controls
Hi there,

I'm trying to compile an "old" VB application in VB6 and it requires license for Sheridan ActiveX controls and FarPoint ActiveX control. Does anyone know if there is a free (or trial ) version of those controls? If not, where are the best places to purchase the license for those controls?

Thanks a lot.

Dynamically Adding User-created Controls To User-created Controls -- For Gurus
dear all,

i have created two UserControls, control1 and control2.

i need to have multiple instances of control2 running into control1, and i need to catch the events of these instances.

i would have, in control1, declared this:

VB Code:
Private WithEvents ctl2() As control2

unfortunately you can't declare an array with WithEvents.

I've seen a method that works by encapsulating control2 into a class, and then adding this class to a collection.

my questions are:

1. is there another / easier way to do this?...

2. how do i dynamically add control2 to control1?

VB Code:
Dim mCtl2 As control2Set mCtl2 = New control2Set mCtl2 = control1.Controls.Add("Project1.control2", "CTL_" & index)

doesn't work since .Controls is not a method of the object...

any suggestions?...

Which Controls To Use?
Hello,

I'm designing a GUI in vb.net.
I'm not asking for help with syntax. I can look that stuff up and try on my own. The problem I'm having is designing the interface.

Since a picture is worth a thousand words.


Code:
A B
-----------------
| MIKE | X |
| JEN | |
| Dan | X |
-----------------
A is a list that I pull from the DB. B is a just a cell with an X through it if a certain procedure was run during the time the app was open. It doesn't have to remember state. I was going to use a gatagrid but since only one column is actuall data from a DB is this the right control to use?

What controls should I use?

Controls Associated By Tab?
My original design had a form with 8 text boxes (control array). Now I learn that I need to add a tabstrip (using SSTab), each tab will have the same 8 text boxes. The boxes on each tab comprise a set, and each set will be different.

Now, I think I have learned that the controls on a tab are not associated with the tab like a control is associated to the form (txtMyTextBox versus frmMain.txtMyTextBox).

So.... Should I just expand the control array to a maximum of 48 (6x8) or create 6 control arrays?

I should mention that only the first tab is guaranteed to show. The other 5 tabs only show based on special characters found in one of the text boxes. Tab 1 (0 index) only shows if characters are in the last text box on Tab 0... Tab 2 only shows if characters are in the last text box on Tab 1..... You get the idea.

edit for spelling.

3D Controls..
I want to know if there is a way to display controls like combobox,Date picker bove DBGrid columns.

The catch is : These controls only seem to have 3d appearances..It does not look good over a Grid. Setting their properties to 2d or Flat (if available ) does not seem to work! also they only Have fixed heights. I want their heights to be decided by the size of the grid's rows.

Help me out!

Pls Also check out a related issue :

http://www.xtremevbtalk.com/show...491#post380491

OCR Controls
Does anyone know where I can download an OCR (Optical Charactar Recognition) control from, hopefully for free? I want to use it as a component in an application I am designing.

Look Up Controls
anyone, are there a function equal to the (all forms) below

dim frm as form
for each frm in forms
debug.print frm.name
next

Just for control objects, Commandbuttons, Labels, ect..

Want to list every thing i have used on the form!

With best regards and happy easter.
Kim Holzmann

Help With Sum In Controls
In Access 2000, I need to show the total of a field, Receipt Amount in a table called Receipts in the form of the Items table. There is a one-to-many relationship between the two tables where one Item can have many Receipts.

I've tried the following formula in a control box in the Item forum, but I keep getting ?NAME# in the control box.

=Sum([frmReceipt].Form!txtTotInv0001)

Any suggestion would be great.

Thanks

Controls
Hi,

I have a form in wich you enter a first and a last name. Now if the 2 are not isNull(), there should be only one entry so I search for it and bingo.

Now, if one of them isNull() then there could be more then one entry so I wanna open another form with a scrollingdown list box()(sorry but... dunno how to call those in english) in wich the user will find all the choices associated with the first or last name he entered.

As an example:let's say you're searching for Bob Dylan. You enter Bob in the "firstName" box and click the GO button... then the other form pop's up and ask you to choose from the list:

Bob Clark
Bob Dylan
Bob Binette...

How to do that???
I've read the "AddItem(Text, Index)" method but I don't quite understand.
!!!Any help would be appreciated!!!

For Each / Controls
I don't know why I can never make these work. I have a frame called "Choose_DT" in a userform called "Criteria". I have several check boxes in this frame and one is called chDTAll. If this is selected, I want to automatically deselect any other check box in the frame. Here is my code:


Code:
Private Sub chDTAll_Click()

Dim ctlDT As Control

If chDTAll.Value = True Then
For Each ctlDT In Criteria.Choose_DT.Controls
If TypeOf ctlDT Is CheckBox Then
If ctlDT.Name <> "chQALL" Then
ctlDT.Value = Not chDTAll.Value
End If
End If
Next ctlDT
End If

End Sub

It seems to do nothing. I tried a lot of variations of the for each line but got none to work. Thanks.

Controls
Hi,

I have an application I have added a form to an activeX control , and I can open it up from the control fine but when I close it I want to call a public sub from in the control to refresh the control how can I do this?

Thanks

Controls..
On my form1, I reached the control limit.

Is there a way to get around this with out removing the controls I already have?

Controls
Hi there is there a control which I can use which has all the letters in the alphebet. kind of like a calculator but with letters instead of nembers?

Controls.ADD
I have a problem with this function:

Code:
Form1.Controls.Add("Vb.Textbox", "txtTest", Form1)

This function works great but now i want to add a control i made. What do i have to write instead of "Vb.Textbox"?
Any help?
Thanks in advance.

How Do I Use For Each For Controls?
Hi,

I want to use a For Each statement to cycle thru the controls of a form, and then set their locked properties to true if they are textbox controls.

How do I do this?

Thanks,
Wild Thing

Me.controls
I would like to be able to click on a form to unload it, my problem is that the form is covered with labels. Is there a way to cycle through the labels with a couple lines of code to make this happen instead of having to code "unload me" on each label separately with the "lbl_Click()" event?

Controls
hi,
I'm looking for some new controls in vb.
where could I get ?
thanks anyway.

Controls
does any one know where to get a copy of some of the controls microsoft uses in thier programs. like thier picture folder list combo box. i have looked through the controls in my vb but cant find any of them.

Controls
I need a control that lists the folders and files in one control. The ones that come with VB do them all seperately, but I want them together. If it can, I'd like it to do the drives in the same one too, but that isn't as important. Do you know of anywhere that I can get that? and maybe just a good place to get controls in general? thx

ADO Controls
I would like to be able to change the contents of a Datagrid at run time using ADO controls. I have tried the following simple code, which only works on occasion.

Private Sub Command1_Click()
Set Datagrid1.DataSource = Adodc1.Recordset
End Sub

Private Sub Command2_Click()
Set Datagrid1.DataSource = Adodc2.Recordset
End Sub

Any suggestions how to do this better is much appreciated?

Controls
Could somebody tell me why a combo box becomes invisible when another form overlaps the form where the combo box is located. After closing the second form you notice that the combo box became invisible. If you open the combo box list and select an item it'll become visible again.
Thanks for helping me solving this mystery.

Using C++ / .NET Controls In VB
Is it possible to use C++ or .NET controls with Visual Basic? It seems that most of the controls (buttons, text boxes...) support unicode unlike VB. I know I can use Forms 2.0, but they cannot be redistributed and I heard they aren't very stable in VB (memory leaks / out of memory errors).
I really need to perform unicode queries to Amazon Web Services.

Mis Placed Controls.
Okay, stupid question probably, but I am workin on an EVB project (should be similar enough to regular VB), and I can't find 2 timer controls that I created. I want to change the interval on them, and would rather just change it on the control rather than programatically. Is there any way to "find" a control in the design layout?

Controls
ok so i want to create some cool controls by my self.
like progressbars, sliders, commandbuttons. can someone tell me a good website where i can find information on how to create my own control and does anyone have any ideas about where i should start in my projects????

thanks in advance

stead

Key Controls
Can somebody sample some code for using a keyboard key to activate a command button.

I know that puttin command1.value = true will activate its content,

but if i want the push "q" and activate it how do i do that??

Doing To All Controls.
If I have a bunch of forms and I want to unload them all I could do this

dim F as form

for each F in forms
unload f
next f

But what about other controls. How can I do the same thing that but to frames?

Thanx in advance!

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