I am looking for a tutorial or documentation on how to overlay direct3d on top of a video (webcam) feed in directshow.
I am writing c++ using visual studio 2008.
Hi,
I've been developing application for Iphone and now I want to try to create appplication like social bookmarking but I didn't really find any help on the net.
I will have a create a login/pass, retrieve data and display them.
So I want to know what do I have to use to implement all of that for any social bookmarking website.
If you have suggestion, idea, tutorial, you are welcome.
thanks,
Hi all
I am fairly new to core data technology and i searched a lot on how to add the database to a core data application.so can anybody guide me on how to integrate the database layer? i have seen the iphone tutorial on core data (i.e books example) but i am not able to understand how to .sqlite file has been included in that application
I am developing a flex java - spring web app and have set up the business logic using hibernate.
I want to maintain sessions so that when the user logs in , i can track the logged in user to display information that is related to the username.
I want to do this using spring if possible and wondered if anyone could redirect me to a tutorial or even explain the method to which this is achieved , or if it is hard to achieve.
Thanks
Chris
I have a MVC website and it had a searchbox with autocomplete, now I changed the layout using bootstrap. But now the autocomplete isn't been shown correctly anymore. See the picture the suggestions are not shown right.
the autocomplete goes through the text. I was fine before I used bootstrap.
I am using a SQL server to get the data and this is js file (I'm not good at ajax, i took it from a tutorial I followed)
$(function () {
var ajaxFormSubmit = function () {
var $form = $(this);
var options = {
url: $form.attr("action"),
type: $form.attr("method"),
data: $form.serialize()
};
$.ajax(options).done(function (data) {
var $target = $($form.attr("data-aptitude-target"));
var $newHtml = $(data);
$target.replaceWith($newHtml);
$newHtml.show("slide", 200);
});
return false;
};
var submitAutocompleteForm = function (event, ui) {
var $input = $(this);
$input.val(ui.item.label);
var $form = $input.parents("form:first");
$form.submit();
};
var createAutocomplete = function () {
var $input = $(this);
var options = {
source: $input.attr("data-aptitude-autocomplete"),
select: submitAutocompleteForm
};
$input.autocomplete(options);
};
$("form[data-aptituder-ajax='true']").submit(ajaxFormSubmit);
$("input[data-aptitude-autocomplete]").each(createAutocomplete);
});
this is the form in my view
<form method="get" action="@Url.Action("Index")"
data-aptitude-ajax="true" data-aptitude-target="#testList">
<input type="search" name="searchTerm" data-aptitude-autocomplete="@Url.Action("Autocomplete")" />
<input type="submit" value=Search />
And this is part of the controller of the view
public ActionResult Autocomplete(string term)
{
var model = db.tests
.Where(r => term == null || r.name.Contains(term))
.Select(r => new
{
label = r.name
});
return Json(model, JsonRequestBehavior.AllowGet);
}
//
// GET: /Test/
public ActionResult Index(string searchTerm = null)
{
var model = db.tests
.Where(r => searchTerm == null || r.name.StartsWith(searchTerm));
if (Request.IsAjaxRequest())
{
return PartialView("_Test", model);
}
return View(model);
}
I'm new to ajax as well as bootstrap 3.
I got the searchfunction and autocomplete from a tutorial I followed.
Anybody any idea on how to fix this, because it worked fine?
Thanks in advance!
Any one know of a tutorial or library or something that i could use to help me accomplish rendering a X-Y GRAPH for performance data or just data in general.
My goal is to have a final result looking something similar to
This Chart rendered by RRD.
I basicly want to write a small packet sniffer in perl im using ubuntu 9 im basically looking to sniff all packets on my nic and return data such as source and destination address as well as the data i looked into Net::Write::Layer2 but i could never get it to run as it says it cannot find the required libs and i cannot find the dependents adn that lib is for writeing data and not accepting it ive read that i should use libpcap but no good examples are available i basicly just need to know what lib i should use and ill find a example/tutorial on using said lib
Thanks in Advance
C:net start svnserver
System error 2 has occurred.
The system cannot find the file specified.
I tried following this tutorial
http://www.codinghorror.com/blog/2008/04/setting-up-subversion-on-windows.html
Actually, the title explains it all...
I want to read a stream, but have no idea from where to start.
I've searched the web for some documentation/tutorial/whatever with no luck.
Any help using this lib would be very appreciated.
i'm developing an application for content filtering. i'll use it as web service but my problem is that i hadn't developed any extension for firefox or ie before. i read some about firefox extensions and now i know a little about it.
firstly can i use web service in a firefox/ie extension? if yes, can you give me a link of tutorial or sth like that?
all suggestions are welcome.
thx..
How can i have slide downeffect? The effect will be similar with search function on google map of android. When we click the search option from option menu, the softkeyboard will slide up and the search bar will slide down automatically.
Anyone provide any hint or any tutorial about this, or proper keyword i can search
Hi all, are there anyone hear about APE (Ajax Push Engine) before ? I'm building Rails application and trying to create group chat with this APE realtime engine, the problem is how to make Rails communicate with APE Server ? Are there any tutorial or reference on working APE with Rails ?
Hi folks
Can someone redirect me to your own blog link or any other link explaining complete tutorial about how to implement gridview custom paging using stored procedure?
My search in google giving me old articles from year 2006. Right now I am using asp.net 3.5 and c#.
Hello all,
In my current application I want to show a songs list in table view which is pretty easy but on selection of one of the songs it should be played in media player .
How can I do so .
Provide me if anyone have good tutorial or example link
I would like to design a PvP game uses flash in client and java socket server, but I do need server validates trajectory and if bullets hit target from cheating.
Is there any tutorial or paper provides how to do this ?
I followed the instructions here:
https://www.windowsazure.com/en-us/develop/python/tutorials/django-with-visual-studio/
However, whenever I try to open the url to my web app in the cloud I get a 500 error.
The tutorial doesn't mention setting up the TEMPLATE_DIRS setting in the django application or doing any work on the cloud service machine to install python/django. Could these be the problem?
I have an xsd (for basecamp xml) that contains
<xsd:complexType name="ProjectType">
<xsd:sequence>
<xsd:element name="announcement"
type="TypedNilableStringElementType"
maxOccurs="1" minOccurs="1">
</xsd:element>
<xsd:element name="created-on"
type="TypedDateElementType" maxOccurs="1"
minOccurs="1">
</xsd:element>
<xsd:element name="id"
type="TypedIntegerElementType" maxOccurs="1"
minOccurs="1">
</xsd:element>
<xsd:element name="last-changed-on"
type="TypedDateTimeElementType" maxOccurs="1"
minOccurs="1">
</xsd:element>
<xsd:element name="name" type="xsd:string" maxOccurs="1"
minOccurs="1">
</xsd:element>
<xsd:element name="show-announcement"
type="TypedBooleanElementType" maxOccurs="1"
minOccurs="1">
</xsd:element>
<xsd:element name="show-writeboards"
type="TypedBooleanElementType" maxOccurs="1"
minOccurs="1">
</xsd:element>
<xsd:element name="start-page" type="xsd:string"
maxOccurs="1" minOccurs="1">
</xsd:element>
<xsd:element name="status" type="xsd:string" maxOccurs="1"
minOccurs="1">
</xsd:element>
<xsd:element name="company"
type="SimpleCompanyType" maxOccurs="1" minOccurs="1">
</xsd:element>
</xsd:sequence>
</xsd:complexType>
and
<xsd:element name="project" type="ProjectType">
</xsd:element>
I'm looking at http://java.sun.com/javaee/5/docs/tutorial/doc/bnbah.html and can't understand what I'm doing different from the sample schema in Table 17-13 where there is an element named purchaseOrder of type PurchaseOrderType. According to the tutorial, running xjc on the schema, one will get PurchaseOrder.java interface and PurchaseOrderType.java interface. When I run xjc on my schema I only get a ProjectType.java class, and when the xml actually consist of a single element, this won't parse, because there are no Project.java class/interface to match.
Hey
is there any way to send whats in a text view (im trying to make a suggestion box) to my email address?
example
user types in the box " I think you should add twitter support"
then that is sent in the background to my email address [email protected]
then a message is popped up on the screen saying "suggestion sent"
just an example of what i mean
Any ideas, tutorial links would be greatly appreciated guys
Thanks
I have the following Transact SQL query using a union.
I need some pointers as to how this would look in LINQ i.e some examples
wouldbe nice or if anyone can recommend a good tutorial on UNIONS in linq.
select top 10 Barcode, sum(ItemDiscountUnion.AmountTaken) from
(SELECT d.Barcode,SUM(AmountTaken) AmountTaken
FROM [Aggregation].[dbo].[DiscountPromotion] d
GROUP BY d.Barcode
UNION ALL
SELECT i.Barcode,SUM(AmountTaken) AmountTaken
FROM [Aggregation].[dbo].ItemSaleTransaction i
group by i.Barcode) ItemDiscountUnion
group by Barcode
Ive seen tutorials after tutorials but i still dont get how to connect a database to my xcode.. i already put it in my reference, put the sqlite framework but still it doesnt work.. i even tried copying the whole code the tutorial offers but still my iphone simulator turns up blank.. can you please help me understand why?
Is there any good tutorial or example to build a Twitter client using popup and oauth for login (Ex: http://twitgoo.com/)
Also once the user logs in, the new tweets showed without any page refresh and also the ability to post a tweet without page refresh.
If there is no good example, please suggest the API or libraries i need or any general suggestion.
Hi guys, I am making a image editor kinda for own enjoyment and was wondering how could I make a undo button to undo the last paints I did? I want to know how I would about this, a tutorial or sample code would be nice or at least something pointing me in the right direction.
Thanks!
Theres a firefox add on i would like to edit. I never made a plugin before and have looked at one before. Is there a tutorial or something on how to -edit- one? I do not know how to test the add on and ext
I've written software on Linux since 1995 but must get up to speed with app development on the Mac. I have no experience on that platform. Obviously I should get my hands on some appropriate hardware. What are good books, tutorial websites, and other resources for experienced devs getting started on Mac? Not just APIs and app internals, but also including how does one install an app, debug it, etc?
Hi all,
I am new to jsp.I have a basic knowledge about Core java and i need to get expertise in jsp too.So please give me a jsp tutorial for beginers
Thanks
Tony