Polls A USB Controller For Changes Using DirectInput?

Jun 4, 2010

I've been working with code that polls a USB controller for changes using DirectInput, however I would much prefer I could make it event-driven instead (to cut CPU usage). Does anyone know if there is some method of doing this with DirectInput? I can provide the code upon request.

View 1 Replies


ADVERTISEMENT

Writing That Polls Machines Every 40ms And Depending On The Result Of The Poll Sometype Of Action Is Taken?

Jan 13, 2012

I have an application that i am writing that polls machines every 40ms and depending on the result of the poll sometype of action is taken. i have each machine that is polled run in a separte thread. this all works fine.

what i want to add to it is to use a timer and either on a tick or elapsed time fire inside of each thread at lets say a 1 minute interval to update a file with stats about each thread and the machine it is connect to. for example below if a start polling 3 machines on com1 2 and 3 and poll them. machine 1 may have 102 copies machine 2 200 copies and machine 3 400 copies. i want a timer theat ticks every 1 minute that will fire within each thread and record those results

[Code]...

View 2 Replies

Can't Get Joystick To Work With DirectInput?

Aug 23, 2009

I've been using DirectX SDK libraries (Specificaly DirectInput) to use a joystick with an desktop program, but I haven't been able to make the program get the input form the joystick (X and Y Axis). This is the code I'm using on Main Form:

[Code]...

View 4 Replies

DirectInput Axis And Button

Nov 2, 2009

Ok, so I am attempting to try my hand in directinput, I got the code up and running within VB.net, it recognizes the controller and almost all buttons work, but for some reason 2 or 3 of the axis do not work on each controller.I have tried this with an xbox360 wireless controller and a Logitech wired controller (ps2 style) they both show the correct amount of axis on each controller, but do not work correctly.[code]I have looked everywhere for my problem, but the issue is, I am not exactly sure what the problem is to search for.if anyone also knows how to access the "X" (power) button on the xbox controller, that would be awesome as well, because I want it to interact with my program!and if you don't have a wireless receiver a wired one is exactly the same...

View 2 Replies

Emulate Mouseclick When Directinput?

Jul 27, 2009

How to emulate a mouse click with directinput?

like ive been searching for this for hours and can't find anything decent for VB 2008

View 1 Replies

Getting Two Game Devices Working With DirectInput?

Nov 9, 2009

Getting two game devices working with DirectInput

View 2 Replies

Source Code With The DirectInput Code ?

Jul 14, 2010

A source code with the DirectInput code and yes i have been googling it and couldn't find one for vbnet yah that would be great to have it just Namespace blah blah function blah blah and this is how u use Directinput("0") or sumthn like that

View 10 Replies

Asp.net Mvc - Get JsonResult From Another Controller?

Jul 29, 2011

I would like to get JSON result from another Controller and pass it back to client,here is the scenario:

using JQuery Client request for JSON from Controller A -->

Controller A pass parameter to Controller B and get's

JsonResult --> Controller A pass JSON back to Client.

What is the best way to approach this scenario??

View 2 Replies

Donwloading From A Controller Using FTP

Jul 9, 2010

I have a blackbox (with a crude ftp server on it) which has an IP address, a file on it, a username and a password. I have a PC logged on to the local network and I want to write a VB.net program that sits on the PC and when the file is created it downloads that file. from the laptop I can type ftp:192.168.43.34 in to windows explorer and see the file without having to type in a username or password (username is set to Anonymous)I require a simple program that just points to the file (ftp:192.168.23.12/banjo.txt) and grabs it to a local path (C:\banjo.txt)I have looked everywhere and not found anything that works and not interested in paying $500 for a library.

View 4 Replies

Use A URL Without Controller's Function's Name In ASP NET MVC?

Aug 3, 2009

The default code that VS generates for HomeController is[code]...

Consequently, I was wondering if the "GET " blob of text actually does anything and if it is possible to fiddle with URLs without diving into the ASAX file.

View 4 Replies

Call Pylons Controller From .net?

Oct 8, 2009

i have a application thats writen with the pylons framework. Now i want to call some controllers from a vb.net application. How should i do this? I've tried it like this:

Dim webclient As New WebClient
Dim dataStream As IO.Stream = webclient.OpenRead("http://192.168.0.20:5000/controller/default")
Dim reader As New StreamReader(dataStream)
Dim responseFromServer As String = reader.ReadToEnd()

[code]....

But instead of an json object that is generate by the pylons controller, i'll get the html code for the page which is reachable under "http://192.168.0.20:5000"

View 2 Replies

Controller Cannot Find View

Jun 13, 2012

I made a project where I have a basic DemoController[code]...

I should probably mention that my .aspx file is in another project than the web app. I build everything into a dll then put that into a folder in my web app project. The error I am getting is "The view '~/Views/Demo/Index.aspx' or its master was not found or no view engine supports the searched locations. The following locations were searched: ~/Views/Demo/Index.aspx"

View 3 Replies

Generate URL Inside A Controller In ASP.NET MVC?

Feb 2, 2010

Is there a way to generate URL inside a controller? I want to do the following inside a controller instead of a view.

<% =Url.Action("Validate", "Home", New With {.ValidID = ID})%>

View 2 Replies

Overload Of Actions In The Controller?

Mar 12, 2012

I'd like to do a kind of overload of the actions in the controller.

Is it possible? 'Cause I havn't found any info about it. And when I tryed, I got this error.

The current request for action 'Create' on controller type 'InterviewController' is >ambiguous between the following action methods:
System.Web.Mvc.ViewResult Create() on type

[Code]....

I've tryed few things to get what I wanted. The last one was to copy what was done in the "Edit" action, but for an empty rank. (so I created an empty rank in my DB). I don't think it was a good idea (imagine someone wants to update the DB where idOpportunite = 5...)

View 1 Replies

Pass Value From View To Controller?

Apr 5, 2012

I'm looking to pass the value selected in the drop box when I click submit. Instead, it's passing a null value and I'm confused as to why.[code]...

View 2 Replies

Using A Ribbon Control As Tab Controller

Oct 12, 2010

I have an application that has multiple UI layouts, sometimes on tabs, sometimes the occasional separate form.I recently bought a pack of UI elements, and I'd like to use a ribbon control as the main navigation. For the most part I want the tabs on the ribbon to function like your everyday tabcontrol. The problem is that the ribbon tabs don't each have their own page for you to lay out your controls like the normal tabcontrol does.So right now I have the ribbon control at the top of an MDI form, and instead of using multiple tab pages I have many borderless forms, and when I click on a tab of the ribbon, I maximize the appropriate form and bring it to the front. This creates the illusion of tab pages by eliminating the control boxes of the child forms.

View 3 Replies

Empty Form Received By The Controller?

May 15, 2012

I don't know what I've done bad, or what could have caused this bug : when I submit this form to the controller, the controller receives 2 empty fields here is the form inside the view :

@Using Html.BeginForm("contactSearch", "search", FormMethod.Post)
@Html.TextBox("SearchString")
@Html.DropDownList("opportunite", "Choisissez une opportunité")
@<input type="submit" value="Submit!" />
End Using

[Code]...

View 2 Replies

Looking For A .net Framework Class To Use A Game Controller?

Jul 11, 2009

I would like to use a Logitech wireless game controller. I imagine such a custom control already exists as a VB 2008 .net class library. I've tried to search MSDN but can't find anything.

View 1 Replies

MVC (Model-View-Controller) Implementation In .NET?

Apr 26, 2009

I am wondering what I am missing in the attached code that is making it impossible for me to make the VB.NET program below work using MVC (Model-View-Controller). Right now, I am really lost despite my best efforts...

I am trying to implement the observer pattern and think that my code is getting closer to MVC but not quite there yet, firstly because it wont even run ... nevertheless I know that there is someone out there who knows what I am doing wrong and I would definitely benefit from any guidance or help that someone more experienced in MVC VB.NET implementation can give .. hence this letter.

[Code]...

View 6 Replies

Send Data To USB Controller Device?

May 27, 2012

I know how to send data to com or virtual usb-com if it has physical com port number listed under "Ports (COM&LPT)" tab in the Windows device manager

' sending to device with physical COM port number"
Try
Dim searcher As New ManagementObjectSearcher( _

[Code]...

But how to send data to the device listed in "Universal Serial Bus Controllers" tab without any physical COM port number?

View 8 Replies

VS 2010 MVC: Replace The Controller For A View?

Nov 4, 2010

I have built an application a while back and now think that performance would benefit from a MVC approach, so I am looking into that. If I were going to do this, I would need the controller to be able to replace itself. That seemed like it may be a problem, so I created a Hello World application to test it. Here's the

Form1.vb:
Public Interface IView
Property Controller As a_Controller

[Code]....

I have 2 questions:Will the 'old' controller objects still be in memory? Seems this could be a serious memory management issue after a lot of changes. It was my own decision to implement the factory in a module. My examples did not do this.

View 5 Replies

Webbrowser - Make Tap Controller As Web Browser?

Mar 14, 2010

i know how to make it but i want to know how to make tap controller as web browser.

View 6 Replies

Access Usb Playstation Controller Buttons And Controls?

Jan 23, 2012

I have a PlayStation USB controller and want to discover how to test the buttons and controls on the device from vb.net. Is there documentation anywhere on how to get info from a usb controller? I'm not even sure which department or category this falls

View 5 Replies

Asp.net - .NET: Accessing Static MVC Controller Method From View?

Mar 16, 2011

I've got an .aspx page with this in it:

<%@ Import Namespace="System.Web.Mvc" %>
<%= AssetController.ScriptTag("/js/Community/CommunityWizard.js")%>

And I have an AssetController class:
Imports System.Web.Mvc
Public Class AssetController
Inherits Controller

[Code]...

What gives? I don't understand why I can use this controller everywhere in our ASP.NET Forms/MVC hybrid application, but not in a view.

EDIT: In fact, when I type <% System.Web. into the .aspx view, Mvc doesn't even appear in Intellisense!

View 2 Replies

C# - MVC: Returning Multiple Rows Of Data To Controller?

Apr 23, 2012

I have a table with several rows of data that I need to return to the controller. In my view, I initially load the table by selection of a time period and clicking a button. The table loads all my relevant records but one of my table cells contains a dropdown list. So I should be able make a selection in the dropdown click "update" and my controller saves the changes.

So everything works until I try and save. The model that is sent to the controller is completely null. The list property I have tied to the table cells returns to the controller null.

[Code]...

NOTE: This is written in VB.NET but C# help is welcome. I am familiar with both languages in MVC.

View 3 Replies

Connect Micro Controller To Internet Via VB Application?

May 29, 2012

i m currently working on application that has to monitor temperature and humidity of a particular place and constantly report the same to the user over internet. So far, I m using LPC1768 and its ethernet module collect the data, process it and send it to the router. On the other side, i have a computer which is connected to the same router and running a VB application where the data is mined and reported in a excel.

This setup works just fine. Now, i want to monitor the same data over internet. How can i do the same?
Here i was able to connect to the micro-controller using the IP 192.168.1.100 port 80. I m aware that the IP is a local one and to access the micro controller from Internet there is another way.I have a IP based webcam which enables us to monitor from internet. How should i make micro-controller data be accessible from internet.(similar to IP Camera).

View 1 Replies

Controller Doesn't Receive All Parameters Within The Form?

Jul 28, 2011

In my MVC Web App I am running an ActionResult with the following signature: Public Function Create(ByVal article As Article_Ad) As ActionResult And in my ASPX page I have declared the following form which fields correspond to the model, which is strongly typed:

[Code]...

View 1 Replies

Make My Xbox 360 Controller Be Used As Kind Of A Mouse?

Oct 9, 2008

I want to be able to make my xbox 360 controller be used as kind of a mouse how can I do this?

View 2 Replies

Model Properties Not Set When Returning To Controller For Post

Sep 3, 2011

When I click save on the view, the model being sent to the save method of the controller has no values set, they're all default values. I'm actually using the exact same technique from another project... The data is populated just fine in my view, I can edit it and click save, the code enters the SetSiteTerms method in the controller but has none of the data from the view.

Model:
Imports System.ComponentModel.DataAnnotations
Imports System.Runtime.Serialization
<KnownType(GetType(SiteToA))> _
Public Class SiteToA
<ScaffoldColumn(False)> _
Public Property ID As Integer = 0
[Code] .....

I've updated my view and controller. Why my model is populated, can be editing in the view but when I post with the save button, the model sent to the controller has no data???

View 1 Replies

Passing Simple XML Data From A Controller To A View?

Jan 7, 2011

I am writing my first MVC application, and struggling with how best to pass data from my controllers to my views. I have a very simple XML document structured like this. (Yes, this is Magic: The Gathering data)

<setlist>
<set>
<name>Alara Reborn</name>
<block>Shards of Alara</block>
<cards>145</cards>

[Code]...

But I get an Object Block or With Block error when trying to access SelectSingleNode("block") on the second "set" node, since that node doesn't have a "block" node.I also have a feeling that the way I'm approaching the view is all wrong. Is there a better way to get this simple XML data into the view so I can work with it?

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved