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: WebStar
  • Content: Threads
  • Order by date
  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

    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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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!
  8. 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!
  9. 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...
  10. 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!
  11. 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!
  12. WebStar

    change personal file path

    hi, I made a personal file ".pst" 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...
  13. 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?
  14. WebStar

    no request for automatic e-mail send from outlook?

    Hi, I have a script to send a mail when a change in a shared worksheet is done. How to disable the message "A program is tring to send a e-mail in your behaf" "Do you want to allow this?" and just send the e-mail. Thank you!
  15. WebStar

    Create a table with an index

    Hi, I have a function that has to delete some fields in an access database. The problem is that the table is created dinamically from code. If I set the "MainWPID" field to be Indexed(Duplicated OK) from MS Acces everything works ok. But I don't know how to create an indexed field...
  16. WebStar

    how to open a directory?

    Hi, I have Application.GetOpenFilename() to open a file but I want to open a directory, like add directory from Winamp. all I want is the path of the directory that the user selects. thank you!
  17. WebStar

    append field into access db error

    Hi, I get an error (no. 3211) when I try to add a new field into an access data base with the append method. This is the code: Private Sub UpdateField(ByVal newFieldName As String) Dim db As database Dim td As TableDef Dim fl As Field Dim bFieldName As Boolean db = ... to define For Each...
  18. WebStar

    timer problem

    Hi, I have this problem: I have a client-server aplication based on socket comunnication. What I want is that when the client recives a message from the server a timer to start. The problem is that is doesn't want to start. If I place a messagebox to show when the message arives it...
  19. WebStar

    foreach question

    Hi, I have the next question: in foreach (type identifier in expression) where expresion is a structure if I say identifier.a = value than the value is changed in expression structure too?
  20. WebStar

    strange error in Excel

    hi there, everytime I let excel opend when I lock the station I get a strange error when I try to run the macro after unlocking. If I close excel and open it again, everything works fine. The error I recive is this: Run-time error '-2147352571(80020005)' Type mismatch does...

Part and Inventory Search

Back
Top