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 TouchToneTommy 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: lunargirrl
  • Content: Threads
  • Order by date
  1. lunargirrl

    instr help

    need urgent help i am trying to store in a variable the e-mail address of my users, i know the start position, but how can i guess where it ends? eG I want to extract only the e-mail address of the following data: mylines: Johan Anderson Myers EMAIL: johan@email.com Bangkok Cyndi Lauper...
  2. lunargirrl

    How to avoid multiple logins?

    Hello people, I am trying to find solutions to avoid multiple logins of an user, If someone had the same problem and found a solution, please share the ideas with me, because all the ideas I had are complete uncessfull. Tia, Gis.
  3. lunargirrl

    Removing variable from Cache

    I am creating a cache in this way: 'I found this code in the net and it is working really fine, but i have a problem: how can i remove this variables from my cache if the user clicks the "close" button in my application? (I mean the sintax to remove the str1 from cache) here's my code: on my...
  4. lunargirrl

    How to add two fields in a dropdownlist?

    ... cboUsers.DataSource = ds cboUsers.DataTextField = "User_Name" & "User_Id" cboUsers.DataValueField = "User_Name" & "User_Id" cboUsuarios.DataBind() I need my dropdownlist to receive 2 fields (User_Name and User_Id, but i get an error, is it possible to do something like that? Tia, Gis.
  5. lunargirrl

    Problem to get the IP address of user's machine

    Hello people, I hope someone can help me about this. I am having problem to read the ip address of my user's machine. When I use REMOTE_ADDR, i am able to read the dynamic IP address that the provider gives to the user when he's connected to the internet, but I need to read the user's machine...
  6. lunargirrl

    Event key and Imagebuttons problems

    Hi all :) I am using a javascript that makes keypress event. when i use the code in an <asp:button...> it works fine, when i try after enter to focus on a <asp:imagebutton...>, it shows me the following error: 'document.form1.btnLocalizar' is null or not an object. my code is bellow: the...
  7. lunargirrl

    Keypress on field

    I'd like to know how can I make keypress when the enter key is pressed, to jump to the next field on a form. Thank you. venusgirrl
  8. lunargirrl

    Keypress in JavaScript

    I'd like to know how can I make keypress when the enter key is pressed, to jump to the next field on a form. Thank you. venusgirrl
  9. lunargirrl

    When the user leaves the application

    Hello :) When my users log-in I record in a table the date, time and the string "logged user". I would like to record in table when the user leaves my application, either closing by webcontrol or by browser. Is there a way to make asp.net recognize when the user left the application and take...
  10. lunargirrl

    Removing last character of string

    Hello people, I would like to remove the last character of my string. e.G. LisaManson2 (i would extract only the character '2' of the string). I am trying to do: mystr = (mystr- Right(mystr, 1)) It doenst work at all. How could I do that?? TIA, venus
  11. lunargirrl

    Not changing url when server.transfer

    This might be quite simple, but I cant find out. I want to not change my url when server.transfer. e.G. my url: http://www.mydomain.com when i login it become: http://www.mydomain.com/default.aspx when i move to another page: http://www.mydomain.com/pages/page1.aspx i would like to have always...
  12. lunargirrl

    For Each - Next takes always the lower value

    I have 10 checkboxes in my CheckBoxList, each one has values that go from 1 to 10. I cant find what is wrong in this for each - next, that is inserting in my database always the lower value that I have in my checkboxlist. Dim item As ListItem Dim value As Integer ActualDate =...
  13. lunargirrl

    Store and read the Checkbox &quot;Checked&quot; value

    Hi people :) How can I store and read the Checkbox "Checked" value to and from a table in my database? TIA, Gis.
  14. lunargirrl

    Dataset and .ascx file problem

    Is there any problems using a dataset inside of an .ascx file? I have the need to run a query that returns some data inside of this .ascx, but the dataset returns me 'nothing'. Thanks a lot, Gis.
  15. lunargirrl

    comparing values of a Dataset to Imagebuttons.

    I am receiving data from a table (via sql query) like: Cod_Module -------- 1 2 3 In my asp.net app (vb - codebehind) I receive these data using a sql query, my problem is: i have to check for the numbers that come from my query and based on that set to visible or visible some imagebuttons. e.g...
  16. lunargirrl

    Clear controls of a page

    How can I clear the controls of a page (labels, textboxes, etc..) when the back and forward buttons of the browser are pressed?? Thanks a lot, Gis.
  17. lunargirrl

    Extract numeric part of string?

    Hi people :) Is there a way to extract only the numeric part of a string? e.g. extract only the number '15' from carlajones15 and the number '208' from lisafaye208 ??? Thanks, Gis.
  18. lunargirrl

    Removing characters from string

    Hi, I know this may be easy, but I dont find the right way to make that :( dim str as string str = myuser001 I'd like to have myuser as result, removing the 3 last characters (the number 001 of my string). The string size can variate, but always the 3 last charac. should be removed. TIA!
  19. lunargirrl

    generating UserIDs

    Hello, I had a problem constructing this code and some friends from this forum helped me :) I'm still thankful for that! The objective is to generate userId's taking the first character of the user's first name and the whole last name. The problem now: e.G. Marianne Peterson Mariah Peterson...
  20. lunargirrl

    Using the Custom Validator

    I am trying to validate a textbox in my page. It cant contains less than 7 characters. This is what I am doing: <head> <script language="JavaScript"> function PassLength( oSrc, txtPass ){ var retValue = true; if(txtPass.length > 7){ retValue = false;} return retValue } </script> </head> In my...

Part and Inventory Search

Back
Top