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 Chriss Miller 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: LeoLionHeart
  • Content: Threads
  • Order by date
  1. LeoLionHeart

    index

    Need the selected index of my select box to equal 1. this doesn't work <SELECT name=Department onChange="document.form(0).department.selectedIndex=1">
  2. LeoLionHeart

    Viewing aspx page

    I have a problem, my web app has been viewed by around 300 people. However, there are 2 people in the company where the page cannot be viewed. I can't figure out why. Any ideas?
  3. LeoLionHeart

    Datagrid Calendar

    Hi there does anyone know or have an example of placing a image in a template column in a datagrid and then this image clicking and turning into a popup calendar. Then the date from the calendar going back into the data grid. I'm using vb and javascript. Any examples would be fantastic.
  4. LeoLionHeart

    DataGrid button

    Hi there I have a datagrid with 5 columns the 5th column currently holds a image button. This image button is a image of a date control and I want it to open a popup window using javascript, which leads on to my problem. Firstly I cannot add attributes to this button such as on page load...
  5. LeoLionHeart

    Server Properties

    Hi there, how do I determine whether a server has the .net framework. I have a windows 2000 server and I haven't the user aspnet so I am now thinking that the server doesn't have the .net framework. Need to check so that I can install if not. Thanks Leo.
  6. LeoLionHeart

    Permissions Error

    Hi there I am receiving the error: The Microsoft Jet database engine cannot open the file '\\.mdb'. It is already opened exclusively by another user, or you need permission to view its data. I have done a search on this and the way to solve the problem is to go to the folder where my database...
  7. LeoLionHeart

    Can't send email

    I am using the following code in an ActiveX Script Set oMail = CreateObject("CDO.Message") Set iConf = CreateObject("CDO.Configuration") Set Flds = iConf.Fields iConf.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2...
  8. LeoLionHeart

    server side list box

    Hi I have 2 server side list boxes and 2 buttons. Selecting a item and clicking a button will transfer the item to the other list box. The transfer all works fine. However, when i click a button, before the page is posted back a little exclaimation mark comes up in the bottom left which reads...
  9. LeoLionHeart

    Project Error

    Hi there I have created a asp.net project and it all works find however when I leave the project on the internet say http:\\myproject\search.aspx for around 20 minutes then use it again I have the error. Server Error in '/' Application...
  10. LeoLionHeart

    Format Table

    Hi there I have a table such as the following: Name ID Bob green Bob red Bob blue Dave black Dave green I want to place it into a table that reads Name ID Bob green,red,blue Dave black,green Do I need to use a cursor for this. Any help would be...
  11. LeoLionHeart

    Connection error

    Hi, I hope that someone can help. I have two SQL servers with excatly the same databases on (development and live). When I connect to my dev database using the connection string: strConnect = "Driver={SQL Server};Server=SERVER;Database=DB;Uid=sa;Pwd=Pass;" I get results. However, on the...
  12. LeoLionHeart

    CSS

    Hi there I have a few questions on Cascading Style Sheets. I didn't have a style sheet at first in my project but I have now referenced one, such as in the head part of my html: <link rel="stylesheet" type="text/css" href="mainstyle.css"> In my mainstyle.css I have the following class...
  13. LeoLionHeart

    string left and len

    I have a string such as 013548 - Jo Bloggs. How do I just return the number part. For example, I want to loop from 1 to the length of the string. If the value = ' - ' Then exit loop. Store the position of the '-' and calculate left(string, strored position -2). Any ideas?
  14. LeoLionHeart

    Sessions

    Hi I was wondering if you could help. I have a web form with two html buttons and two text boxes. The buttons open up a child window using the following code: function OpenNew() { window.open('SecSearch.aspx','mywindow','width=360,height=200'); } The form that is open is a search form...
  15. LeoLionHeart

    Update Question

    A table is updated every morning via DTS. I then use this table to update another table. My query is the following Update tblPeople SET Email = (select b.mail FROM dim_user b WHERE loginID = b.NameLogin) However, if the loginID is not in dim_user then the Email field will be NULL. However...
  16. LeoLionHeart

    Checkbox alert

    Hi there, any help would be greatly appreciated. I have a server side checkbox on my web form called chkConfirm. What I want the user to do is when the check box is tick for a confirm/alert message box to appear asking "are you sure you want to delete?" Yes/No. If the user chooses No then the...
  17. LeoLionHeart

    2 web forms

    I have two web pages 1 web page is the master and the second is a small window that pops up. On my small window I have a hidden input box which is the result of the selected index from a list box. What I have on my main page is a text box which I want to be populated from the hidden input box...
  18. LeoLionHeart

    2 open web pages

    Hi, I have two web pages 1 web page is the master and the second is a small window that pops up. On my small window I have a hidden input box which is the result of the selected index from a list box. What I have on my main page is a text box which I want to be populated from the hidden input...
  19. LeoLionHeart

    List box to text box

    hi, I have a web form with a list box and a textbox. What I want to do is everytime a user changes the item selected in the list box the new item to be displayed in the text box. Any ideas? I want to use Jscript for this, otherwise it will be slow. Any help would be appreciated.
  20. LeoLionHeart

    Changing password at next login - Active directory

    I need the user to change the password when they first logon. .Properties("userAccountControl").Value = ADS_USER_FLAG.ADS_UF_NORMAL_ACCOUNT Or ADS_USER_FLAG.ADS_UF_PASSWD_NOTREQD Or ADS_USER_FLAG.ADS_UF_DONT_EXPIRE_PASSWD The code above sets the tick box in AD to password never expires. I...

Part and Inventory Search

Back
Top