Years ago when I first installed Access97 I managed to turn off the transitions-animation-trailMaking effect when scrolling through the lists of Tables/Queries/Forms/Reports. I recently did a new install and I can not figure out how to disable that feature and I don't know what it is called...
Thanks again Andy. Setting the position in code is what triggered the multi-tab "feature". The Frame in question was the only one with Visible set True. I had 3 other ones whose positions were set in Form Load but their Visible was set False. I use them as pop-ups in their own tab so I didn't...
Thanks Andy. I am setting the position of the frame in the Form Load. I'll experiment at home tonight to see if that is the cause. I haven't worked with TabStrips before so I'll research them as well.
In 2 different projects I have experienced the following: a form with an SSTab control with multiple tabs and a Frame placed in one of the tabs has the frame showing in 2 of the tabs. I discovered this morning in one of them that if I set the focus to the tab with the frame in design mode then...
I am trying to get GWBasic to run on a new Dell Dimension C521 (AMD processor) desktop with XP Home Edition. It generates "You can not SHELL to BASIC" when at the DOS prompt. A shortcut to it flashes a window up then closes it. It works all right on my new Dell notebook computer (I forget if it...
That was one of the things I discovered in my research and why it had me scratching my head: I couldn't figure out (and still don't know) what was different between my 2 machines causing the different results after they got the Global time from the server. Well, now they are both working (or...
Not on purpose; neither one of my machines has Automatic Windows updates if it is a MicroSoft patch. I compared the registry TZI key referenced in some search results on the Novell site and they were the same on both machines. I searched the MS site and found KB931836, installed that on the 1...
I think I have the server configured correctly. I used the Novell dstshift.nlm to set the DST parameters in AUTOEXEC.NCF and they appear to be correct now. We had problems with the server time-synching to an external source (about 4 years ago; I don't remember any of the symptoms, just that it...
We have 2 Netware 5.1 servers. I thought I had remarked out the DST setup lines in AUTOEXEC.NCF months ago and had relatively few problems 3 weeks ago at the new start of DST. Monday (4/2/07; the day after the "old" Dailight Savings Time start) some of our clients were an hour fast, others had...
Our mail server is through a company called Jumpline. I put the SSC app on another workstation and it shows up in the ACTION COMPUTER list and I can configure it to send using the IP address of our mail server and the test went through. I thought at one time we had our file server (with AMS...
Thanks Lawnboy. The problem is that our server is the only computer in our network that is on ALL of the time and it does not show up in the ACTION COMPUTER list for Email notification. Is there a way to make that happen?
We have SAV Enterprise edition on our Netware 5.1 server, with AMS checked before the installation. When trying to configure the AMS at a workstation where SSC is installed, the Netware server appears in the Action Computer list if setting up Broadcast but it does not show up in the Action...
That process is how I have been doing it. When I use the configuration utility in the NDPS manager at the server console, it doesn't show the current settings, it displays the defaults, just like when adding a new printer agent, and all of the info has to be re-entered. It doesn't happen very...
I just came from the Microsoft site. I found a page with VB6 Bugs (this one not listed),2 dead links to how to report bugs in VB6, and a bug report system that does not include VB6, just VB .Net...
Thanks, jebenson, that was way in the back of my mind as I spent hours figuring out exactly where the problem occurred. So, I tried UNLOADing the controls in the Form_Unload event and it works. Sort of. The form HAS to be unloaded or VB crashes. As long as I 1.Save before RUNning and 2.DON'T hit...
An example of this, start a new project using a Standard form and place
a Frame called Frame1 on the form, with Index=0
a TextBox in Frame1 called Textbox1 with Index=0, Multiline=True
2 command buttons called Command1 and Command2
then use the following code (if Command1 is clicked, a...
At runtime I am trying to copy a frame with its arrayed controls to a new frame. I got it working, but if one of the TextBoxes has its Multiline property set to True, VB crashes when I unload the form. If I don't use the
SET txtBox.Container = fraP(1)
line (to place the newly LOADed control in...
I think I found an answer to my 2nd question:
me.Controls(ctl.Name)
refers to the array so I tried something like this:
Dim ctl, ctl2, vC as Integer
vC=UBound(fraP)
Load frap(vC)
For Each ctl in Controls
if ctl.Container Is fraP(0) then
set ctl2=me.Controls(ctl.Name)
load ctl2(vC)
set...
Thanks for the reply John (and your previous posts where I found out about the UBound function). That generates a Type Mismatch in the UBound function because the ctl variable is referring to control(0) rather than the array control. That's the problem I have not been able to find a solution...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.