Software Development Network Logo
  • Windows Vista
  • Visual FoxPro
  • Smart Devicet
  • SharePoint Products
  • Game Technologies
  • .NET Development
  • Windows Forms
  • SQL Server
  • Visual Basic
  • Audio and Video
  • Visual Studio
  • IE Development
  • Visual C++
  • Visual C#
  • VS Team System

Software Development Network >> RyanB88's Q&A profile

RyanB88

Member List

Scott Allen - OdeToCode.com
Steve Bostedor
Dragan Jankovic
QuantumMischief
qrli
tuds47
Pinguino Girl
Somsong
realz
zerotri
RenoMike
Abualnassr
psc161
Dale17677
Musafir
leopord
BBBri
Keyboard Trampler
Wayne R
wyktor
Only Title

RyanB88's Q&A profile

  • Windows Search Technologies Syntax for from:name OR to:name ??

    At the moment, my most common search is to look for correspondence with a particular person or company, usually just before or during a telephone call.. The syntax I use is - from:name OR to:name from:company_name_in_email OR to:company_name_in_email Is there a shorter syntax to find all of the correspondence from one source <I know I can abbreviate names to the first few leading characters> If not then it would be useful if there was one short syntax command word that would do both from: & to: with the logical OR i.e. without having to type the string parameter for name twice Regards Graham ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Xbox 360 Headset

    Hello, i want to know if and when how, i can use the Head set for the Xbox 360 game i am developing. Any help would be greatly appriciated. i'm interested in this too. the key is if we get access to the actual headset audio stream if so, then we could wire those to commands in the game. granted, i'm pretty sure SAPI does not run on the 360, so you'd have to write your own custom speech recognition engine. something like this : http://www.brains-N-brawn.com/noReco/ for more advanced speech reco, i'd look into porting CMUs sphinx project. the latest version was written in Java. Thanks, casey ...Show All

  • Windows Forms Move to next control located in other tab

    Hi all, I have 2 tabs in the tab control. When I press Tab on the last control on tab1, how to move to next tab and appropriate control in the tab order similarly in reverse way with Shift+Tab. I want a generic way to implement for all screens. Thanks A good approach is to sub-class the TabControl class and implement your custom Tab handling with the ProcessCmdKey() method. Add a new class to your project and paste this code: using System; using System.Windows.Forms; class MyTabControl : TabControl { protected override bool ProcessCmdKey(ref Message msg, Keys keyData) { if (keyData == Keys.Tab && tabForward()) return true; if (keyData == (Keys.Tab | Keys.Shift) && tabBackward()) return true; return base. ...Show All

  • Visual Basic Can't run SnippetEditor.exe

    Hi I cannot seem to be able to run Snippet Editor. I have got the latest code from http://www.gotdotnet.com/workspaces/releases/viewuploads.aspx id=a927f4e7-8e7f-45ce-8b72-f3b9384a3eab I keep getting the aerror saying " Access to the path C:\System Volume Information is denied ". Below is the Exception Text See the end of this message for details on invoking just-in-time (JIT) debugging instead of this dialog box. ************** Exception Text ************** System.UnauthorizedAccessException: Access to the path 'C:\System Volume Information' is denied. at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) at System.IO.Directory.InternalGetFileDirectoryNames(String path, String userPathOrigin ...Show All

  • Software Development for Windows Vista My program Can't recieve packet on Vista

    i have developed a tool on WinXP. it broadcasts UDP packets, then another program recieves the packet and reponses some information. It works very well on XP, but doesn't work on Vista. i capture packets using ethereal, i see the response packets, but my program can't recieve it. Then i disable the Vista Firewall, it also can't work. Last i enable the firewall, and add a rule to allow inbound connection, no use. can anybody what's the problem Thanks! Check this out: Windows Vista cannot obtain an IP address from certain routers or from certain non-Microsoft DHCP servers http://support.microsoft.com/kb/928233 ? You connect a Windows Vista-based computer to a network. ? A router or other device t ...Show All

  • Visual Studio Project Subtype

    I have already created a new Project Type to be integrated into the VS Solution Explorer. and it is working well The VS Package for the Project I have developed is in unmanaged code using COM. Would it be possible to extend a VC# or VB project with the functionality I have acheived with the new Project type I have created. I have read about Project subtypes. My question is if I enable my project package to support IVsAggregatableProject and IVsAggregatableProjectFactory, can I aggregate it with a VC# or a VB project. Can all the commands and functionality from my project be integrated. Hi Geogy, Unfortunately this approach will not work. You cannot cast or retrieve the underlying C++ struct ...Show All

  • Smart Device Development GenerateMember always true

    When I try to change the GenerateMember property of any control in a form of my C# Smart Device Application project to false, the member is removed from the Form1.Designer.cs file, but if I reopen the from after and check the property GenerateMember, it's set to true again. More than that, if I try to change the GenerateMember of property of another control in the same form, the member of the other control reappear. This problem make the GenerateMember totally useless. I checked this in a C# Windows Application project and it's working correctly. This is very sad because the GenerateMember property is mostly useful in Compact Framework projects because this save precious memory. Thanks in advance for helping me on this. ...Show All

  • Visual C# Displaying an Image in a Picture Box on a Windows Applacation

    I am trying to make a basic windows application which on the click of a button displays an image in a picture box. The code that I have found earlier in the forum seams to show the code should be similar to the code I have below; (From http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=4269&SiteID=1 , Re: Displaying images on a form using code Thread Starter: Mike F Started: 26 Apr 2005 4:03 AM UTC Replies: 6 ) using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace Image_Display { public partial class Form1 : Form { public Form1() { Initiali ...Show All

  • Windows Forms TabControl always disturbed by custom control in same project?

    Hi, Using Visual Studio pro 2005, C#. I thought to have discovered a nice IDE feature: Step 1: create a basic windows application. Step 2: add a class to the project. Step 3: have this class derived from System.Windows.Forms.Panel (this is the only manual change you do). The class looks like this: namespace WindowsApplication1 { class Class1 : System.Windows.Forms. Panel { } } That's all. After "Build solution" a new tab appears In the ToolBox called "WindowsApplication1 Components". Great, because now I can drag and drop my on-the-fly control like all other controls. However: Step 4: dragdrop a "Class1" control onto your form (no problem there). Step 5: dragdrop a TabControl onto yo ...Show All

  • Windows Forms How to create custom Datagridview ListBox (Multi Row) control

    Hi all, I would like to create the datagridview listbox control. My requirement is that I want multi rows in single cell. So I think I should use Listbox control for that reason. I don't need any editing experiences for that control. I just need to bind it to datasource and display. That's all I want. So I want to know the simplest way. I want to show all the data at once. It means, if I have three rows in one listbox control, for example, "aaa","bbb","ccc". I want to show all. I mean I want to set the Height of that control equal to height of number of rows.  I've already seen the two examples, Up Down numeric and radio button control. But they are more complicated than I need  and different, I think, to my control. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. 10 things to do while waiting for XNA Game Studio Express

    1. Read every single blog and forum post trying to find something new about it 2. Refresh your emails every 20 seconds hoping for a new mail from Microsoft 3. Stare at the wall 4. Make Content for your to be games ( lots and lots of content) 5. Design a game that will soon be forgotten about when the download is ready 6. Run to the fridge and stock up on supplies for when you start your game making 7. Make some more content ( there is no such thing as too much) 8. Read a book ( Book ) 9. Think about how awsome this is going to be 10. refresh your email again If all else fails repeat step 3 until step 2 is sucessful 16. Write game code so you can just plug it into your GSE p ...Show All

  • Visual Basic baby lock

    Hi, i got a couple of questions according to how to disable things in win xp: I'd like to disable the net connection on xp - how can i do that how can i disable installing any program disabling themes disable running several programs disable access to several folders I'd like to write a baby-lock onto my computer because i'm not the only person who uses it, and i don't want to allow others to get full control on my pc. i am working with vb2005. Any feedback is appreciated, thnx Attila And using the in-built stuff is normally much simpler than writing code to "reinvent the wheel" Windows Vista has much more parental controls than XP. So I'd hate to see you spend a lot of time writing some ...Show All

  • Windows Forms SelectedNodeChanged

    I cannot find this event in properties for TreeView but it is in Help You are probably seeing help of Web TreeView control, SelectedNodeChanged is not available in Windows version of TreeView, There are other events instead that you can use to detect the same behavior, like AfterSelect etc.. Best regards, Rizwan ...Show All

  • Software Development for Windows Vista Absolute Path to Namespace Extension GUID Path?

    Does anyone know of a way to convert a string (or PIDL for that matter) corresponding to an absolute path to a string containing a path based off of a namespace extension GUID So instead of storing a path like so.... C:\Documents and Settings\skirk\My Documents\SomeDocument.doc I'd instead store it like so... ::{450D8FBA-AD25-11D0-98A8-0800361B1103}\SomeDocument.doc I would really like to be able to store references to GUID paths for all the namespace extensions available to a particular user and not just the user's documents folder. Any thoughts -Shane Hmmm. There aren't that many shell extensions that use GUIDs as a naming convention that you could also store a file path to. My Documents is pro ...Show All

  • Visual Studio 2008 (Pre-release) Accessing a WCF service from a ASP.Net Web application

    We have used web services before and are trying to migrate to WCF. I am trying to use an ASP.Net application to communicate with a WCF service using a hello world example. I am able to reference the WCF service in my client. But when I invoke the WCF service, it gives me a the foll error: Exception: The request failed with HTTP status 415: Cannot process the message because the content type 'application/soap+xml; charset=utf-8; action="http://tempuri.org/IMyService/MyOperation1"' was not the expected type 'text/xml; charset=utf-8'.. I tried to consume the same service using a windows app and did not have any problems. Is there some configuration i am missing Can somebody give me an example of how to achieve Thanks in advance, Abhishe ...Show All

©2008 Software Development Network