Amit Pandey

Author


Will this pc custom build work?


.

http://www.amazon.co.uk/gp/product/B005FSHIVG/ref=ox_sc_act_title_3?ie=UTF8&m=A3P5ROKL5A1OLE   Asus P8Z68-V LX Motherboard (Socket 1155, DDR3, 2 x PCI Express 2.0 x16, ATX, LucidLogix Virtu)
http://www.novatech.co.uk/harvest/components/processors/intelcorei3,i5andi71155socket/bx80623i32120.html   2nd Generation Intel® Core™ i3 2120 3.3GHz Socket LGA1155 – Retail
http://www.amazon.co.uk/gp/product/B00433L23O/ref=ox_sc_act_title_1?ie=UTF8&m=A3P5ROKL5A1OLE   Kingston 1600MHz DDR3 Non ECC CL9 4GB Kit (2x 2GB) HyperX BLU DIMM Reminiscence Module
 
http://www.amazon.co.uk/gp/product/B004WYV8WY/ref=ox_sc_act_title_2?ie=UTF8&m=A3P5ROKL5A1OLE   Sapphire 11191-00-20G HD 6570 1GB DDR3 Graphics Card
 
https://www.aria.co.uk/SuperSpecials/450W+Cooler+Master+GX+80PLUS+Bronze+Power+Supply+?productId=46094   The Cooler Master GX Series of power supplies feature a single highly robust 12 V rail and high efficiency design that meets 80 Plus requirements.
 
http://www.novatech.co.uk/harvest/components/harddrives-internal/sata500gbto1tb/st500dm002.html   Seagate Barracuda 500GB 16MB Cache Hard Drive SATA 6GB/s 8.5ms 7200rpm – OEM
http://www.novatech.co.uk/harvest/components/opticaldrives/satadvdwriters/ad-7280s-0b.html  Sony AD-7280S-0B 24x DVD+/-RW SATA Black – OEM
http://www.amazon.co.uk/Microsoft-OEM-software-intended-builders/dp/B004Q0PT3I/ref=lh_ni_t   Microsoft Windows 7 Home Premium with Service Pack 1, 64-bit, English, 1 Pack, DSP OEI (PC) (This OEM software is intended for system builders only)
 
http://www.novatech.co.uk/harvest/components/cases/cases/nov-prowle.html   Novatech Prowler Midi Case V2

Best answer:

Know better? Leave your own answer in the comments!

Amit Pandey

Tagged with: buildcustomwork 

.

Im attracted in backyard and structure design and this piece of software would be very useful to me. Unfortunately, I cannot afford to buy the software from a store because Im a poor poor student. Delight Help. Cheers. :)

Best answer:

Answer by Angus
Sure dude, Go to Autodesk.com And register as a student. And then u can download all their software with a 3 year license. And when your 3 years are up just say u are still a student and they will give u 3 more years.

AutoCAD – for building Design
Maya – For 3D animation (used in ice age and used by pixar)
Inventor – used for prototyping parts and simulation.
3DS-MAX – for Very high detailed modeling

Excellent luck

Give your answer to this question not more than!

Amit Pandey

Tagged with: aidedcomputerdesigndownloadfreeprogramsoftwareversion. 

.

I work at a small store where recently an employee was making fake cash income. It was pretty obvious what she was up to, considering only 4 of us, including the administrator, work there. In response, the administrator chose to set up an obviously visible security camera system. This was fine, in anticipation of I learned that he can watch us from home by accessing a web service. The cameras are only on the storeroom floor, not in the stockroom/break room floor on the second level.

The next day he jokingly questioned if it felt like I was being watched, as I closed the store alone the night before. Naturally, this kinda creeped me out. I can see the necessity for reviewing footage if theft is suspected, but what if he decides to have a party, and my work shift becomes part of the entertainment?

Best answer:

Answer by catsamongpixies
This is really really common. It is completely legal and ethical as long as the cameras are not in bathrooms or changing rooms and if the employees are aware of it.
I work for a security company, the managers that have this feature basically only use it when an alarm goes off in the store.

What do you reflect? Answer not more than!

Amit Pandey

Tagged with: cameraethicalhe/sheHomeLivemanagersecuritystorewatch 

How do I know what ink I can buy for my printer?


.

Our dell printer is hooked up to our computer, we got the it years ago with the computer, so they’re both ancient. I’ve always just ordered ink off dells website, buy can i just go out and buy any kind of ink??

Best answer:

Answer by Sean John
No it has to be the ink for that brand printer

Add your own answer in the comments!

Amit Pandey

Tagged with: Printer 

SPWeb ProcessBatchData – DisplayPost method


.

The DisplayPost WSS RPC method is sorts of analogue of the SPWeb.ProcessBatchData method in that you can use it to do batches of the other RPC methods. It can be invoked by an HTML Post request against _vti_bin/owssvr.dll – in fact this is the hard setup for calling RPC methods as prescribed in MSDN – check here. This article describes how to make a small HTML page that sets several HTML form inputs, most notably a PostBody parameter that is intended to contain an XML with ows:Batch root and Method elements for various RPC methods.

So, at first glance by this method with ProcessBatchData doesn’t seem very reasonable – after all why would you want to add another level of indirection and call batches through the DisplayPost method instead of directly with ProcessBatchData. But still there’re two usages of the DisplayPost method that may be useful and I will describe them briefly.

The first treatment is nearly identical to the Show method (check my previous posting on that) – you specify the XMLDATA SetVar parameter and the method income the list data in XML format:

<ows:Batch OnError="Continue">

  <Method ID="0">

    <SetList>702f059d-71f2-4f78-a41a-48978d381948</SetList>

    <SetVar Name="View">{CE0FFB35-F6A9-4F57-B06C-374B2AA4571B}</SetVar>

    <SetVar Name="XMLDATA">TRUE</SetVar>

    <SetVar Name="Cmd">DisplayPost</SetVar>

  </Method>

</ows:Batch>

Note that the PostBody parameter is not used in this case. The View SetVar parameter is discretionary – if omitted the defaulting view of the list is used. Similarly to the Show method SetVar parameters like SortField, SortDir, FilterField1, FilterValue1, FilterField2, FilterValue2, RootFolder can be used for simple filtering and sorting. The Query SetVar parameter but doesn’t work with DisplayPost.

And the second treatment of the DisplayPost method which is much more fascinating:

<ows:Batch OnError="Continue">

  <Method ID="0">

    <SetVar Name="Cmd">DisplayPost</SetVar>

    <SetVar Name="PostBody">

      &lt;ows:XML&gt;

        &lt;SetList&gt;702f059d-71f2-4f78-a41a-48978d381948&lt;/SetList&gt;

        &lt;View&gt;

          &lt;ViewFields&gt;&lt;FieldRef Name=’ID’ /&gt;&lt;/ViewFields&gt;

          &lt;ViewBody&gt;&lt;Column Name=’ID’/&gt;&lt;HTML&gt;,&lt;/HTML&gt;&lt;/ViewBody&gt;

        &lt;/View&gt;

      &lt;/ows:XML&gt;

    </SetVar>

  </Method>

</ows:Batch>

And this is the unescaped XML fragment passed to the PostBody SetVar parameter:

<ows:XML>

  <SetList>702f059d-71f2-4f78-a41a-48978d381948</SetList>

  <View>

    <ViewFields><FieldRef Name=ID /></ViewFields>

    <ViewBody><Column Name=ID/><HTML>,</HTML></ViewBody>

  </View>

</ows:XML>

So, in the outer method classification we have just the method type – Cmd parameter and the PostBody one. The actual stuff is the XML contained in the PostBody SetVar parameter. As you see it contains an <ows:XML> root element – this is an ancient element from the times of the STS used for rendering. So instead of the traditional <ows:Batch> element we see that there is (still) support for other STS CAML “container” elements. At this top you may question yourself – can the <ows:XML> element be place directly into the batch string of the ProcessBatchData. Unfortunately this doesn’t work, so the indirection of the DisplayPost method is required here. And let’s have a look at the result that we have when executing this batch:

<Consequences>

  <Result ID="0" Code="0">

    1,2,3,391,392,444,445,446,447,448,449,450,451,452,453,454,

  </Result>

</Consequences>

So, what I really did was defining a custom list view (by standard View CAML) within the <ows:XML> element and managed to retrieve some list data with it. The View element placed in an <ows:XML> effectively forces the rendering of the view classification provided in it. You can also provide a fully blown view classification hackneyed from a SharePoint list machinate file and the method will return HTML that you see normally in ListView web parts. And you can construct a view classification with custom ViewBody, ViewFields and Query elements that can be used any for rendering purposes or for data retrieval. For data retrieval you will make perhaps a smaller classification with Query part and ViewBody enumerating the fields probably by some unique separator for which you know that it’s not contained in some of the values. For rendering purposes you can specify also custom ViewHeader, ViewFooter and ViewEmpty elements. If you want to render a standard view, you can provide an empty View element with just a Name attribute like this:

<View Name="{CE0FFB35-F6A9-4F57-B06C-374B2AA4571B}" />

Note the upper cased, curly braced view ID in the Name attribute.

And the conclusion about this method is – well … if you have a ability for CAML (may be gone soon – beware of SP 2010) you can use it for both rendering and data retrieving purposes. For the former – you can start with a standard view classification and introduce insignificant changes without the need of making custom list schemas (meaning making custom list templates). For the latter you can take advantage of the fact that you can get many result sets with one call by batches (any placing several DisplayPost methods in the ProcessBatchData batch or several View elements inside the <ows:XML> element in the PostBody) and that the result data will be just as small in size as you specify for its constructing in the ViewBody element as opposed to the produced XML-s or SPListItemCollection’s data if you use the trivial methods for list item data retrieval.

Check it out:Stefan Stanev’s SharePoint blog

Amit Pandey

 

Answers Rating

  • heebus_jeebus: First and most important! When uninstalling Norton, be sure to use the Norton Removal...  Thumb up 0
  • pauliogazzio: Antivirus: AVG, or Avast ….. Firewall: ZoneAlarm (Free version) …….....  Thumb up 0
  • Pat Mehgroin: Avast.  Thumb up 0
  • Jonathan: You will know a great deal already, given two decades of programming (if you did it anywhere...  Thumb up 0
  • doruletz1999: Computers are indeed getting smarter. Sadly people are getting...  Thumb up 0
© 2010 Computersplace.net