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 bkrike 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: *

  • Users: KLK000
  • Content: Threads
  • Order by date
  1. KLK000

    MenuStrip background color

    I have two Visual Studio 2005 apps and for some reason, when the apps are run, the menustrip background color appears different. One is a light blue (same color that appears in the design window) and the other is a light tan (matches the form color). I've compared the properties for both...
  2. KLK000

    How to create a 'sub' Method

    I'm creating a Class that performs low level manipulation of an archaic indexed sequential database. The Class is to make it easier for other developers who have to manipulate this database. I have a Class with Properties and Methods (subs and functions). However, how do I create a sub-method...
  3. KLK000

    How to set up File Association and determine the file

    I have a program that reads files with a .tsp extension. When a user double-clicks on a .tsp file, I'd like my program to run and open the .tsp file. I've setup a File Association for .tsp files to run my program - this works. However, what code do I need to pick up the file that was clicked...
  4. KLK000

    Unable to open http://

    Every time I open myFile.xls, I get the following message: "Unable to open http://www.gov.sg/windows\TEMP\SAS Program\2001\2001 new format.xls. The Internet site reports that the item you requested could not be found. (HTTP/1.0 404)" I've searched all the sheets but can't find anything that...
  5. KLK000

    The subject is not trusted for the specified action

    I've been using a RichTextbox (RichTX32.ocx) in a VBA Form for the past serveral months. All of a sudden, I started receiving error messages. I checked the form and noticed that the RichTextbox somehow got deleted. When I try to put it back on the form, I receive a message that says "The...
  6. KLK000

    PDF displays blank page in browser

    Problem: User clicks on a PDF link in a web page and a blank page is displayed within the browser. Solution: There are several solutions out there for this problem but, in my case, none of them worked. It finally turned out to be caused by an apostrophe in the PDF file name. Once I removed...
  7. KLK000

    Arguments to use when calling an Event

    If I need to call an event from code, say a button click event, what arguments do I use for the sender and e arguments? Private Sub btnDoSomething_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnDoSometing.Click do something code here End sub Private sub MySub()...
  8. KLK000

    Determine current Excel cursor position using VB .NET

    Using VB .NET, I need to determine which cell the user is currently positioned on in a spreadsheet the user has opened in Excel and then I need to retrieve the cell formula. I've tried using: Public oExcel As Excel.Application Public oBook As Excel.Workbook oExcel = New...
  9. KLK000

    Could not use '~'; file already in use

    I've read the threads about the permissions needed to address the .ldb file and I've set the permissions accordingly. However, my situation is a little different (I think). I've got an MS Access front end that uses linked tables to another MS Access DB. Whenever a second user tries to open...
  10. KLK000

    How to set a tabcontrol so no tab is selected

    How can you set a tabcontrol so no tab is selected? I tried tabcontrol.selectedindex = -1 but that causes an error.
  11. KLK000

    How to change a property value on one form from another form.

    I need to update the label.text property on Form1 from Form2. From1 opens Form2 as follows: Dim form2 As New Form2 form2.Show() In form2, I try to change the label property in Form1 as follows: form1.label.text = "test" What exactly...
  12. KLK000

    Word XP Reviewing Toolbar

    Is there a way to prevent the Reviewing toolbar from automatically displaying when opening a document? We turn it off but when we open certain documents, it automatically displays again.
  13. KLK000

    Opening documents in Word XP

    Whenever users open a second (or third, etc) word document using Word XP, it opens a completely separate instance of Word. Can this be changed to open the documents in the same instance of Word as in previous versions?
  14. KLK000

    IS_Member Function from Visual Basic

    How do I use the Is_member function from Visual Basic? I want to enable/disable form objects based on a user's permissions. The Is_member function appears to be what I want to use but I don't know how to include it in my VB code.
  15. KLK000

    MS Word XP Reviewing Toolbar

    We've just upgraded to Office XP. Now, whenever a user opens a Word attachment in email, the Reviewing Tool bar is automatically displayed. How can we prevent this from happening?
  16. KLK000

    Missing Strikethrough in Deleted text in Word XP (Track Changes)

    Using MS Word XP and the Track Changes feature, Deleted text shows up in a different color without the strikethrough. This is ok if viewing on the screen, but when printed on a black and white printer you can't tell which text was deleted. Note: Using Tools, Options, Track Changes tab...
  17. KLK000

    Upside Down Text Box in Reports

    Is there a way to turn a bound text box upside down in an Access Report? We want to print "Tent" cards for Students in a class (You know, those silly Name cards that sit in front of each Student) and we want the name to appear on both sides of a folded 8.5x11 card.

Part and Inventory Search

Back
Top