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

    Webbrowser control

    Hi I have a problem with a combobox on a page. I use Webbrowser control to navigate to a page and there I have to fill some fields. I use: Dim doc As HTMLDocument Dim elem As HTMLInputElement Dim frm As HTMLFormElement Set doc = wbIE.Document Set frm = doc.Forms(0) 'set username Set elem =...
  2. WebStar

    Excel: Conditional Formating question

    my mistake then, sorry :)
  3. WebStar

    Excel: Conditional Formating question

    All answers were good for global problems but I guess xlbo was perfect for my case. Anyway the formula should be: =OR(A1="Finished";A1="Green") (it was a semicolon instead of a comma) Thank you all!
  4. WebStar

    Excel: Conditional Formating question

    Hi, I am having a problem with conditional formating in Excel. I need to make 6 conditions. If cell value is "finished" or "green" the cell should be green, if the value is "working" ot "yellow" should be yelow, and if it is "wrong finished" or...
  5. WebStar

    how to complete a form automatically?

    Have u heard of Utopia? :)
  6. WebStar

    how to complete a form automatically?

    philote the second guess is exactly what I want. I want my cgi to go to a web site and make an acount automatically and is simpler than you said because I know the site and I know the fields. So I don't even have to open IE for that. The method on the site is POST. The thing I don't know is how...
  7. WebStar

    how to complete a form automatically?

    There are some sites where you have to register for something, anything, so the site asks you for: name, e-mail, pass, address... What I need to know is how can I fill this form automatically? I mean it doesn't have to open IE or anything. I think that this is done by listening the string that...
  8. WebStar

    excel link problems

    I have an excel file on a shared computer and I have some links in it's cells. If I enter the links like: \\tmav352x\did94053\G_IO\Hitachi_Renault\a.doc the link it works. But if I save and close the file when I reopen it the link is not working anymore and even if the text in cells is right...
  9. WebStar

    bandwidth restrictions

    HI, I have an internet caffe and I have a restriced line of 3GB/month. I would like to know how to configure the server so the users to be unnable to download files bigger than 2-3 MB. If it is possible it is based on IP addresses? Can I drop the restriction for the administrator's comp. but...
  10. WebStar

    event for start a system process?

    Hi, I am making a process monitor and I need to know if there is an event raised when a process is started? I mean if I start a game than an event is raised that an application was started and I should refresh the list. Of corse that I could put this in a timer but it would be waste of time and...
  11. WebStar

    scroll multiline textbox programatically

    Hi, I have a multiline textbox in wich I enter lines programatically. What I want is that the user allways see the last line, so everytime I enter a line I should scroll the control down. How can I do that? Thank you!
  12. WebStar

    Common Exit Button Code

    private void btnExit_Click(object sender, System.EventArgs e) { Form1.Dispose(true); }
  13. WebStar

    how to find out parrent?

    Hi, I have 3 forms calling the 4th one. How can I tell from that 4th form wich one of the first 3 called it. I mean something like me.parent.name (wich doesn't exists ofcourse). Thank you!
  14. WebStar

    how to save cells formating in excel?

    Hi, I have an excel files with many macros behind. The file is 3MB big after I cleared every sheet. The problem is that all these macros are only working if all cells are formated as text. My file is a template and when the user starts it he will be required to enter some datas and a new file is...
  15. WebStar

    stop window from being closed with Alt+F4

    Hi, does anyone knows how can I stop my aplication from being closed with Alt+F4 key combination? Thank you!
  16. WebStar

    timer problem

    Here is the event made by me: private void OnSockMessage(object sender, SockEventArgs e) { if (e.SockMsg.StartsWith(&quot;<C>START&quot;)) { timer_actualizare.Start(); ... } } OnSockMessage is declared as an event. public event MessageDelegate OnSockMessage; it seems...
  17. WebStar

    stop form from closing with Esc key

    there was no function for key pressing and there is no hidden button. I've just created the form. The interesting thing is that my colegue here made the same form and is not closing at Esc press. Now I've tried the key_down event described abouve by ETID but is not even raised. When I press the...
  18. WebStar

    stop form from closing with Esc key

    Hi there, I have a problem: I have a form that has on it only a label and an progress bar. When I need the progress bar the form shows and the bar starts working... but the problem is that by pressing the Esc key the form closes. How can I stop this? Thank you!
  19. WebStar

    change personal file path

    hi, I made a personal file &quot;.pst&quot; and by mistake I placed it in my profile. Now it has grown to more than 150Mb and a warning appears that my profile space is filled up. I don't want to create a new .pst as it has a very big folder structure and a lot of rules. The question is how can...
  20. WebStar

    Low level programming in C#

    Does C# has the power of ANSI C? I mean can one program a micrcontroller under C# or is it a hi level programming language. Or does it have the power of calling assembly code?

Part and Inventory Search

Back
Top