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

    align textblock

    I have 2 textblocks like this... text1 somevalue mytext2 somevalue mytxt3 someothervalue Is it possible to align the "somevalue" column so it looks like this.. text1 somevalue mytext2 somevalue mytxt3 someothervalue
  2. lin73

    don't check empty values

    I have this script that checks the extension of a file field, It works fine except for the fact that if I enter file that is not allowed and then remove the entered text, then I still get the message. How can I hange the script so I only get the alert message if there actually is some text in...
  3. lin73

    TS problem

    I wonder how many Terminal server licenses there are built in Win 2008? Beacuse I get eventID 1069 error regarding the licenses in the server. Note I only need 2 licenses, how do I get rid of that error mesage, do I need to buy licenses, I thought that there where 2 licenses with the server
  4. lin73

    insert decimal value

    Hi I need to pass a decimal value into a stored procedure but can't get it to work as it should. I have this code that works for a integer, but how do I change it so it works for decimal value? cmd.Parameters.Append cmd.CreateParameter("@Price", 3, 1,4,cmd__PriceD)
  5. lin73

    tcp ip number limit

    Is there a limit on how many tcp ip numbers I can add for a Network adapter? The reason i ask is beacuse I have added 7 ip numbersto one adapter, but when I add another one I cannot ping that ip number, I can ping all the others but not that one. I can also see that the ip number is there...
  6. lin73

    change image with onclick

    Hi I have this javascript that I would like to change images, but it does not work, and since I'm not familiar at all with javascript I could use a little help. function changeMySrc(i) { if i == 1 document.getElementById("Img1").src="Images/folder_open.gif"...
  7. lin73

    update of access db fails

    Hi When I try to update using the code below I get this error "Concurrency violation: the UpdateCommand affected 0 of the expected 1 records." Imports System.Data Imports System.Data.OleDb Private Shared MyDataAdapter As OleDbDataAdapter Private Shared MyDataSet As DataSet...
  8. lin73

    sql column doesnt display on asp page

    Hi I have a database question that retrieve x number of rows. When I run the query in sql server I can see all rows. But when I run the query in my asp page and try to display a certain field (varchar(100)), it doesn't show up on the asp page. Does anyone have any idea of why this occurs? Regards
  9. lin73

    weird disk activity

    Hi On my Windows Vista Ultimate pc I frequently have very heavy disk activity without me doing anything at all. Does anyone have any suggestions on what this might depend on, and how I can get rid of it? Regards
  10. lin73

    disable defender

    Hi How can I disable windows defender in vista?
  11. lin73

    querystring values displays wrong

    Hi I try to write out a querystring value on my page, but the querystring contains a value like this.... mypage.aspx?K=l%F6v and when I try to write that on my page with .. Label1.Text = (Server.HtmlEncode(Request.QueryString("K"))) only 'lv' is written on the page when it really should...
  12. lin73

    make unique filenames function stop at file number 10

    Hi I have this function to generate a unique filename in a target folder. The function works fine, but only up to 10 unique filenames. This means that when the function have returned 10 unique filename and is supposed to make the 11'th unique name it return the 10'th instead. I use the function...
  13. lin73

    change frames in frameset with onload

    Hi I have a frameset with two frames (topframe and mainframe), I wonder how I can change both frames in body onload= Regards
  14. lin73

    position like an anchor after postback.

    Hi I have a aspx page with some radiobuttonlist on, they all have autopostback on them. My question is, is it possible to load the page back to where the radiobutton list selection where made after the postback have been done? Regards
  15. lin73

    customvalidator... or?

    Hi I have a page with severeal dropdown lists that get values from a database, and I also add a "select option" to every dropdown list. I would then like to check each dropdown list, so that the user select anything else than the first option "select option". How can I check this? Regards
  16. lin73

    access both value and text in dropdown list

    Hi I have a dropdown list with names and id's like this.. <select name="SelectCust" class="LicenseFieldLong"> <option value="0">Select Customer</option> <option value="1">Name 1</option> <option value="2">Name 2</option> </select> I know I get the value by Request.Form("SelectCust") But how...
  17. lin73

    disable imagebutton problems

    Hi I use asp.net 2 and have one asp:sqldatasource and one asp:radiobuttonlist on my aspx page, the radiobuttonlist is filled with data from my sql server. I further have a imagebutton that the user should click when he have made a choise from the radiobuttonlist. But the problem is that its...
  18. lin73

    rss feed isn't updated

    Hi I use IE 7 and subscribe to certain rss feeds, I have set IE to check the feed for updates every 15 minutes. But it never gets updated, I alwasy have to go into the feed and manually refresh the page. And IE displays this message "Internet Explorer was unable to update this feed and will try...
  19. lin73

    validate xml with xsd fails

    Hi I try to validate a xml file against a xsd file but get an error telling me "The root element of a W3C XML Schema should be <schema> and its namespace should be 'http://www.w3.org/2001/XMLSchema'." But the root element of my xsd file is <schema> and it doesn't matter if I add the namespace...
  20. lin73

    windows for that keep increasing memory usage

    Hi I have created a vb.net windows form in vs 2003, the program itself runs without any problems but I'm concerned by the fact that the application keep on increasing its memory usage all the time by 5-10kb appraximatly every 10 seconds. I see this by looking in the task manager. Why does the...

Part and Inventory Search

Back
Top