Search results for query: *

  1. J

    Get Active Workbook

    Thank you for your input. I've been on another project for a bit and am now back to this issue. I will try to implement what you have said. I realize my wording must have been misleading, but yes, I realize that I'm trying to add a string expression of the object.
  2. J

    Get Active Workbook

    Both actually, I'd like to understand how to use the object browser to find the objects that I need. I would also like some form of documentation (Ideally with examples) or using the excel interop. I understand the basics of c#. I need to get whatever workbooks happen to be open into a combobox...
  3. J

    Get Active Workbook

    I can't seem to get the activeworkbook or the sheet or much of anything else. Can someone please point me to some books or tutorials that will help me understand this better?
  4. J

    Get Active Workbook

    I'm looking for the easiest way to get the active workbook of Excel with c#. I have a small c# app that needs to write data to an already open excel workbook. The program will then copy data from c# Comboxes into certain rows in a certain column of the active sheet of the active workbook. Most...
  5. J

    dll that grabs a window handle and then stops the window from redrawing?

    I have a remote desktop application in which I want to make one of the windows to stop redrawing while it's loading and then to restart the drawing. I was thinking a C# dll project would work but I'm having trouble finding a C# example of this API call. class DrawingControl {...
  6. J

    How to multithread to start a method

    I didn't realize that, I will try to run the search in another thread. Thanks for the information!
  7. J

    How to multithread to start a method

    How do I make it so that the led thread will finish separately from the UI thread. I thought that was the point of threading?
  8. J

    How to multithread to start a method

    I'm not sure if that would make a difference. Isn't starting the led based on a timer the same sort of concept? Is my code correct, in starting the threads?
  9. J

    How to multithread to start a method

    I'm working on a search program and would like to have a national instruments led control blinking during the search. The led needs to be started on its own thread while the search runs on a separate thread. This is my first attempt at multi-threading in c# and I'm not sure what to try. Here is...
Back
Top Bottom