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

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

vanu

Member List

Randy Galliano
Ed Lorenz
SLang
KrisV
mostafa_pasha
Glen Satuito
jerfoo
Rob Joosen
andras99
Kees 123
RHolt
Dwarf44
outcast1881
RPagels
SandeepLohani
ruleDWorld
ishaywei
DeNiS-21
Butch Roy
Shrek.NET
Only Title

vanu's Q&A profile

  • Visual Studio How do I delete a debug project from VS 2005's Start Page ?

    I know how to make a VS 2005 project disappear from the Start Page. I, simply, delete the project's files and that's it. I recently debugged a svchost app. Now it shows up in the Start Page, but I don't want it there. How do I remove a debug project from the Start Page I was told, in this thread : http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=300505&SiteID=1 that "There should be a .sln file somewhere on disk. If you delete that file, then click on the item in the start page it will ask if you wish to remove that item." Indeed, there was a .sln file...*and* a .suo file in \Windows\system32. But, after deleting both the .suo and the .sln files, when I click the svchost project in the Start Page Project List, VS 2005 o ...Show All

  • Software Development for Windows Vista Any specific method to create equalizer using Directshow

    I had implemented media player using direct show. Now i want to implement equalizer for it. Is it possible through direct show. Any help provided is greatly thankful in advance While in theory you can use IAMAudioInputMixer, in real life, I haven't seen any devices that support all these methods. ...Show All

  • Smart Device Development Difference between Pocket PC 2003 and Windows Mobile 5

    Hello, I have lots of handheld scanners (Symbol 9000) running Pocket PC 2003.  All of the applications connect to webservices.  Recently we got some new handheld scanners  (Symbol 9090) , the new scanners are running Windows Mobile 5.  All of the application execute just fine, but it takes forever to connect to a webservice.  To give you an example a simple login screen for one of the application, on Pocket PC 2003 takes 5 seconds, while on the Windows Mobile 5 takes about a minute. What is the difference if any Did anybody notice any difference when moving their code from Pocket PC 2003 to Windows Mobile 5 Thanks for any help Tomasz How long it takes to connect to WS from Pocket IE How you're con ...Show All

  • Smart Device Development Can't get application icon in Programs Page

    Hi, I have created a VB2005 application with a CAB that installs the .exe and the shortcut in the Programs Folder, but it does not show up in the Programs window. How can I get it's icon in the Program window so I can start it with a hardware button Hello Sab2, Would you please tell me what is not shown in the Programs Folder Is either .exe or shortcut missing in Programs Folder Generaly speaking, we install .exe files in Program Files folder and add a shortcut in Programs Folder. Best Regards, Zero Dai -MSFT ...Show All

  • Software Development for Windows Vista Extract values from persisted workflow without instanciate it

    Hi there I'm trying to extract the initial parameters of a persisted workflow for comparison purposes, without the need to instantiate him. I'll try to explain it... I have a workflow that describes the life cycle of a customer inside a business home. When the customer arrive, they are admitted in the reception where a few personal information is gathered. A workflow is created for every one that is admitted. They pass through 3 different steps and talk to 3 different end users of the application until the workflow is finished. For every step I want the end user to have a display list of customers in list for that step by order they arrived. Throught SQLTrackingService I manage to track in what activity the workfl ...Show All

  • Windows Forms Monitoring Changes on a Tab Page

    In my WinForms app I have a tab page with a bunch of controls on it (e.g. textboxes, checkboxes, buttons, radio buttons, etc.). Is there an event, or a few events, of the tab page that I can monitor to see if any changes to any controls on the tab page have been made Robert W. http://pocketpollster.com WinForms questions are off topic for the Visual C# General forum. Your question is likely to be answered quicker in this forum, where experts in WinForms are likely to be reading questions. I've moved this thread to WinForms General forum. ...Show All

  • Windows Forms how to get the history of visited webpages from a tabbed webbrowser?

    Hi...Need your help! Anyone! I'm trying to create a clone webbrowser for vs 2005. I'm having a problem implementing the history under the back button like internet explorer. I'm trying this... dim collection as new array under documenttitlechange... collection.add(combobox1.text) but this little code up here works fine if the application has only 1 webbrowser...but if it has two, like in a tabbed kind, than there's where the problem starts, the array is adding both or all the webbrowser's history. so when i click the back button to open the combobox, I do not have the history of the current webbrowser that i'm viewing but I have all the history of all the tabbed webbrowser that I'm viewing. ...Show All

  • Visual Basic Shared interface member

    Why can't interface methods be declared Shared in VB I have a controllerFactory interface that is used in a number of apps to dispense app sepcific controller classes for use in an app neutral framework. Currently I have to create an instance of the controller factory classes to invoke the GetController methods. Ideally I'd like to make this method shared and invoke it without creating an instance of the Factory. If I try to mark the implementation shared then Visual Studio shows the error "methods or events that implement interface members cannot be shared". If I mark the interface method as shared the error message is "'Shared' is not valid on an interface method declaration". Here's the interface definition: ...Show All

  • .NET Development DoEvents not working?

    This code doesn't seem to be working right. What I need to do is watch for left and mouse downs, and when both are down at the same time, show a window. This class should do it, but isn't working. The processMessage variable tells the mousehook to send the message to the appropriate window or to consume it. Public Class mouseComboWatcher Private WithEvents mh As WickedOrange.MouseHook Public Event ComboPressed() Public Event ComboReleased() Sub New () Me .mh = New WickedOrange.MouseHook End Sub Private leftMouseDown As Boolean = False Private rightMouseDown As Boolean = False Private comboDown As Boolean = False Private Sub mh_Mouse ...Show All

  • Visual C# New C# Keyword - retry?

    I believe that C# could benefit from extending try-throw with retry keyword. Simple example of this would be: try { PerfomAction(); } catch(Exception ex) { DialogResult dr = MessageBox(ex.Message, "Error", MessageBoxButtons.AbortRetryIgnore, MessageBoxIcon.Question); if(DialogResult.Retry==dr) retry; // Jumps to the begining of try block } IMHO: This makes for cleaner-looking and less bug-prone code than the alternatives with goto or loops. This is almost right. You need to set retry=false at the BEGINNING of the try block: [code] bool retry = false; do{ try { retry = false; //default value if no exception exposed //do the stuff here } ...Show All

  • Visual C# file down loader heeeelllp!!!!!

    can some one , anyone give me some direction in creating a simple file downloader if possible forcing the downloader dialog. thanx if anyone can help use the WebRequest/WebResponse classes to get the file you want or use the WebClient class, which includes events to show you the progress of the file download being completed. Ideal if you want to show the progress in a dialog box, giving the status of the download. I would suggest reading the class documentation to get you started and to make you understand things a bit better: http://msdn2.microsoft.com/en-us/library/system.net.webclient.aspx http://msdn2.microsoft.com/en-us/library/system.net.webrequest.aspx http://msdn2.microsoft.com/en-us/li ...Show All

  • SQL Server Deploy Subreport

    Is there a way that we can set a property in de Visual Studio to prevent a report of being shown in the Report Manager. I know that we could control it from the SSRS side, but when a developper creates a Report that contains subreports it would be usefull to indicate that the subreports don't have to be shown, so they don't have to inform the site-manager to hide some subreports. Kind Regards. ...Show All

  • .NET Development reflection related query

    I am facing one problem in my project. I want to find the referenced assemblies of my current assembly. I am using reflection.assembly.getreferencedassemblies() function for that. But I can't get COM converted .net dll and c++ dlls in that. why what should I do to get that dll also............... I want that dll name anyway..........please show me some way if it's not possible in .net then is it possible in c++................... Thanks in advance.................. Referencing other binaries via COM is not, directly, an assembly reference. From the COM interop. point of view it doesn't matter if a COM server is implemented in .NET or not; so, it can't include COM references in with assembly ref ...Show All

  • Visual C# Convert Decimal to String???

    this .txtCommission.Text = ( decimal )_SalesPersonToEdit["Default Commission"]; How do i convert this string to a Decimal, I have tried using ToString() but that does not work and I also tried to use Convert.ToDecimal(string) = object....and that didnt work eithier any help on this situation! thanks! what "doesnt work" you need to be specific :-) to convert a string to a decimal: decimal theDecimal = Convert.ToString(theString); however you need to be sure in some way that the value is a "qualified" decimal value in other words, integer values only generally ...Show All

  • Visual Basic Reading .RM Files

    hi i would like to read .rm files, i need to know the lenght of the file, play and stop it, and so on, u can say i would like to create something like a .rm Player ,can anybody help me you need the SDK, if one is available, in order for you to work with realplayer. There isn't really another way as it is a file format that only realplayer will understand and if you want to work with realplayer, you need their SDK/development tools so you can create your player and realplayer acting as the background core module that plays the files, whilst you can design your UI or whatever it is. ...Show All

©2008 Software Development Network