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

    Change RecordSelectionFormula and Refresh

    Hello, I am using CR 9 and VB6. In my VB6 code I have CR viewer. I set RecordSelectionFormula when the forms come up for the first time and show the report to the user. There is a drop-down in this form that user can select form, so whenever user change the drop-down, I change the...
  2. Bitaoo

    Do let user move the toolbar

    Hello, I make a toolbar in Excel, but I don't want the user to be able to move this toolbar. How can I do that? Thanks a lot for your help, --Bita
  3. Bitaoo

    Disable Minimize/Maximize button in Worksheet Menu

    Thanks a lot, it solved my problem. --Bita
  4. Bitaoo

    Disable double-click event in toolbar

    Yes, I mean DOUBLE-CLICK. I could cover menu command too. --Bita
  5. Bitaoo

    Disable double-click event in toolbar

    Hello, I got a problem. :) I tried to disable "Customize..." item from toobar list by the following code: Application.CommandBars("Toolbar List").Enabled = False But now I can easily open the "Customize" window by double-click on toolbar. How can I disable this feature? Thanks for any...
  6. Bitaoo

    Disable Minimize/Maximize button in Worksheet Menu

    Hi, I found out that if I run the following code: Application.Commandbars("Worksheet Menu Bar").Enabled = False All the menu bar will diapears and also Minimize/Maximize buttons at the right top of winodw goes away. But I need to have the menu bar, I just need to disable Minimize/Maximize...
  7. Bitaoo

    Show Report before it finishes

    Hello, I have a problem and hope you can help. I am using VB6 and CR 9.0. I have a report in my program that has about 70 pages and it takes 75 seconds to be shown in Crystal Viewer (I connect to a remote server over the net) I tested this report in Crystal Reports 9 (outside of VB6), the time...
  8. Bitaoo

    Delete a column that its name is First

    Thanks a lot Roy. That was great. :-) --Bita
  9. Bitaoo

    Delete a column that its name is First

    I need to do it through a VB6 program. Thanks
  10. Bitaoo

    Delete a column that its name is First

    Hello, I have a problem, I defined a column named First in my table by mistake and now I cannot delete this column, I think First is a reserved word in MSAccess DB, would you please help me to drop this column from Table, Here the statement that I am using: Alter Table ChartChoices Drop Column...
  11. Bitaoo

    How return a code from an exe file?

    Hello, I don't know how can I set a code to be returned by my exe program. I have a VB program that runs another VB program in this way: Set oShell = CreateObject("WSCript.shell") nRet = oShell.Run("Test1.exe", , True) Set oShell = Nothing I want to check nRet but I don't know how...
  12. Bitaoo

    Problem in locking rows in database

    Thanks, but it doesn't work. :( --Bita
  13. Bitaoo

    Problem in locking rows in database

    Hello, I have a locking problem that I cannot underestand it. Would you please help me to find the problem? I appreciate your help in advance. I ahev a table named T1 with the following columns: Id --> Int primary key Name --> Char(10) R_Id --> Int ValCol --> Int Choice --> Int and here...
  14. Bitaoo

    Getting BIOS Info

    Thanks a lot.
  15. Bitaoo

    Getting BIOS Info

    Thanks for all of your responses, but how can I write a better code to get BIOS Serial Number in Win 98 without any problem. I appreciate your help in advance, --Bita
  16. Bitaoo

    Getting BIOS Info

    Hello, I have a problem, I wrote this code for getting BIOS information but it is not working on Win 98, Do you have any idea why it doesn't work? Function Get_BIOSSerialNum() As String Dim strComputer As String, S As String Dim objWMIService As Object, colItems As Object, objItem As...
  17. Bitaoo

    Getting Low Level Hard Drive Information

    Thanks Ronald for your response, but it doesn't get the MASTER hard drive serial number. --Bita
  18. Bitaoo

    Getting Low Level Hard Drive Information

    Hello, I have a question and hope you can help me. I want know how I can get the Low Level Hard Drive Information? Low Level Hard Drive Information: This refers to the master hard drive serial number in hardware. Note that this is not the drive serial number which can be set from software...
  19. Bitaoo

    Suppress a Section when a subreport is blank or null

    Thanks for all your response but I got the answer from the following Crystal document: http://support.crystaldecisions.com/library/kbase/articles/c2005853.asp I hope it helps the other guys too. :) Cheers, --Bita

Part and Inventory Search

Back
Top