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

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

Banhnam

Member List

Mykhaylo Blishch
LuckyL
Tom Vinod
BilalShouman
Revin11
Stricken618
yabansu
Rafael (Live Butterfly)
Jman Killer
hanguyen
Philip Jaques
lnkaye
Tej62007
CraigT
traci779
TalhaAziz
Jeff Johnson
dtlinker
Paul Baudouin
r2d2-proton
Only Title

Banhnam's Q&A profile

  • Visual Studio Team System Can't launch word document from Source Control Explorer

    I cannot view word documents from the Source Control Explorer using a double click or View command. The cursor briefly changes to busy and then resets to the default. Txt documents and .cs documents work fine. Hi Jeff: Ok I am at a loss right now so i will talk with some of our developers and see if they have an idea on how to debug this. if we cannot get very far then I think the best thing to do will be to call customer support but wait a day or so until we get back to you asking for more information. Thanks, mario ...Show All

  • SQL Server Report parameters being searched for after they have been removed from all visible interfaces

    I've been building and testing my reports and have found that if I decide that a report parameter should be removed, removing the parameter causes the report to fail. If I remove a report parameter via the 'Report Parameters' menu, and I also remove the associated data dimension, filter expression and parameter check boxes, when I preview the report I get an error message. It appears the report is searching for the old parameter name even after it has been deleted. This leaves me with the option of either restoring the parameter as it was, or rebuilding the report from scratch. I've done some investigation and the parameters seem to exist within the XML code that underlies the report despite the parameters being deleted. Is there ...Show All

  • Smart Device Development Extend Call Log Menu

    Hi, i'm trying to add my custom menu in Call History on SP platform. My code works as well on PPC but on SP 'DllGetClassObject' is never called! ! The dll is correctly registered and exports all functions. The registry key that i'm using is: AppView\MSCLog Any ideas Thanks in advance ;) CEGUID m_ceguidInitDB; CEOID oidDB; //Get record's OID CEOID oidCallLog = (CEOID) pItemArray->rgRefs[0].pRef; //Mount the volume BOOL a=CeMountDBVolEx(&m_ceguidInitDB, L "\\pim.vol" , 0, OPEN_EXISTING ); //Open clog.db HANDLE m_hDBCLog = CeOpenDatabaseEx2( &m_ceguidInitDB, &oidDB, TEXT( "clog.db" ), 0, 0, NULL); //Go to record CEOID ceOIDTemp = CeSeekDatabas ...Show All

  • Software Development for Windows Vista Vista not appending primary DNS suffix beyond one level deep, Anyone Seen this ?

    This is new to Vista as XP works fine. When you simply set append Primary DNS suffix, the system should always append it, such that is your domain is mydomain.com, and you look up www, it should append so the FQDN=www.mydomian.com That seems to work fine, but if you do one more deep, such as www.test , you would expect as in XP and in DNS in general to append the primary suffix, such that the FQDN = www.test.mydomain.com Vista does not do this, and this is a very major problem for our company as we have many DNS zones and normally the user does not need to append the domain he/she is in and it should recursive lookup. It is not. We are not going to GPO 100 domain suffixes to each workstation just so they don’t have to type the & ...Show All

  • .NET Development Interop Debugging with ICorDebug

    I'm working on a debugger using the ICorDebug interfaces. I'vem only just started and I'm trying to get a proof of concept for my boss. I'm able to launch or attach to managed apps and I'm getting all the proper DebugManagedCallback calls for attach, create process, load module, etc. Things get wierd when I add the unmanaged callback and set the flags for interop debugging. My unmanaged callback gets called and I call ICorDebug::Continue with the value of the out of band flag that's passed into the function. Everything works until I get the initial int 3 call. In that case the out of band flag is FALSE but whether I call Continue with TRUE or FALSE, the app is never fully launched and I don't get any of the managed callbacks. I've tried ev ...Show All

  • .NET Development Remoting Configuration in VS2005

    Hi there, I'm trying to configure the remoting services and channels of an application using the app.config file in VS2005. It keeps giving me an error telling me that it... Could not find schema information for the element 'application' as well an error for every other child element under the <system.runtime.remoting> element. Here is the start of the configuration.... < configuration > <!-- Configiration of the Remoting system --> < system.runtime.remoting > < application > < channels > < channel ref = " tcp " port = " 6565 " > < serverProviders > < formatter ref = " binary " typeFilterLevel ...Show All

  • SQL Server Execute Remote Stored Procedure from the receiver's queue

    How can my receiver's queue procedure execute a procedure on another server Everytime it gets to that remote procedure statement, I get DISCONNECTED_INBOUND status. The procedure I want to call is on SQL 2000. A database EXECUTE AS context cannot use a linked server unless is signed and proper rights are granted on the signature (see http://blogs.msdn.com/remusrusanu/archive/2006/03/01/541882.aspx for an example) or, a much easier way, mark the database as trustworthy. The dbo must correspond to a login who has proper authority to use the linked server. For testing, do this: ALTER AUTHORIZATION ON DATABASE::[<db_name_where_Activation_occurs>] TO [sa]; ALTER DATABASE ::[<db_name_where_Activatio ...Show All

  • Windows Live Developer Forums pin image stops animating on mouse click

    Hi, Imn one of my application using virtual earth, i am using an animated gif file in pushpin. when it loads the image starts animating, but when i click on the image it stops animating. It doesn't stop animating when i click on any other part of the map. The animation starts again when i refresh the page. I dont know what is the problem. I am not handling on mouse over event as i dont need it. When i searched the net i found a solution to handle mouse event as function EventHandlerOnClick(e) { if (e!=null) { document.getElementById(e.currentTarget.id + "_" + map.GUID).onmouseover(); } else { document.getElementById(window.event.srcElement.id).onmouseover(); } } but the pro ...Show All

  • SQL Server I need to know the data changes in some table on a row level

    Hello Guys I have a table, contains some fileds When update statment runs, I need to know which columns has been changed and to know the old and the new data for each row simply i need to do the following in a trigger: For each row ROW in tbl_Table for each col COL in ROW Save COL.oldValue and COL.newValue I don't know how to do it by cursors and I don't want to use Cursors If any one can help or provide a good advice, please help Thanks and have a great day In addition to Mani, you should use the full qualified names rather than *. Be aware that triggers are executed for each DML statement not per row, the trigger is even fired if no row is affected: UPDATE SomeTable SET SomeCol = 1 WHERE 1 =2 --Will fire the ...Show All

  • .NET Development retrieving a UDT from a SqlServer Express 2005 function via C#

    I'm just learning about UDTs and SqlServer Express, and am trying to figure out what's possible and what's not using a simple example. I have created my own UDT (called EventDBEntity, not a very good name!) and registered it in my SqlServer Express 2005 database using Visual Studio 2005. I need to have a SqlServer Express function return a UDT to my C# code. In SqlServer, I created a scalar-valued function to return a UDT to me - in the function it queries data from a table and puts it in a new EventDBEntity and returns the new EventDBEntity. This is different from most of the MSDN examples I see in that I have no column of type EventDBEntity, instead I am trying to create the object on the fly and return it back. The function gives bac ...Show All

  • SQL Server SQL Server 2005 - Scheduled jobs stop working

    Our system is using SQL Server 2005 SP1 running under Windows 2003 Server and database mirroring are adopted. Howerver, recently, we discovered that the all scheduled jobs in SQL Server stopped working suddently. The jobs had no errors and the SQL Server Agent was still running. All just fine but no jobs were working and they just like sleeping in SQL Server. Even database mirroring monitor job stopped running and it should run every two minutes. It is very annoying. Why this happen and how to fix it Thanks. There should be additional entries in the SQL Server log ot the event log of Windows. Please post the appropiate messages here. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. ode.xna

    By the way, I had ported ODE.NET to MDX 2.0 in the past. Today, I recompiled it with references to XNA with VS2005. The compiler didn't complain. I'm in the process of getting a demo working with references to ode.xna it but it's still in the early stages so I can't be 100% sure it will work. So far so good :/ www.pepperboy.net Yes it is wrapping native stuff. I creating a very a basic demo so far. Added a reference to ode and created a world object to set gravity. No errors or warnings. That's actually pretty promising! ...Show All

  • Software Development for Windows Vista TransactionScope fails

    Hi, I am using transactionScope and it is failing. I tried DTC Ping as was recommended in another post and it fails to. On the computer I try to ping: ++++++++++++Start Reverse Bind Test+++++++++++++ Received Bind call from DEVELOP Trying Reverse Bind to DEVELOP Error(0x2AFC) at nameping.cpp @62 -->gethostbyaddr -->11004(The requested name is valid, but no data of the requested type was founError(0x6BA) at ServerManager.cpp @453 -->RPC reverse BIND failed -->1722(The RPC server is unavailable.) Reverse Binding to DEVELOP Failed Session Down And on the computer doing the pinging: ++++++++++++Validating Remote Computer Name++++++++++++ Please refer to following log file for details: C:\dtcping\DEVELOP2916.log Invoking ...Show All

  • Visual Basic Change data in all sheets except one

    Hi all, I want to create a macro that will change data in all sheets except one sheet. What i have now is: Dim wSheet2 As Worksheet For Each wSheet2 In Worksheets If Not wSheet2.Name = "Tijden" Then Columns("J:N").Select Selection.ClearContents Range("D10:H116").Select Selection.ClearContents Range("A4").Select Next wSheet2 Only, this doesn't work. The "Tijden" sheet also is changed and that should be left untouched by this macro. Does anybody have a solution for me Many thank! Greets Hans Baltussen These forums are intended for VB.Net development and your description describes a Excel issue. Excel uses a vers ...Show All

  • Visual Studio Express Editions New application problems

    Hello, I have recently downloaded visual C# express edition, and whenever I try to create a new application (be it a windows application or not), it doesn't work and I receive the following error message: "The filename, directory name, or volume label syntax is incorrect. (Exception from HRESULT: 0x8007007B)" Does anyone know how to solve this problem I am grateful for your attention, and I hope this hasn't been postet already Belgerog. belgerog wrote: Does anyone know how to solve this problem A search for 0x8007007B finds a number of threads that address this same symptom. http://forums.microsoft.com/MSDN/Search/Search.aspx words=0x8007007B&localechoice=9&S ...Show All

©2008 Software Development Network