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: *

  1. Krystian81

    <?php load_view ... >

    try to find "views" directory somewhere. Then maybe under it you`ll find mixtape and featured dot php file which should this what you trying to find and edit. Before edit make a copy of this file....
  2. Krystian81

    How to get Image Alt Attribute value (ALT="episode 48 ")

    firs of all your $matches is wrong. but preg_match should look like ( I didn`t test it, written here by hand ) $matches="<IMG SRC="http://images.somesites.com/videos/3.jpg" BORDER=0 ALT="episode 48" style="cursor:hand" preg_match(‘/<IMG SRC="http://images.somesites.com/videos/3.jpg" BORDER=0...
  3. Krystian81

    dataGridView + architectural tips for beginner

    Hi ralphtrent, thank you for your answer. It was very useful, I change my code concerning your tips trying to add checkboxex to each row -> succesfully. Now I would like to know how to get the ID ( or ID`s ) of marked row ( id is returned from the query ). public DataTable getWzList(int...
  4. Krystian81

    JQuery show menu OnMouseMove.

    Hi Sergio, I suggest give he your client opportunity to show the manu and after he leaves box with menu its automatically disappear example <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitiona..."> <html...
  5. Krystian81

    dataGridView + architectural tips for beginner

    Hi everybody, first of all I`s like to point that I`m a C# beginner and I would like to learn from scrach using good practices. What I need to do is: 1. Query databese 2. Return results in dataGridView ( 1st or last column should contain a checkbox for further use ). Of course I can do this in...
  6. Krystian81

    windows 2008 server as terminal srv

    HI, I very need script or tip how to write it script to show who and when was logging into this machine I know that this is available in security event log but there is millions of entries and I "only" need who and when. regards Krystian
  7. Krystian81

    compile error

    yeah, I was trying to test something and assign this in stupid way your code works fine. my also work but I had to use Call <functionName>
  8. Krystian81

    compile error

    when I try to run this function ( I`ve also tried to change it to Sub ) I get error "in the sub procedure calls can not use parent objects" Function map_drive(drive_letter, drive_to_map) Dim objNetwork, strDrive Set objNetwork = CreateObject("Wscript.Network") strDrive = drive_to_map...
  9. Krystian81

    Slideshow image fade in/out...

    take a look on it http://philipf.alphacomplex.org/plugins/fader/demo.html or try to use jQuery animate function
  10. Krystian81

    check free space on share

    this disk is not mapped peristantly. So I can: 1. map it in VBS 2. Check free space ( dont know how ) 3. Unmap it sample code Dim objShell, objNetwork, strDrive Set objShell = Wscript.CreateObject("Wscript.Shell") Set objNetwork = CreateObject("Wscript.Network"); strDrive =...
  11. Krystian81

    check free space on share

    I`m new in here so I`d like to pass greetings to everybody. The question is how to check free space on share drive using VBS? My share is not a win machine. It`s a Network Attached Storage which has got its own IP address, ( 2,5 TB ) regards Krystian

Part and Inventory Search

Back
Top