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 SkipVought 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
  • Order by date
  1. lin73

    align textblock

    Hi The third method works fine for me and this was just what I wanted to do, thanks again!
  2. lin73

    align textblock

    traingamer I will go with a table and do it "old school", I just hopped it would be a way to do this with css and save some space. Thanks for helping and not being rude regarding the way I try to describe the problem.
  3. lin73

    align textblock

    Well to provide some code is not that easy when I don't have any code that I use so far. And I thought that I explained it well when I provided the text. If you compare how the 3 "Somevalue" text are aligned you see that the ones in the "code" example are aligned under each other, but the other...
  4. lin73

    align textblock

    johnwm I didn't realize that I have to answer other questions in other posts than the one I myself start, in order to get a reply from this forum. And have you thought about that maybee not all of us speak english as our native language and therefore maybee dont write as good english as you...
  5. 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
  6. lin73

    don't check empty values

    Hi Worked excellent, Thanks! yes I allready do that check server side, but I wanted this one too.
  7. lin73

    don't check empty values

    Hi I tryed this.. if (fld.value != "" && valid_extensions.test(fld.value)) return true; But I still get the alert when I have removed the text and click on the page....
  8. 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...
  9. 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
  10. lin73

    insert decimal value

    Update... Got it working using this code.... Set Parm1 = cmd.CreateParameter("@Price",14) Parm1.Precision = 18 Parm1.NumericScale = 2 Parm1.Value = cmd__Price cmd.Parameters.Append Parm1
  11. lin73

    insert decimal value

    Hi Even if I change it to that I get the same error message
  12. lin73

    insert decimal value

    Made a typo in the above, it should of course be .. Dim cmd__Price cmd__Price = "1.23"
  13. lin73

    insert decimal value

    Hi I have isolated the problem to be the decimal insert. In my stored procedure I have set the decimal value to be "decimal(18, 2)" and then I try to insert this.. Dim iPrice iPrice = "1.23" cmd.Parameters.Append cmd.CreateParameter("@Price", 14, 1,4,cmd__Price) When I remove all my...
  14. lin73

    insert decimal value

    Hi Thanks for the info, sorry to say that I cannot verify if it worked.... I now get a "Microsoft OLE DB Provider for ODBC Drivers (0x80040E21) Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done." error.
  15. 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)
  16. lin73

    tcp ip number limit

    Hi Problem solved, it was a switch that held the ip number to a mac adress, after a restart it worked fine.
  17. 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...
  18. lin73

    change image with onclick

    Worked great, Thanks Dan!
  19. 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"...
  20. lin73

    update of access db fails

    Great, Thanks!

Part and Inventory Search

Back
Top