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

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

ccg420104

Member List

Alcide
Lamon
Wildfire10
Here2Play
Rick_Berg
Jon Braganza
Deepu_a
JWTK
dragoncells
Match Brace
PerPixel
Kenny1815
software_writer_nyc
alexmy5
DMAR330
Pablo Orte
sandsdad
László Nánássy
IIM
HowardRichards
Only Title

ccg420104's Q&A profile

  • Windows Live Developer Forums WLM buddy

    great job on this IM client, the design, the features, everything, except one thing: when you right click the WLM buddy near computers watch, the context menu shows: ___________________________ Open MSN Messenger Exit so... why is that still there if i've been hearing that this is a revolucionary IM client blablabla... keep the great work The purpose of this forum is to discuss MSN and Windows Live application development using the Messenger Activity API, and Windows Live Bots. If you have technical support questions about using MSN Messenger or Windows Live Messenger, please check the following resources... Messenger Technical Support is available on the Messenger newsgroup: http://support.microsoft.com/newsgroups/ dg=micr ...Show All

  • Internet Explorer Development IE Interop

    Hi, I've been trying to write a Custom Download Manager for IE using C#. I've found some information here: http://msdn.microsoft.com/library/default.asp url=/workshop/browser/ext/overview/downloadmgr.asp , but I can't figure out what CLSID I should refer to my managed library as, or if I need to register it or something. I don't have any experience in working with COM, so using a hybrid solution could be difficult for me. All suggestions are welcome. Reuben. Thanks for replying. I implemented it like this:  using System; using System.Collections.Generic; using System.Text; using System.Runtime.InteropServices; using System.Runtime.InteropServices.ComTypes; namespace IE_Interop ...Show All

  • Visual Basic Getting Started

    Hello, Any referrals to good sources of in-depth tutorials on the web for Visual Basic Studio 2005 would be highly appreciated. Anyone have a book they prefer Not a reference manual but a teaching oriented type of book. I'd like most to learn graphics, presentations, and game programming in this language. Then, see what happens, maybe move up to java or C++. Although I've some familiarity with the old commodore/apple iie basic, this is a whole new ball game and I'm new to it. Trying to learn DarkBASIC PROFESSIONAL at the same time. Any comments Tips Suggestions Many Thanks, H.D.R. Stoic-Power@canada.com "Visual Basic 2005 The Language" is a really good place to start. http://www.ama ...Show All

  • Visual Studio Express Editions procedure return

    am i right in saying that when you call a sub it will execute the instruction then go back to the point form where it was called. Yes, You can verify this by creating a simple example, putting a breakpoint before the call and then debugging the application. When you hit the breakpoint - step though the code one line at a time to watch program execution. Normally Pressing F11 will step through one line at a time. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Spectrum Analyzer for Real time Audio. - Solution

    I have a directX application which reads real time audio from a sound card (mic) and calculates FFT for it. Frequency of sound per .5 second. I need to create a spectrum Analyzer kind of component. Any way I could do this using DirectX (Direct 3D maybe). I am not looking for 3rd party component. --Yatharth There's surprisingly little work done on high-level sound APIs in MDX. You can have a look at one of these .NET DirectShow wrappers: http://directshownet.sourceforge.net/ http://www.kohsuke.org/dotnet/directshowTypelib/ http://www.codeproject.com/cs/media/directshownet.asp And a commercial 3rd party component (100$ shareware license), which probably does what you need in a simple fashion: BASS from un4seen.com. ...Show All

  • Visual Studio Express Editions Numeric Only Values

    If in a Key_down event I want to ensure that the data that goes into the listbox is only numeric do I use a If then statement   I would like it so that if the user input alphanumerica data my program will show a message box say it must be numeric and then reset the textbox to empty and put my focus back on the text box   I tried the following code but I get the error message "must be numeric" even when the key pressed is numeric Private Sub TextBox1_KeyDown( ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles TextBox1.KeyDown a = TextBox1.Text If Not IsNumeric(TextBox1.Text) Then MessageBox.Show( "Must be numeric value Text Box 1" ) TextBox1.Text = "" Te ...Show All

  • Visual Studio 2008 (Pre-release) Databinding & User controls

    I am having some trouble databinding to some controls, I have followed the example from : http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnlong/html/WPFDataBinding_Pt2.asp When I add DataContext="{StaticResource EmployeeList}" I get a XamlParseException. I also tried to locate the controls from the code behind but it only recognizes the root usercontrol " HistoryControl" that I have templated with a list view & various textboxes. What I would like to know what is the best way to databind a dataset generated from sql to multiple controls on my grid. Here is an example of one of my screens that I have a problem with: < Grid x:Class = " InvoiceLog2.UI.Screen2 " xmlns = ...Show All

  • Visual Studio Tools for Office Call macro from C#

    Hello: I have an Excel Workbook Project withs VSTO and what i need is to run an existing vb macro. I create the macro with Visual Studio Macros (Alt-F11) inside VS 2005 and the look like this: Imports System Imports EnvDTE Imports EnvDTE80 Imports System.Diagnostics Public Module Module1 Public Sub Test() MsgBox( "Hola amigos" ) End Sub End Module Then i want to excute this macro from a sheet of my project, the look look like this: using System; using System.Data; using System.Drawing; using System.Windows.Forms; using Microsoft.VisualStudio.Tools.Applications.Runtime; using Excel = Microsoft.Office.Interop.Excel; using Office = Microsof ...Show All

  • .NET Development Application Cached HTTP Connections

    I have an HTML scrape DLL that is called concurrently to gather info. The DLL uses the following code to fetch a login page : Uri UriCon = new Uri("https://someloginpage.com"); HttpWebRequest Request = (HttpWebRequest) WebRequest.Create(UriCon); Request.Timeout = 20000; Request.CookieContainer = new CookieContainer(); Request.Accept = "image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-shockwave-flash, */*"; Request.UserAgent = "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)"; Request.Headers.Add("Accept-Language:en- au"); ...Show All

  • Visual Studio Express Editions Fails to create new project

    All that it says is "Creating <whatever name project is>...project creation failed" that message is at the bottem of the screen. Thanks for any help that i may recive! Hello Re: Fails to create new project I am going to mark this thread as answered since you have not followed up with any further information on your problem - I assume you solved the problem yourself or one of the suggestions in this thread helped you solved the problem. If this is incorrect then please submit further details and then mark the thread as unanswered. Thanks Damien ...Show All

  • Visual C# Telnet - synchronous

    Does anyone has a code to work in a synchronous way in telnet I have a code to asynchronous but it's too dificult to work when everything runs by my code and doesn't need the user intervention... Thanks ...Show All

  • Visual C++ I'm unable to add windows message events or new functions/variables with the IDE using the wizard... WHY?

    My project, which has moved forward through the VS IDE's from version 5 now has a problem using the wizards to add new functions variables, or windows events. I "converted" the source files when I first opened the project in version 8 from version 7 and can successfully manually add the functions, message handlers and class members but it would be nice if the IDE worked the way it does with older versions, and with newer projects. Is there some file I need to remove, or is there a setting that needs to be changed (similiar to deleting the old clw file to reset the class wizard). Thanks Chris chris, Are your files checked-in to a source management system such as microsoft sourcesafe c ...Show All

  • Visual Studio ?How to limit data source rows in Crystal Reports?

    Let’s imagine a CR report with a 100 row data source, this data source has only 2 fields: Name Address The 2 are in the Detail section of the report, as a result, 100 rows will appear when the report is executed, let’s suppose I sorted the rows by name . What I need to know is, if there is a possible way for me to limit those 100 rows to only the first 5. IS THIS POSSIBLE I only need to take the frist 5 rows of the data source, depending on the sorting I choose. Plese help me. ...Show All

  • Visual Studio Tools for Office VSTO2005SE

    I have a VS2005 Prof project I built for Office 2007 using VSTO2005SE that modifies the ribbon yet I cannot get the callback from a button to call the sub I have created for it. I suspect That I installed something wrong. I discovered a web site with pretty clear instructions (for this mere mortal) http://msdn2.microsoft.com/en-us/library/ms406046.aspx . I descided to start over with a new project - paying careful attention to instructions provided. Now things are more strange I cannot find Microsoft.office.interop.word in "add references" anywhere. At least not by that name. My previously mentioned project shows the dll in reference but I have no idea how I got it there. I could use some help on how to make this available. ...Show All

  • Visual Studio Express Editions DVR Card

    How to communication with DVR Card in VB 2005 What was the VB coding to import and program the DVR driver How to use VB 2005 Express to design my own DVR program to manage the video Thank you. Hi, Please post your question in the following forum. http://www.microsoft.com/communities/newsgroups/en-us/default.aspx dg=microsoft.public.windows.mediacenter&cat=en_US_101811f7-de11-4ece-976c-69321a303748&lang=en&cr=US Thank you, Bhanu. ...Show All

©2008 Software Development Network