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

    SELECT with data in another table

    Hi, It seems simple but I can't figure out how to do this. I have 2 tables (Printers and Cartridges). Here is the basic structure: Printers Cartridges ID idCartridge idBlack cartNumber idCyan idYellow...
  2. Niavlys

    Copy data from a column from a table to another

    Hi, I know it should be an easy one but I can't figure out how to do this. I basically have 2 tables, one with 2 fields, FicheNumber and CaseNumber. The other table has the same fields with CaseNumber empty. I need to fill the CaseNumber column depending on the FicheNumber, Table 1...
  3. Niavlys

    RIS/WDS prevent computer account creation in AD

    Hi, I use WDS (Windows Deployment Service) on a Windows 2003 Server in Mixed mode (more like RIS). I use this ONLY to take advantage of the PXE Boot service. I boot in a Symantec/Ghost RIS image that allow me to use Ghost to deploy a large amount of computers. If you ask me why I'm using...
  4. Niavlys

    RIS/WDS preventing computer account creation

    Hi, I'm using WDS as a PXE server to clone computer withing our organization with Ghost. I want to bypass the computer account creation in Active Directory because cloned computers will not be part of the domain anyway. Is there a way to achieve this. Thanks.
  5. Niavlys

    non-Admin privileges updates???

    Hi. I have a lot of computers to manage that users don't have admin privileges. I need some advice on what you may be using to keep the computers up to date. The Windows updates are managed with a WSUS server. The applications are managed with GPO. What can be done with Flash...
  6. Niavlys

    No servers in Authorized DHCP servers

    Hi, I have 2 DHCP servers that are running since more than 5 years. I don't have any problems with these DHCP servers. The problem is that I want to install Windows Deployment Services on a new server and when I install it, I don't see it in the manage authorized servers list. I don't see...
  7. Niavlys

    Exchange relaying problem...maybe...

    Hi, I'm a bit desperate... to be honest, I am really desperate. My problem is maybe simple for some of you but it's been 3 days now and still not been able to find a solution. I have an application that use our Exchange 2003 server to relay mail. If I send an e-mail with 99 recipients or...
  8. Niavlys

    Why working in SQL 7 but not under SQL 2000?

    Hi, I'm a bit desperate. I have this query : SELECT GPM_E_ABS.FICHE " &_ "FROM ((GPM_E_DAN INNER JOIN (GPM_E_ABS INNER JOIN GPM_T_ECO ON GPM_E_ABS.ID_ECO = GPM_T_ECO.ID_ECO) ON (GPM_E_DAN.ID_ECO = GPM_T_ECO.ID_ECO) " &_ "AND (GPM_E_DAN.FICHE = GPM_E_ABS.FICHE) AND (GPM_E_DAN.ORG =...
  9. Niavlys

    Change CSS properties with getElementById

    Hi, I have this in my CSS page : #School li a:active { color: #FFFFFF; background: url(images/schoolmenu.gif) 0 -64px; padding: 8px 0 0 10px; } which I want to change the color onClick. How do I access the color element using getElementById...
  10. Niavlys

    Getting logged on user on Windows XP IIS

    Hi, I'm working on my desktop running Windows XP SP2. I have IIS running with an application that needs Windows integrated authentication. I can't make it work running the application from Windows XP IIS but if I do the same setup on IIS running on Windows 2000 server, it works fine. On...
  11. Niavlys

    SELECT data that is not in a table from another table?

    Hi, I have to tables : Models_Default and Soft_Info Models_Default has 2 fields : TemplateID and SoftID Soft_Info has 3 fields : SoftID, SoftName, Version I need to get data in from Soft_Info table that SoftID IS NOT in Models_Default table and TemplateID is equal to 15. I tried LEFT, RIGHT...
  12. Niavlys

    IIS always stopping after Windows Update

    Hi, I have my corporate web site on IIS 6.0 Server 2003. During last weekend, I did Windows update on my server and since, every 2 or 3 minutes, all web and ftp services are stopped and there is this event logged in the Application log. Worker process could not access metabase due to...
  13. Niavlys

    FTP hyperlink doesn't work

    Hi, I need links to files that are on our FTP server (which doesn't allows anonymus connections). The problem is that the server doesn't ask for authentication when going from the link as it would do by typing the same address in the browser. I also tried inserting the username in the link but...
  14. Niavlys

    Can't delete a file without Security tab

    Hi, I have a .txt file on a NTFS partition that doesn't have a Security tab under properties so I can't delete that file. I receive access denied if I try to open or delete the file. I tried cacls to add ACLs to the file but still having Access denied. How can I remove that file Thanks
  15. Niavlys

    window.location.href doesn't work in Safari

    Hi, I have a problem with window.location.href in Safari browser. I have a link: function ConfirmDelete(Url, Message) { if (confirm(Message)) { window.location.href=Url } } <a href="#" onClick="ConfirmDelete('DeleteSelection.asp?sType=All&rPage=Portfolio', 'message')" >...
  16. Niavlys

    insert a character every N characters while typing

    Hi, I have a text box that needs a little formatting before to save the text in database. I want, as I type, count the characters and insert a carriage return every 80 characters. Is it possible? Thanks!
  17. Niavlys

    insert carriage return every 80 characters

    Hi, I need to add a vbCrLf every 80 characters in a string. I can't figure it out. I don't know much about string functions. Can someone help me? Thanks in advance
  18. Niavlys

    Replace images onClick in Netscape?

    Hi, I have the following code function changeImage(Logo, Banner) { newImage = "url(images/"+Logo+")"; document.getElementById('Logo').style.backgroundImage = newImage; newImage = "url(images/"+Banner+")"; document.getElementById('Banner').style.backgroundImage = newImage; } ... <TD...
  19. Niavlys

    2 pages in one, class tags ?

    Hi, I would like to ask you guys if it's possible to have one single page which has the same information in french and in english but displays only what's in the right tag. i.e <french> Bonjour </french> <english> Hello </english Can I create tags like that and if yes, how do I...
  20. Niavlys

    colors in select box?

    Hi, Is is possible to have a select box that has colors in it. Instead of seeing color name you see the color itself. Thanks!

Part and Inventory Search

Back
Top