Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. rjmccorkle

    Access97 hot to turn off Tables/Queries/Forms/Reports scrolling transition animation effects

    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...
  2. rjmccorkle

    SSTab with a frame showing in more than 1 tab

    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...
  3. rjmccorkle

    SSTab with a frame showing in more than 1 tab

    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.
  4. rjmccorkle

    SSTab with a frame showing in more than 1 tab

    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...
  5. rjmccorkle

    "You can not SHELL to BASIC" in new XP computer

    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...
  6. rjmccorkle

    Netware 5.1 Some clients 1 hour slow after old DST

    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...
  7. rjmccorkle

    Netware 5.1 Some clients 1 hour slow after old DST

    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...
  8. rjmccorkle

    Netware 5.1 Some clients 1 hour slow after old DST

    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...
  9. rjmccorkle

    Netware 5.1 Some clients 1 hour slow after old DST

    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...
  10. rjmccorkle

    SAV 8.1 AMS email using Netware 5.1 Server

    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...
  11. rjmccorkle

    SAV 8.1 AMS email using Netware 5.1 Server

    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?
  12. rjmccorkle

    SAV 8.1 AMS email using Netware 5.1 Server

    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...
  13. rjmccorkle

    Edit NDPS printer IP address

    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...
  14. rjmccorkle

    Edit NDPS printer IP address

    Is it possible to view and/or edit the IP address assigned to a controlled access NDPS printer in NWADMN in Netware 5.1? Thanks, Bob
  15. rjmccorkle

    Copy Multiline TextBox Array to a Container

    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...
  16. rjmccorkle

    Copy Multiline TextBox Array to a Container

    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...
  17. rjmccorkle

    Copy Multiline TextBox Array to a Container

    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...
  18. rjmccorkle

    Copy Multiline TextBox Array to a Container

    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...
  19. rjmccorkle

    Dynamically adding indexed controls in a frame

    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...
  20. rjmccorkle

    Dynamically adding indexed controls in a frame

    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...

Part and Inventory Search

Back
Top