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 Wanet Telecoms Ltd 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: biddingbong
  • Content: Threads
  • Order by date
  1. biddingbong

    Get info from visitors and convert it into a picture

    Hello everybody, I've been to a site lately, ant there has been something very interesting on that site. There was a little picture (jpeg) and on that it has been written (i)my IP (ii)my OS and (iii) my browser. OK, for putting these info's in a *.jpg picture is not that important, maybe it can...
  2. biddingbong

    Need help on the IIS log

    I usually check the log and most of the time there's nothing wrong. But I saw this some days back, can someone give me a little explanation on this: 07:57:27 xx.xxx.xxx.xxx GET /scripts/..%5c%5c../winnt/system32/cmd.exe 500 (I've removed the original IP replacing it by xx) Thanks.
  3. biddingbong

    "Common Event" for controls

    I've been trying to do this but each time tyhe code changes and a new error comes up. What Ive been trying to do is that when the mouse moves on any label or textbox on my form; if its a label, the forecolor changes and if it is a textbox, I want the font to change. I could have done it on...
  4. biddingbong

    Prevent Guest account from using Windows Media Player

    How can I prevent the Guest account from using Windows Media player (and some other programs which are optional)? Thanks.
  5. biddingbong

    Use DCOM from machine on network

    Ive created a simple dcom and installed in a machine running on Win2000, I want to access the functions in the dcom from another machine. How to make the reference in VB?
  6. biddingbong

    Scheduled procedures?

    Is it possible to call different procrdures at a specific time (without using a timer)? Well, I've got a table which contains wat to do on and at which time. With a timer, I check the database each minute whether a procedure sould be called or not. But if I want to check the databace each 2...
  7. biddingbong

    OUTLOOK Addin

    Hello everybody, I want to create an addin for OUTLOOK that will send me an SMS each time I receive a new mail. I'm using an ActiveX control for sending the SMS and a phone is connected to my computer. I wanted to do it in outlook itself but I don't know how to do it and also I don't know how to...
  8. biddingbong

    Validating input date

    Hello. I've got a textbox and the user was supposed to input a date with the following format dd-mm-yy or dd/mm/yy. How can I know if the user has really put in a date and mot something like : asdadsadfas or ss/f3/04? Thanks
  9. biddingbong

    Dependency Installer

    Is there a way to create an installer for the files used by my app (like dll's and ocx's)? So that when viewing the source code on other machine, I don't have to register one by one each time.
  10. biddingbong

    XP gives error when app ends

    Windows XP gives me an error when I click on the "Exit" button found on my login screen. I've got an MDI form which has a menu, when I exit from the menu, there's no error. And I usie the same code in the login screen. When I click on more details, the error seems to come from kernel32.dll Any...
  11. biddingbong

    Unload mdichild if it is loaded

    Hello everybody, Ive got an MDI form and when endinf the app I want to unload the mdichild first and then END. But the problem is that when there is no mdichild loaded I get an error. I tried this code: 'Me is the MDI If Me.ActiveForm <> Nothing Then Unload Me.ActiveForm But I still get errors.
  12. biddingbong

    Time taken for page to load

    Wat I want is the time take in seconds.milliseconds which the page took to load. I've been thinking sonething like this: <% Get the time %> <html> <head><title></title></head> <Body> talbes, images...etc... </body> <% Get second time Compare the 2 times response.write the difference %> </html>...
  13. biddingbong

    Dynamic combo fill

    Hi, still some problems with combo box. I have 2 combo's: #1 Persons from options: Customers : Staff : Other #2 Search by If "customers" is selected in the first combo, then the 2nd combo(search by) will have the following in its list: -ID -Name -Surname and other...
  14. biddingbong

    Sleep Function or something similar

    In Visual Basic, we have the Sleep function. The program will wait for some specified seconds and then will go to the next procedure. Can this be done in asp? Like show a page for 5 seconds, and after that 5 seconds then response.write will write something.
  15. biddingbong

    response.redirect and frames

    Hi, Ive got a page with 4 frameset.Its a bit like this: ------------------------------------- - Banner goes here - ------------------------------------- - - - -DHTML - MAIN - -MENU - - -...
  16. biddingbong

    &lt;option selected&gt; validation

    Hi, Ive got a combo listing numbers from 1 to 31. And when saving, the number selected will be saved in the database. But I want the number that has been saved to be <selected> in the combo next time the page is launched. I did that: <% Dim strDate strDate = Request.Form("cboDate") 'cboDate is...
  17. biddingbong

    Cant make Input(button) become normal

    Hi, Ive created a css and I use it in all my pages. Part of it is: Input{ BORDER-RIGHT: #6495ED 1px solid; BORDER-TOP: #6495ED 1px solid; FONT-SIZE: 14px; BORDER-LEFT: #6495ED 1px solid; COLOR: #000000; BORDER-BOTTOM: #6495ED 1px solid; background: transparent; } I use it mainly for...
  18. biddingbong

    3 combo,1 field

    Hi, Ive got 3 combobox on a page and they are all retrieving from the same field. The user will have the option of selecting from 1 to 3 products. But how can I populate all the three combo so that if the user select 1 product from one combo , the same product should not be in the 2nd combo, and...
  19. biddingbong

    3 combo, 1 field

    Hi, Ive got 3 combobox on a page and they are all retrieving from the same field. The user will have the option of selecting from 1 to 3 products. But how can I populate all the three combo so that if the user select 1 product from one combo , the same product should not be in the 2nd combo, and...
  20. biddingbong

    Get the number of a specified month

    Is there a function in VB to get the number of a specified month?

Part and Inventory Search

Back
Top