Software Development Network Logo
  • Visual Studio
  • SQL Server
  • Visual C++
  • .NET Development
  • Visual FoxPro
  • VS Team System
  • Windows Forms
  • VS Express Editions
  • Windows Live
  • Windows Vista
  • Visual Basic
  • Architecture
  • Visual J#
  • Smart Device
  • Game Technologies

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

innivodave

Member List

Luc Pettett
Belee
Andrew McCleese
rwike
Chad Meyer
JamesChan
JohnI
John Thomas
chaminda perera
??r?sτσρhΞr Sc?δlτξη
Matt Turk
Toldin
roshdsa
KevinRF
wbcrabby
Pvanroos
zcr
Charles55
hrubesh
Recursio
Only Title

innivodave's Q&A profile

  • Visual FoxPro use the reccount

    hello all  I use "set filter to" and want to know how much record is match the filter condition. I use the "reccount()"  but it return the result is not I want. it is all the record count This is how it works for me. Finally . Select * From Customers Where State = "NJ" Into Cursor NJ_Customers NOFILTER Then a second query can be taken, otherwise the runtime does not recognize NJ_Customers for anything but RECCOUNT() on NJ_Customers right after the Select statement. Select * From NJ_Customers Where City = "Trenton" Into Cursor CityCustomers Without the clause NOFIL ...Show All

  • Visual Studio Team System Tests Not Runnable, Multiple Tests with ID Found

    Hello, I've started using Team System for unit testing and have been very pleased with it for a while but recently I've run into a strange error on some of my tests. When I try to run the unit test project all my tests are marked with the message, "Not Runnable", and I get an error message saying, "Multiple tests with ID <guid> found". Other test projects in the same solution are fine and run without incident. If I rename the class containing and rebuild the solution the tests run just fine but if I shut down Visual Studio and relaunch it the error is back. Am I doing something wrong Thanks. Are you using inheritance in the ...Show All

  • Visual Studio Team System How do I launch a "batch process" on sever side using VS 2005

    Hi, I'm developing a Web application with VS 2005 (C# and VB). We need to launch a process on server side that: - Every month at a specific hour open a database - Delete rows that meet a specific "filter" (i.e. rows that were processed temporary last month) - Create a report with deleted rows. Of course it will imply in the case of the report build it and put on the server side. The question is how , it's a simiar process to triggers or "demons" on Linux. I don't think you have posted to the right forum for your question. You may get a better response pos ...Show All

  • Software Development for Windows Vista How to use the cancel handler?

    I have two workflows A and B. In workflow A I have the instance Id of workflow B. How do I gracefully cancel workflow B from workflow A Is this where the cancel handler should be invoked How When the cancel handler completes does the workflow exit Thanks. Workflows cannot perform instance operations on other workflows, only the host can do that. What you can do is make a request to the host from one workflow instance to terminate/suspend/unload/etc. another workflow instance. The CancelHandler is something completely different. This is used to store cleanup logic for activities that are canceled during e ...Show All

  • SQL Server Is there any way to the login for existing user

    1. Right click the <DB servername>->Databases-><DB Name>->Security-><Users>-><username>. 2.Click Properties. 3. In the Database User -<User name> window, the login name is not editable. how can change the login name for existing User name. See ALTER USER: http://msdn2.microsoft.com/en-us/library/ms176060.aspx . This article also includes an example of changing a user's name: USE AdventureWorks; ALTER USER AbolrousHazem WITH NAME = Abolrous; GO Thanks Laurentiu ...Show All

  • .NET Development Icons for files - by extension

    Hi, I'm trying to populate a treeview with files in a folder and would like to show the icons for the file. How can I get the icons when I have the extension For example, ".doc" would give me the icon with the w. I want it to look like Explorer and have all registered files show icons. Thanks Thanks, David, but I belive that only gets icons from within the file. That's OK for excutables, etc. But, I'm also looking to get an icon associated with data and other files. See my .doc example above. At the moment, I'm doing an Explorer look-alike, and want to see icons for everything (eve ...Show All

  • Visual C# How to import a dll made in C++ Win 32

    Hello Everyone, I have a dll which is made in Win 32, as it is not an assembly neither COM can't be used as a refrence, so I have to Import it.... Can someone tell me how to do it...As when i do it asks for the entry point and secondly how to call the functions from that dll.....A brief example will be highly appreciATED... Thanks, Harsimrat Thats simple.. u have to use System.Runtime.Interopservices in your main class: do this: [Dllimport("the dll path")] public static extern void nume_of_function(string t\his_params); Remeber that you have to adapt to c++ parameters.. ...Show All

  • Visual Studio 2008 (Pre-release) Hosting WCF Router in IIS

    I took router sample and changed hosting environment from console to iis. I have problem runining it, when I try to test it from ie i receive folowing error: " Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: Property 'routerBinding' is not a ConfigurationElement. " I suppose that problem is with bindingExtensions. Can someone help me, or provide the router sample hosted inside IIS Thanks, Indigo Cowboy ...Show All

  • Visual Studio 2008 (Pre-release) Peer to Peer questions

    Could someone please answer the following questions: 1) Is there any way of retrieving a list of all the PeerNodes on a mesh without a central server 2) Is there a simple way of finding active meshes 3) Is there any programatic way of setting a wifi card to ad-hoc mode I know this one isn't WCF specific, but it may be useful for other Peer to Peer developers. Thanks, Joe Where can I download the PDC BOF about P2P applications Thanks ...Show All

  • Visual Studio Microsoft.VisualStudio.Package.Project.dll missing in RC1?

    Hello, I just migrated from VS.NET 2005 Beta 2 to the new RC1 release.  However, I noticed that the DLL Microsoft.VisualStudio.Package.Project.dll can no longer be found.  IIRC, this DLL was registered in the GAC in Beta 2, but it is missing when I upgraded to RC1. After installing the September CTP version of the VSIP SDK, the DLL was installed into the SDK directory (but NOT in the GAC).  But even though now I can compile my VS package, how will my package be able to run on a machine with just RC1 but not VSIP Thanks for any help! Eric It seems like we've clarified the main issue here.  ...Show All

  • Visual Studio How to use HideDuplicates

    I am in the process of converting reports from Crystal Report to ReportViewer. I hope somebody can let me know how to use the HideDuplicates property in ReportViewer. SuppressIfDuplicated in Crystal Reports is much easier to use i.e. just enter True or False. ...Show All

  • Windows Forms Setting Locale

    How i can set program locale to other language in windows applications in c# last times i was programming in VC++ 6.0 i user setLocale() function to change the locale but no i can't find it in c#! thans a lot hassan azizi System.Threading.Thread.CurrentThread.CurrentUICulture System.Threading.Thread.CurrentThread.CurrentCulture Set them to a new CultureInfo object. ...Show All

  • Software Development for Windows Vista Workflow Creation in XAML and Code (Everything not supported)

    I was using the xoml style of creating an activity and noticed that I couldn't create an simple single Activity only a Sequence activity. The Activity element was not available. This can be done in code so I am curious if the XAML is a little behind the class library or am I just doing something wrong. Perry, In Beta1, you could define the workflow paramters in the xaml. Something like <SequentialWorkflow ... > <SequentialWorkflow.Parameters> <Parameter ....> </SequentialWorkflow.Parameters> </SequentialWorkflow> [The above xaml is only for explanation and not actual working cod ...Show All

  • Windows Forms Why TaskVision does NOT use .vsdisco?

    Hi! The  .vsdisco HTTP handler in Visual Studio.NET is disabled by default but I have found that enabling it very useful because if I add a webreferenct to a .vsdisco, I can have 1 webreference to all  the webservices in a WebServices project instead of having many webreferences (one for each asmx). Why do you like to have many webreferences bye Luxspes ...Show All

  • .NET Development Error with DLL in network application

    Hi all. I'm having problems with a DLL running in my intranet. I tested the DLL locally and it work, but when moving to a shared project hosted in a Windows 2003 Server, it gives security exceptions. I'm making tests with a simple DLL that creates a text file in the server. A strange thing is that from my PC it works, but from other PCs on the networks it gives the exception. I saw in MSDN documents that I have to sign my DLL with a strong name and then change the trust with the framework wizard. I signed it but when trying to change the trust from framework 2.0 wizard in the server, I get an error: Unable to load DLL. ...Show All

©2008 Software Development Network