Saturday, October 17, 2009

How do you download penalization from You Tube to Window Media Player?

Reader

Resolved Question

How do you download penalization from You Tube to Window Media Player?

How do you download penalization from You Tube to Window Media Player? What are the steps? I disagreeable to defect a penalization cd!

Best Answer - Choson by Asker

ImTOO YouTube Video Converter you haw try, itt is healthy to download HD/SD YouTube videos and modify them to favourite recording formats much as AVI, MPEG, MP4, 3GP, DivX, XviD,MP3, WMA Video and Audio info based by iPod, iPhone, Apple TV, PSP, PS3, Zune, BlackBerry, 3GP ambulatory phone, etc
You crapper download this code liberated from here
http://www.flash-video-soft.com/imtoo-yo…
Hope this helps.

There are currently no comments for this question.

Other Answers (2)

  • this module support you... Use 'zillatube'

    It is the easiest artefact (and also the fastest).

    It is rattling cushy to download or spend Youtube videos to your computer, and modify to beatific calibre wmv/mp3/mp4/etc info that is harmonious for your windows media player(or another contestant or defect to cd as you wanted), for you to check those videos comfortably. (you crapper also create an automatic listing that you crapper check or center to.)

    It entireness rattling substantially -

    http://www.zillatube.com
  • You could ingest bit-torrent websites. Or essay listentoyoutube.com

    But you should acquire the music. iTunes, or Napster, or acquire CD's.

    Source(s):

How do I add an mpg4 to windows flick maker?

Reader

Resolved Question

How do I add an mpg4 to windows flick maker?

Best Answer - Choson by Asker

Convert itt to a info that WMM crapper use. Those are traded in the WMM Help files.

Then, meet Google for:

convert mpg4 to wma

or some another info that is compatible.

There are currently no comments for this question.

Other Answers (1)

  • Windows flick concern hold .wmv format, so you requirement modify .mpg4 to .wmv format, then goods itt to windows flick maker.
    Video Converter crapper modify .mpg4 to .wmv, it's cushy and safe.

    Hope itt crapper support you, beatific luck!

    Source(s):

Friday, October 16, 2009

Can I defect binary CD images into digit DVD?

Reader

Resolved Question

Can I defect binary CD images into digit DVD?

I downloaded whatever artefact cds to change my ibook, but i ran discover of grapheme cds and I was wondering if I could defect them every into digit dvd (because I don't poverty to ingest digit dvd per cd, their exclusive same 500mb each). But i don't poverty to attain a accumulation dvd I poverty a dvd that crapper boot.

Best Answer - Choson by Asker

I don't conceive this is doable unless you hit whatever category of bootloader installed that module permit you garner which CD ikon to rush from. All the bootloaders I've utilised lets you garner a element figure same a hornlike disk, USB drive, or CD/DVD ROM, but never an image.

CD-R is rattling cheap, so the easiest artefact sounds is meet purchase a diminutive multi-pack and executing to them. Anything added is belike more instance and pain than it's worth.

Source(s):

There are currently no comments for this question.

Other Answers (0)

No another answers.

How to variety 2 dimensional array?

Reader

Resolved Question

How to variety 2 dimensional array?

i requirement support figuring discover the cipher to encounter the maximal variety and smallest in a 2 dimensional array.

Best Answer - Choson by Asker

To do this in Java, you would do something aforementioned this.

int min = array[0][0]; // This sets the prototypal surroundings of the clothing as the minimum.
int max = min; // Setting the prototypal surroundings also to be the max.
// Even though we module be checking these elements again in the loop, since you are using a 2 dimensional clothing itt is unavoidable.
int temp; // Just saves on accessing the surroundings of the clothing twice patch checking.
for (int i = 0; i < array.length; i++)
{
for (int j = 0; j < array[i].length; j++)
{
temp = array[i][j];
if (temp < min)
{
min = temp;
}
if (temp > max)
{
max = temp;
}
}
}

Just place that cipher into the cipher you already hit that is swing the drawing into the array. What I stingy is, this needs to be settled after you hit place drawing into the array, or added itt module not impact as expected.

There are currently no comments for this question.

Other Answers (6)

  • easy
    And, technically, you are NOT activeness this clothing you are meet uncovering peak and peak values.

    a wrinkled somewhat pseudo cipher intermixture of vb and lawful statements

    this assumes you hit a 10 x 10 clothing already filled with uncertain amounts. The variety of elements is not important. We module study the clothing "values"
    you would ingest a evidence aforementioned Dim values[10][10]
    then you tell to variables for peak and peak value.

    make trusty that you don't utilised distant text for the declarations ... moron honcho creator Bill utilised the most ordinary uncertain obloquy that grouping would poverty to ingest for "his" distant names.


    then wheel finished the array.
    'set the min_val, max_val to the prototypal clothing value.
    min_val = values[1][1]
    max_val = values[1][1]

    for row_index = 1 to 10
    for col_index = 1 to 10
    if values[row_index][col_index] > max_val then
    max_val = values[row_index][col_index]
    modify if

    if values[row_index][col_index]< min_val then
    min_val = values[row_index][col_index]
    modify if
    modify for
    end for

    ps
    I dislike the fact that the simple character Answers can't place in spaces when you move maker code.

    Source(s):

  • Say you hit an int A[x][y]. Make a newborn int B[x]. For i = 0 to x-1, encounter the smallest (or largest) variety in A[i] and ordered B[i] to that value. Then encounter the smallest (or largest) variety in B.

    To encounter the smallest variety in an array, here's pseudocode.

    Input: clothing int A[n]
    1. permit min = A[0].
    2. For i = 0 to n do:
    2a. If A[i] < min ordered min = A[i]
    3. Return min.

    If you were to encounter the index, meet attain added topical uncertain idx, move itt at 0, and when you re-set min, re-set idx to i, and convey idx instead of min.
  • Hm....









    if meet wana undergo maximal or minimal value, we dont requirement variety an array, modify 2 obtuse arrays.
    Of cors the clothing staleness aforementioned element.
    Cos we dont undergo what using lang,
    assume prototypal finger surroundings is 0.
    hi = array[0,0]
    lo = array[0,0]
    for i = 1 to i < n*2 //
    row = i / n
    col = i % n;
    if(hi < array[row, col]) hi = array[row, col]
    if(lo < array[row, col]) lo = array[row, col]
    loop

    example:
    we hit 2D array:
    1st bed = {7,3,6,5,7,8,9}
    2nd row= {3,4,3,6,7,4,11}
    n = 7
    merge array: 2x7 = 14, from 0 ... 13
    index fig.
    0 1 2 3 4 5 6
    7 8 9 10 11 12 13

    i = 11
    row = 11 / 7 = 1
    col = 11 % 7 (modulus operation) = 4
    array coord is (1, 4),
    its stingy bed 1, notch 4
  • I've ever utilised a nested for loop, digit to curb your x-dimension and digit to achievement finished your y-dimension. I'm forward you're meet afraid with uncovering the integers you want, and not hunting to do whatever hard-core activeness algorithms. :P

    ((Assuming you're using C/C++... but the system is the same... and yeah, the prototypal bill was more adjuvant by not informing you what to do.. XD ))

    int minValue; // Hold and road your min Value
    int maxValue; // Hold and road your max Value

    for(int x = 0; x < width-of-your-array; x++){
    for(int y = 0; y < height-of-your-array; y++){
    if( array[x][y] < minValue)
    minValue = array[x][y];

    if(array[x][y] > maxValue)
    maxValue = array[x][y];
    }
    }


    I've been awaken for 30 hours, but I conceive that's the gist of it.

    Source(s):

  • You forgot to name which planning module you are using. Here is whatever VB cipher that I meet tested: (I excuse that yahoo answers has dopy viewer that messes up indenting making itt hornlike to read)

    Const firstdimension As Integer = 5
    Const secondimension As Integer = 5
    Dim myarray(firstdimension, secondimension) As Integer
    Dim max As Integer
    Dim min As Integer

    Private Sub Form1_Load(ByVal communicator As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

    populatearray() 'code ommited this meet fills in booby values
    getmaxandmin()

    End Sub

    Private Sub getmaxandmin()
    Dim i As Integer = 0
    Dim j As Integer = 1
    max = myarray(0, 0) 'have to ordered max to prototypal continuance to attain trusty itt doesnt move discover higher then maximal continuance in array
    min = myarray(0, 0) 'have to ordered min to prototypal continuance to attain trusty itt doesnt move discover modify then minimal continuance in array
    While i < firstdimension

    While j < secondimension
    If myarray(i, j) > max Then
    max = myarray(i, j)


    End If
    If myarray(i, j) < min Then
    min = myarray(i, j)


    End If
    j += 1
    End While
    j = 0
    i += 1
    End While
    MsgBox("min:" & min & Constants.vbCrLf & "max:" & max)


    End Sub

    Source(s):

  • dim amin as int
    dim amax as int
    amin = a(1,1)
    amax = a(1,1)
    for i = 1 to ubound(a,1)
    for j = 1 to ubound(a,2)
    if a(i,j) > amax then amax = a(i,j)
    if a(i,j) < amin then amin = a(i,j)
    next j
    next i
    print amin, amax

Thursday, October 15, 2009

My machine won't start. What is criminal with it? Can itt be fixed?

Reader

Resolved Question

My machine won't start. What is criminal with it? Can itt be fixed?

Got Dell Ispiron with XP. Worked dustlike for digit eld and most digit weeks past went finished a speech of haphazard shutdowns. Opened itt up ventilated itt discover clean itt up started and worked substantially for a week.

Then came bag proven to move itt and itt would meet set at the inaugural concealment that said Dell. So unplugged itt obstructed itt backwards after a whatever transactions and itt started.

Few life after haphazard shutdowns occured again. Now the pc module essay to start, but can't seem to rush every the way. Sometimes itt makes itt then shuts downbound directly then tries to uphold again.

Before the effort expiration there ran plentitude of virus checks and what not so I don't conceive itt is that. Changed discover the noesis cater and that didn't impact either. Any ideas?

Best Answer - Choson by Asker

Was intellection noesis cater when I was prototypal datum it, but if its a newborn PSU, then its not that. Sounds aforementioned you hit intense RAM. Try making an ISO for memtest

http://www.memtest86.com/download.html

Boot to that, separate the effort and if itt does not fail, permit itt transfer at small 3 times. If itt fails, change that RAM. If itt does not, then you hit whatever another figure that is preventing you from full weight the OS. Could be HDD, Optical drive, disc drive.

Start by attractive discover digit figure at a time, attain the hornlike intend the terminal device, then essay to move the computer. If itt loads the os, that factor is most probable the imperfect figure that is preventing the machine from functional correctly.

There are currently no comments for this question.

Other Answers (7)

  • We had the aforementioned difficulty with our machine and we ended up with 1000+ viruses and spyware we took itt to geek unit and they hardback up the machine and got itt to impact itt tradition be the aforementioned as itt did but every your files module be on a cd and you crapper locate the enter anywhare in your machine to acess them thay module calculate inferior if you dont poverty to hit the files on itt when itt crashed. Hope this helped!

    Source(s):

  • try a whatever things:

    1. Take discover digit follow of RAM and wager if that is fastening the boot
    2. Could be overheating, analyse and attain trusty every fans are turning.
    3. Could be the hornlike intend play to fail.


    Sorry I can't be of such support but since itt arbitrarily restarts, I ready inclination towards the mainframe or the chipset overheating.

    Source(s):

  • Please Unplug the noesis telegram first, unstoppered the PC ,remove the Ram clean with applier if you hit AGP then unstoppered that and again ready them to correct locate i conceive itt module work. analyse every noesis supply.thank you
  • Yep, grouping change it. F12 or F11 maybe modify F10. Dell, Windows, Linux, and AWH every ingest a assorted grouping change cipher :/. Try grouping restore, that ever fixes the problem.
  • Scrap itt and intend a bespoken shapely PC. It takes investigate but you crapper intend a superior chisel from newegg.com for most 600 bucks. And DON'T intend a Mac if you're an XP user.
  • Throw itt soured a roof.
  • scrap itt and intend a fu**ing mac!

I poverty to verify a recording on a website and place itt on youtube. how do i do this? every there is is a link?

Reader

Resolved Question

I poverty to verify a recording on a website and place itt on youtube. how do i do this? every there is is a link?

there is a unification you crapper double and adhesive to place in emails, etc. but how do i place that recording on youtube when every i hit is the link? it's on americas funniest bag videos. thanks

Additional Details

i poverty to attain itt an actualised video. not meet place the unification on my page.

10 hours ago

Best Answer - Choson by Asker

You crapper download the "real contestant 11" to your computer, itt allows you to download some recording you poverty from internet. The exclusive "problem" is that you staleness ingest internet explorer, not opera, itt entireness exclusive with IE.
If you requirement support you crapper communicate me. :)

There are currently no comments for this question.

Other Answers (1)

  • Theres a unification at your correct titled "Embed" thats the unification you should double and than adhesive on ur website/blog.

    Source(s):

Wednesday, October 14, 2009

Help plz!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!?

Reader

Resolved Question

Help plz!!!!!!!!!!!!!!!!!!!!!!!!!!!…

how do i intend points ??

Best Answer - Choson by Asker

you crapper intend points by responsive questions to people's queries.Like the artefact I am responsive you discourse and earning points.:)

Source(s):

There are currently no comments for this question.

Other Answers (3)

  • first provide answeres in fast after u crapper intend whatever points depending on your answeres u could acquire points by prizewinning answreres

    Source(s):

  • by responsive questions and if you intend the prizewinning respond you intend 10 points the more you respond the more points you get
  • By responsive questions and effort the prizewinning answers do itt in bulk

Whats an cushy WYSIWYG application to use?

Reader

Resolved Question

Whats an cushy WYSIWYG covering to use?

I proven First Page itt was likewise slow.

Best Answer - Choson by Asker

Hi Piggy, do you meet poverty the covering for employed with HTML?

If so, Expression Web is an up to fellow covering that's beatific for HTML.

There are currently no comments for this question.

Other Answers (2)

  • Too andante as in what, likewise andante to create solutions with the code or the scheme pages took likewise daylong to load?

    Second question, how such html and javascript ingest do you know?

    If its meet the covering that takes a patch to amend the solution, especially if its a hard noesis filled scheme site, don't be suprised.

    However if its the scheme site(s) that you create that takes forever to load, that's an supply of the noesis in your scheme tender needing to be optimized to turn weight time.

    There are whatever pre-made model clog when utilised likewise such crapper easily discontinue downbound scheme sites.


    I utilised to organisation and physique whatever scheme sites a some eld ago, today I hit no requirement for antiquity scheme sites currently. The exclusive tools I utilised was a book editor, Microsoft Frontpage, MS Paint, and an protocol application.
  • adobe dreamweaver

    Source(s):

Tuesday, October 13, 2009

What is added beatific section be sides avg?

Reader

Resolved Question

What is added beatific section be sides avg?

i hit vista in the terminal 3or 4 period avg been gift me trouble
when i re move my machine itt turns soured and i crapper not invoke itt backwards on so i requirement to go a nous and intend added beatific liberated section
what do you declare thanks

Best Answer - Choson by Asker

Avira and avast are the prizewinning liberated ones. avg liberated does not hit stem outfit protection.. beatific to retrograde itt .

There are currently no comments for this question.

Other Answers (4)

  • AVG sucks. I ingest Norton cyberspace Security 2010 and Outpost Security Suite Pro 2009. You don't hit to clear for them if you go to thepiratebay.org and download them or you crapper meet go to their websites and download the TRAIL PERIODS. I hit not stipendiary for Norton or Outpost in 4 years. Honestly, stipendiary Norton $70 a assemblage is a jape and something that I module never hit to do again.

    *****ALSO, Vista is a horrible O/S. Upgrade to Windows 7. I hit itt and its a aggregation better...also, didn't hit to clear for it.
  • Three Excellent Free Antivirus Programs
    Only establish digit as instalment more than causes problems.
    Do not ingest AVG liberated as itt lacks rootkit endorsement itt is unacceptable

    Avira
    http://www.free-av.com/

    Avast
    http://www.avast.com/eng/download-avast-…

    Microsoft Security Essentials
    New, looks rattling beatific in analyse beneath and uses rattling lowercase RAM.
    http://www.microsoft.com/SECURITY_ESSENT…

    Microsoft Security Essentials Review
    http://www.youtube.com/watch?v=qD1WfImw9…
    =========================
    Install and weekly or so, update and separate a flooded scan:

    Malwarebytes' Anti-Malware liberated version
    http://www.malwarebytes.org/mbam.php

    SUPERAntiSpyware Free Edition
    http://www.superantispyware.com/superant…
    =========================
    Alerts you if you meet a chanceful scheme site. Install one.

    McAfee Site Advisor (free)
    http://www.siteadvisor.com/

    Web of Trust (WOT) (free)
    http://www.mywot.com/
    ====================
    Make trusty your Widows code is up to date. Run "Windows Update" weekly. This is extremely important!

    Make trusty you raise itt IE8 and enable the "SmartScreen Filter".. For section I favour Firefox with Adblock Plus and NoScript add-ons.
    ==========================
    If you poverty to be 100% innocuous from malware patch aquatics the scheme establish Sandboxie. If module automatically ordered up to ingest your choice browser. Per Sandboxie "Sandboxie runs your programs in an unaccompanied expanse which prevents them from making imperishable changes to another programs and accumulation in your computer. " You crapper correct utter on some information picture to separate itt in Sandboxie,

    In Sandbox settings:
    Sandbox Settings > Delete > Invocations > Check "automatically withdraw table of sandbox"
    (see recording below)

    Sandboxie (free)
    http://www.sandboxie.com/

    Video of Sandboxie. Installation and use, (Part 1 of 3 parts)
    http://www.youtube.com/watch?v=GueXMq-Vy…

    Source(s):

  • nod32
  • tied for prototypal place: avira and avast

Burn DVD thru a wireless 802.11g LAN network, is itt possible?

Reader

Resolved Question

Burn DVD thru a wireless 802.11g LAN network, is itt possible?

now I undergo modify the 8x DVD sending rate(least 100mb/s?) is a aggregation faster than a 802.11g crapper substance (at 54mb/s).

but would itt be doable to defect itt at 4x? I rattling requirement to designate whatever accumulation on this lenovo thinkpad x200 (which has no optical drive) to DVDs, I hit a Acer laptop with a DVD burner, so i wanna ingest a ordinary wireless G meshwork to defect files from the x200 to DVD burner on Acer laptop.

can the meshwork appendage the volume?

Best Answer - Choson by Asker

It is not a beatific intent to defect CD's or DVD over an internet/network connection. If the internet unification goes discover for whatever reason, then the accumulation on the round module be corrupt and unusable. Also sending super amounts of accumulation over an internet unification at digit instance for this determine is not wise. The prizewinning artefact to defect CD's or DVD's is to ingest the digit that is on the machine instead of using digit soured of an meshwork connection. The prizewinning artefact to do this is to acquire a DVD burner that operates using a USB port. This the ultimate artefact to do this.

Source(s):

There are currently no comments for this question.

Other Answers (1)

  • It would definitely be POSSIBLE, though not needs the prizewinning option.
    Most recent executing code and element has the knowledge to disrupt executing patch buffers fill, eliminating the requirement for a stabilize accumulation stream.
    Even so, you would be meliorate soured conjunctive them via Ethernet either finished a switch, or direct using a elector cable.

Monday, October 12, 2009

How crapper i encounter Hi-speed USB opening from my presented usb opening on my PC?

Reader

Resolved Question

How crapper i encounter Hi-speed USB opening from my presented usb opening on my PC?

Best Answer - Choson by Asker

All backwards lateral opening are Hi pace that are actually famous as USB 2.0

There are currently no comments for this question.

Other Answers (2)

  • its not actually HI pace its meet USB 2.0 the 2.0s are commonly on the backwards of the PC on the I/O commission where the another plugs are :)

    slower usbs are commonly in the face of the computer
  • Well if you hit windows there module be a pane that pops up locution that you crapper attain that usb action faster so utter on that window. I wish this helps.

From where i crapper undergo every most Hardware on my PC?

Reader

Resolved Question

From where i crapper undergo every most Hardware on my PC?

Best Answer - Choson by Asker

Run > identify "gpedit.msc"> OK

then "Device Management"

There are currently no comments for this question.

Other Answers (5)

  • I wish this is what you are hunting for. In your move schedule utter on my computer, you should wager a incase that exhibit your grouping tasks. You crapper analyse the processor speed, the turn of installed memory, etc. When you utter on analyse grouping information, this module verify you to grouping properties and you module be healthy to analyse your machine hardware.
  • There are whatever rattling pleasant freeware programs that module provide you every the content most your hardware. Visit this unification at Softpedia for digit option, or google "system content utility."
    http://www.softpedia.com/get/System/Syst…
  • Go to my computer, correct click, then utter on properties, utter on hardware.
  • use code "cpu-z" or "everest"
  • Use code "CPU-Z"
    www.cpuid.com/cpuz.php

Sunday, October 11, 2009

I was wondering when module Lockerz actually be launched?

Reader

Resolved Question

I was wondering when module Lockerz actually be launched?

I undergo the beta has been launched but when module the place same be launched

Best Answer - Choson by Asker

Kathy Savitt of Lockerz has said that after a hebdomad or so of the incoming restock on Oct 15, Lockerz module start their place with 11+ newborn structure to acquire PTZ. Hope this helps :).

Source(s):

There are currently no comments for this question.

Other Answers (0)

No another answers.

Using qualifying references in Excel ?

Reader

Resolved Question

Using qualifying references in Excel ?

Best Answer - Choson by Asker

Relative radiophone meaning effectuation that as a instruction or duty is derived and affixed to another cells, the radiophone references in the instruction or duty modify to emit the function's newborn location.
This recording module support you see
http://www.free-training-tutorial.com/an…
or you could ingest this tutorial
http://www.symplebyte.com/microsoft_offi…

There are currently no comments for this question.

Other Answers (1)

  • using hyperelink to ur unification in excel

How crapper i intend my dreamweaver place online so grouping crapper go on itt for free(like scheme hosting)?

Reader

Resolved Question

How crapper i intend my dreamweaver place online so grouping crapper go on itt for free(like scheme hosting)?

i rattling requirement to undergo so if some digit could support that would be great...

Best Answer - Choson by Asker

If you are hunting to patron your webpage from your machine so that grouping from the right concern crapper enter to it, and you hit Windows XP Pro, you crapper study this tutorial:

http://www.webwizguide.com/kb/asp_tutorials/installing_iis_winXP_pro.asp

NOTE: Access to this place is restricted to the upload pace of your internet connection.

You crapper goto www.whatismyip.com and provide grouping the IP to your machine and they crapper enter to itt using the IP (ie http://209.85.225.105)

Then you crapper also ingest a assist same www.dyndns.com to intend a liberated hostname for your ip same www.mywebsite.dyndns.com

If you are behindhand a router, you module requirement to ordered up opening forwarding: www.portforward.com

There are currently no comments for this question.

Other Answers (0)

No another answers.

 

Blogroll

Site Info

Text

computev9 Copyright © 2009 WoodMag is Designed by Ipietoon for Free Blogger Template