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

    .cvsignore Files Not in CVS

    We've got a bunch of files that exist in a working directory that we don't want in the CVS repository. Every time we run an update, we get a message stating that we need to do a cvs add for every single one of these files. I've tried adding a .cvsignore file to the folder above them, but even...
  2. laurin1

    943460 Problem!

    Every machine I have installed this patch on has this problem now: http://www.tek-tips.com/viewthread.cfm?qid=1426877&page=1 Keith Davis Director of IT, P.R.I.D.E. http://www.pridedallas.com MCSA, A+, N+
  3. laurin1

    Excel 2003 - Cannot Open File by Double-Click

    Something happened today and suddenly my users cannot open files by double-click if they path and/or file name has a space in it. When they try to open c:\Documents and Setttings\keithdavis\My Documents\test.xls, for example, Excel reports it cannot open the following files: C:\Documents and...
  4. laurin1

    Strange Array Result

    $aReturn[$i] = $aSQL['firstname'].' '.$aSQL['lastname'].(($aSQL['credentials'] != '') ? ', ' : '').$aSQL['credentials']; $aReturn[$i][0] = $aSQL['id']; $aReturn[$i][1] = $aSQL['firstname']; $aReturn[$i][2] = $aSQL['lastname']; $aReturn[$i][3] = $aSQL['credentials']; returns: Array ( [0] =>...
  5. laurin1

    Service Pack 3 broke my code (adox 2.8)

    I was using adox 2.7 to create a new .mdb. Just recently, I've upgraded Office to Service Pack 3. When I tried to run the code, I got an error about module not found. I opened References and I got a message stating that one of them was not loading correctly and that the reference needed to be...
  6. laurin1

    Service Pack 3 broke my code (adox 2.8)

    I was using adox 2.7 to create a new .mdb. Just recently, I've upgraded Office to Service Pack 3. When I tried to run the code, I got an error about module not found. I opened References and I got a message stating that one of them was not loading correctly and that the reference needed to be...
  7. laurin1

    Administrative Accounts

    I think I've done all that is necessary to configure an account to administer a non-administrative group, but it doesn't work. One thing is strang is that when I log in as root, the group attributes in SMIT are like this: Group NAME [staff] Group ID [1]...
  8. laurin1

    Nul? Page does not display

    During development, at times, I do something that causes the page to not display (in the browser, it's a blank page.) When you do a View Source, the entire page in code is there, but at the bottom of the page, it always says NUL. What does this mean? I usually can fix it, but I never know how I...
  9. laurin1

    PC Freezes - Pocket PC/HD Light

    I have a problem, that I can't seem to figure out. At times, when I put my Pocket PC on the cradle (it's an SX66), the PC Freezes. The hard drive light goes solid, and everything freezes but the mouse...and then after about a minute the mouse freezes. Taking the PPC off the cradle has no effect...
  10. laurin1

    IMF v2 Updates Not Available

    I've enabled the ContentFilterState key (DWORD 1), but updates are not available on Windows Update and WSUS gets the updates, but it's not detecting that they are needed by the server. Keith Davis MCSA, A+, N+, Guru+, Geek+, Child of God++++++ Love and Service http://www.solidtechservice.com
  11. laurin1

    Cannot clear Event Log

    When I try to manually clear one of the event logs on my domain controller, I get Access Denied. I am using the built-in Administrator account. Any ideas? Keith Davis MCSA, A+, N+, Guru+, Geek+, Child of God++++++ Love and Service http://www.solidtechservice.com
  12. laurin1

    cron backup with multiple volumes

    Can this be done? My backup works fine with single volumes, but when it runs over, my script emails me the log and it's asking for a new tape. However, it appears to exit right after that. Here's the script: #!/bin/sh echo "$(date) Starting nightly system backup..." find /rmi/RM5/rm5.dbs...
  13. laurin1

    AJAX with PHP

    Here's something I don't like about AJAX. Maybe, someone has a solution. When I'm testing out code, if I change the POST/GET page (not the calling page), I have to close and reopen Internet Explorer to see the changes. Hitting refresh does not work. Keith Davis MCSA, A+, N+, Guru+, Geek+...
  14. laurin1

    Submitting a "popup" form

    I want to write a form into a createPopup function. Is this possible and how would I do it? I wrote this, but I get an error: function ChangeDate($sID, $sDateTime){ var $oWin = window.createPopup(); var $oBody = $oWin.document.body; $oBody.style.backgroundColor = '#0000FF'...
  15. laurin1

    Text disappears???

    Here is the code: <div class="bluebox" id="assessmentinstruments" style="height: 50px; overflow: hidden"> <span style="position: absolute"> <input type="CHECKBOX" name="ai_section" value="*" class="radiocheck" id="ai_section"> * <script> function Section($sCheck, $sID){...
  16. laurin1

    Using new or global for objects in functions

    I've got some code with a bunch of functions that use the same object over and over again. Is it better (faster, more memory efficient) to create that object in each function or to create it globally and use the global keyword in each function? Keith Davis MCSA, A+, N+, Guru+, Geek+, Child of...
  17. laurin1

    Global Object?

    If i have a code like this: class MyClass{ var $sProperty; function MyMethod(){ echo $this->$sProperty} } } function A(){ $oTest = new MyClass(); $oTest->sProperty = 'Hello World"; $oTest->MyMethod(); } function A(){ $oTest = new MyClass(); $oTest->sProperty = 'Goodbye World"...
  18. laurin1

    How do I destroy an object?

    class test{ var sTest; function fncTest(){ dosomething; } } $oMyObject = new test; How do I delete $oMyObject? Keith Davis MCSA, A+, N+, Guru+, Geek+, Child of God++++++ Love and Service http://www.solidtechservice.com
  19. laurin1

    IE Pop Up with Select Input problem

    I'm looking for ideas to resolve this issue. If you don't know what I'm talking about, Internet Explorer behaves badly when popping up JavaScript menus over SELECT type Input elements (they always show through your menu.) The two methods I've seen are these: Use an iframe backing...
  20. laurin1

    WSUS Issue (Non-running services: SelfUpdate)

    I'm getting this error in the WSUS console: Check your server configuration One or more Update Service components could not be contacted. Check your server status and ensure that the Windows Server Update Service is running. Non-running services: SelfUpdate WSUS has been working fine, in fact...

Part and Inventory Search

Back
Top