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

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

Tejoo

Member List

zfjaj
Mark-New Hudson Technologies,LLC
mkappl
Christian_42
milocr
Touraj
Eduardo Ballesteros
Alexander Kachalkov
raoul85
Prakash A Bhat
Deb Magsam
David Szarenski
Uminder
Wei Xiang
bkuwhopper
Jean-Jean
JoshRoss
CyK
TimLB
KB996
Only Title

Tejoo's Q&A profile

  • Visual C# Removing methods calls off the stack in C#

    How can I remove all the method calls off the stack of an object in C# I set the variable equal to null but the object is still executing the code. For example if I have onc class calling a method of the other and that calling other methods in that class like this: class A {     private B var;     void start()    {       var = new B;      ...Show All

  • SQL Server How send a Parameter to Execute program ?

    I am working with SQLServer 2000 and I try to send a parameter, result of a query, to a executable program. I defined the result of query (the parameter), as a global variable, but I don't know how I have to making the call to executable program and how to recuperate this value. How I make this call I have to make an script program (could you give me an example) I have to use a Win32 task or a Execute Package Task How (could you send me an e ...Show All

  • Visual Studio Team System TFS and Domain Controller

    Hello, I read that Domain Controller on beta 3 and RC are no longer supported. If I want to install TFS on a Domain Controller, It seems I have to use two 2003 Server. But I don't understand one  which server I have to install the DC, the prerequisites and TFS, (For Single-Server Deployment) Does it mean I have :one server for the DC and the other one for IIS, SQL server ...Show All

  • Visual Studio How to make a SmartTag marker?

    I'd very much like to make a editor text marker that is a smart tag, but can't seem to find any samples. Has anyone made a custom SmartTag for VS2005 and have sample code to share I'm looking to decorate class and method names with a SmartTag marker that can be expanded with additional progam supplied metadata about said classes and methods. I'm fairly familiar with line and text markers, so starting from there would be great.   Th ...Show All

  • Visual Studio Team System Cannot debug test with [DataSource] attribute

    I have a suite of tests, some of which use the DataSource attribute. However, the tests which use this attribute do not run. When the test suite runs, the TestInitialize method runs a stored procedure which populates the database, and the TestTeardown method runs another which clears it. These work fine, and I can debug them for the other tests in the suite. However, when the tests with the DataSource attribute is to run, the TestInitialize meth ...Show All

  • Visual C++ Convert Unmanaged code to Managed code

    Hi all, I have a source code written in C++ unmanaged code (OpenCV), but i'd like to use it in my C# program, is there any hint to convert those unmanaged code to managed code (i don't want to use DLLImport) Thanks in advance. Wrap the code you have in a managed wrapper and then just add the binary as a reference to your C# application. Take a look at the the following past post that deals with similar ...Show All

  • Software Development for Windows Vista ASP.NET WF events, threading, persistence

    I am now trying to model my own process and build a real production solution on top of WF. I need to use persistence in my State Machine WF. When I do this it looks like I will have to get any information about the current state instance by handling the WorkflowIdled event and getting the information I want before the Instance unloads. Is that correct Within an ASP.NET page can I assume that when I run a WF and it idles that the idle event wi ...Show All

  • Windows Forms Binding BindingList<IInventory> to a DataGridView

    Let me know what I am doing wrong (VS2005 Beta2, WinForm): I have this code to retrieve a BindingList<IInventory> and bind it to a DataGridView. The code basically instantiate a factory to return an instance of a classs that implements an IInvMasterManager interface. The manager class is then use to retrieve data from the database and returns it in a BindingList<> of a class that implements IInventory interface. The IInventory h ...Show All

  • Visual J# Visual J Redistributor package from non admin account

    Hi, I have a VB.Net app that depends on the redistributed Visual J package. It all installs well and works under Administrator. Is there any reason why this won't work under a normal user account Regards Phil Specific scenarios in which application might demand for admin privileges may be accessing any file resource which required admin priviledges. Is your application running fine when you dont use J# ...Show All

  • Visual Basic execute external program

    Is there anyway to use Visual Basic 6.0 to run external program For example, pressing a button I would open Word. You need to use API functions from shell32.dll to execute external applications from VB6, either  ShellExecute or ShellExecuteEx API will do the job. Public Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" ( ByVal hwnd As Long , ByVal lpOperation As Stri ...Show All

  • Visual Basic BIG BUG IN VB COMPILER: Trash executable created, BadImageFormatException (0x8007000B) thrown in runtime!

    Applies to: .NET Framework Version 2.0.50727 Visual Studio Version 8.0.50727.26 Check out my code sample, build it and start. You will get a BadImageFormatException (0x8007000B) and Reflector will complain viewing Master.DoCall(). PLEASE, GIVE ME A PATCH/WORKAROUND ASAP!!! 1. Create the following projects and classes in VB.NET: Bug (Windows Application) -C.vb (Class) -Form1.vb (Windows Form) -Master.vb (Class) Server (Class Library) -A.vb ...Show All

  • Windows Forms Delete row and updating database through datadset

    Hi, I am using following code to bind the myControl (Some bindable control): DataSet dsTrims = new DataSet (); dsTrims = MyProvider.ExecuteDataSet(System.Data. CommandType .Text, strWhere); this .bindingdataSource1.DataSource = dsTrims.Tables[0]; myControl.DataSource = bindingdataSource1; All the data get visible to myControl when run the application. I can also update row into myControl and this update also tak ...Show All

  • SQL Server how to AttachDbFilename in application's directory

    How can I use AttachDbFilename in DbNameDataSet.xsd to access the database in the same directory as the exe file (i.e. the application using it) ...Show All

  • Windows Forms is it possible to check "download group" or dll. file version before download

    Hi, I am developing an app. and deploying it with clickOnce. The app. needs 3 extra dll's to work. 2 of the dll's are not changing frequently and their sizes are big ( approximately 2-3 MBs). Even I don't change the version numbers of these dll's they are downloaded with the whole package. Is it the default response for the clickOne API. If so, is it possible to check the remote files' versions before downloading them (i couldn't see any method ...Show All

  • Windows Forms ObjectDisposedException

    Same problem as the one I've been reading, but identifying the SplitterPanel as the one with the issue, "cannot access a disposed object."  I have the same code compiled in VS 2003 without any issues.  The .NET 2005 was done from scratch no gui code transfer.  Hope this issue is resolved by the time VS 2005 actually comes out. Any words of wisdom will be appreciated! Cheers, Alex I'm also hav ...Show All

©2008 Software Development Network

powered by phorum