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

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

mistry_bhavin

Member List

EDV Gradl
cythe
Stebane
simdoc
Jack Hoxley
makeer
Nathan Baulch
Steve Whitley
yonis
Kern101111
stallion_alpa
David Hubbard
CV.
Kennon2005
jjre
swtjen01
skrajmohan
Tanzir
Jason Olson
pipope
Only Title

mistry_bhavin's Q&A profile

  • Visual Studio Team System TF53010 NullReferenceException from "TFS Warehouse" source

    Each hour there are two TF53010 errors in Event Log. Thanks in advance for help how to resolve the issue. ------------------- THE FIRST ------------------- TF53010: An unexpected condition has occurred in a Team Foundation component. The information contained here should be made available to your site administrative staff. Technical Information (for the administrative staff): Date (UTC): 10/16/2006 7:32:35 AM Machine: SERVER Application Domain: /LM/W3SVC/3/Root/Warehouse-4-128054503400728648 Assembly: Microsoft.TeamFoundation.Warehouse, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a; v2.0.50727 Process Details: Process Name: w3wp Process Id: 5140 Thread Id: 884 Account name: DOMAIN\tfsservice Detailed Message: Micros ...Show All

  • Visual C# SP2 causing error?

    I have a project that is having issues with SP2. It is a browser that was created to incorporate encryption and decryption protocols. I have done some minor fixes to the code since it was originally made, on my machine with SP2; now, the browser has exceptions on machines still running SP1 with the Explorer 6 browser object. In order to recompile this application to run on these older machines, do I need to remove SP2 from my own machine, or does anyone know of a workaround Thanks SP's are for improvements not for disasters. I'm running Windows XP with SP2. Not having any problem in any application. Exception tells that there is some nasty thing going in your code but from that error its no ...Show All

  • Visual FoxPro VBA to VFP code conversion

    Can anyone help with converting the following from VBA code generated in Excel to VFP code: Sheets("Notes").Copy Before:=Workbooks("AB0KF3FK.XLS").Sheets(1) Thank you Hi, No, what I want to do is copy one tab from one excel file to another (the Notes tab from copy_this_tab.xls to the first tab in into_this_file.xls). The first line in my trial section of the sample code below is what I thought it should be --> loWBFrom.sheets("Notes").copy(loXLTo.Workbooks("into_this_file.xls").sheets(1)) --> but it gives me the error "... unable to get the copy property of the worksheet class" I am doing this to be able to keep all the forma ...Show All

  • Windows Forms Index of Item in ListView

    Hi Guys, I am trying to somehow get the index of the item which has been clicked by the mouse (single click). The list view has around 20 items and i need to show the description of each item in a seperate textbox, that means i should know which instruction has been clicked and for that i need the index. I am using visual studio express edition 2005 and C++. Any suggestions how i can do it Cheers! private void listView1_MouseDown(object sender, MouseEventArgs e) { ListViewItem item = listView1.GetItemAt(e.X, e.Y); if (item != null) Console.WriteLine("Mouse at item #{0}", item.Index); } ...Show All

  • Visual Studio Express Editions Why Is It So Difficult To Save and Load Form Text Boxes?

    I would appreciate any help someone could give me. I have searched this forum endlessly trying to find a way to save 60 or so text boxes on form1 to a file and then later read the information back into the same text boxes. It seems like I have tried every bit of sample code that I can find and nothing works. I have 5 books on VBE and VB5. I am a complete novice at this so please be gentle. Thanks in advance for any ideas/help. Glenn Ok, here's is a good model using a single text box - Discussion follows in the next post Public Class Form1 Private DataDict As New Dictionary( Of Integer , String ) Private InstructionDict As New Dictionary( Of Integer , String ) ...Show All

  • Visual C# With "FormBorderStyle.None;", how can I move the form by mouse?

    using " FormBorderStyle = FormBorderStyle.None; ", I can not change the location of the form when running... Is there any way to drag the form around as I like Thanks! you would have to change the FormBorderStyle in this case to do so, if its set to none then it won't allow you to move the form closest one probably is the SizableToolWindow however it wont appear in the taskbar or when you do the ALT + TAB combo to look at your current running programs ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XACTENGINE_E_FAIL on XACT3DApply() call

    Hey all, I'm having an interesting problem where when it executes the BOLD piece of my code, everything else is returning S_OK, but you want to see it anyway: // Prepare the sound this->pSoundBank->Prepare(m_pCueIndices[nRandom], NULL, NULL, &pCue3D->pCue); pCue3D->vEmitterPosition = vPos; // Use one emitter over and over again that's what we're trying here m_pManager->GetManagerEmitter().Position = pCue3D->vEmitterPosition; // Let the engine calculate dist between listener and emitter, check for failure hr = XACT3DCalculate( m_pManager->Get3DAudioHandle(), &m_pManager->GetPlayerListener(), &m_pManager->GetManagerEmitter(), &m_pManager->GetDSPSettings() ); if (FAILED(hr)) ...Show All

  • .NET Development Using Sgen.exe /t for multiple types

    Hi, For an assembly containing only a few classes relevant for the XMLSerializer among lots of other classes I want to generate the XMLSerialzer assembly via the SGen.exe tool: sgen /a:Test.dll /t:TestClassName This works well for one type name given by the argument /t but it does not work for multiple type names: sgen /a:Test.dll /t:TestClassName1 /t:TestClassName2 I consider this an important requirement for the Sgen tool, which seems not to be taken into account. Can someone from Microsoft comment on this Is there a third-party SGen able to do this Thanks a lot. Frank Hi, I have the same problem as you described. I want to be able to explicitly specify the types for which ...Show All

  • Windows Live Developer Forums Windows DDK 3790.1830

    I have just installed Windows DDK 3790.1830 and followed the installation instructions to verify the DDK installation. However, I got all errors from "build -cZ" and with no file compiled. I wonder if any one knows the issue and give me a hint. By the way, one question about what is different of Windows Server 2003 for SP1 DDK and Microsoft Platform SDK for Winows Server 2003 SP 1 Hi, You might want to repost your DDK question in one of the Windows API or Device Driver forums. This forum is for Windows Live web services discussions. We don't know nuthin 'bout no DDK. ;> -Danny ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Post Processing Shader

    Hi- I'm pretty new to DirectX coding (at least in it's more recent incarnations), so forgive me if this is a dumb question. How do you apply a post processing Shader with XNA Does anyone have a working example Or ist ist just not possible right now Thanks for any help, -markus ...Show All

  • Windows Forms Update dialog

    When is use the click once Function from my Apllication i get a Update Dialog with the name of the Application and a Status Bar. if i use the update Function from my Code: My .Application.Deployment.Update() The Click Once Update works but without the Update Dialog! How can I get this Dialog Thanks I mean this Dialog: ...Show All

  • Visual Studio Team System Visual Studio disappears during Get Latest Version

    I have a large solution (76 projects) in VS 2005. When I execute a Get Latest Version (Recursive) command from the Solution Explorer, the Visual Studio window disappears and the process exits without a trace. My workaround is to use the command line tool, but the problem  is annoying due to the time consuming restart of Visual Studio and reload of the solution. Any ideas We have 4235 files in our solution. I tried this again with symbols loaded: First-chance exception at 0x7c9106a6 (ntdll.dll) in devenv.exe: 0xC00000FD: Stack overflow. >  ntdll.dll!_RtlAllocateHeap@12 ()  + 0xd2 bytes    msenv.dll!CByteHash::DoHashLookup()  + 0x129 bytes    ms ...Show All

  • Microsoft ISV Community Center Forums how to close a userform in workbooks.open method

    I am trying to open excel file which has a userform opening in Workbook_Open() method. I need to close that userform when i open that excel workbook. should i pass any parameters to Workbooks.Open , so that the user form will be closed automatically. Is any way to handle that. Hello, Can you not just remove the code that opens the userform . or better you could write the statement Unload Userform1 , in the workbook open procedure Or am I totally misunderstanding you ChasAA ...Show All

  • Visual Studio Express Editions I need Help Setting a Condition on an DataObject Reader Can You Help Me?

    I need to check to make sure that the Parameter on my objcommand is calling the correct Data so that My Data Reader Knows that it is calling the right parameter value or not. How can I do a check on that parameter before it opens the database and executes a read on it. Code: Example- objPayAccValid.Parameters[ "PayPal_AccountHolder" ].Value = txtPalUserEmail.Text; <-- What if The Data in this textbox is not matching the data in the database how can i run a check. I tried using a Try Catch Format Exception But this wont work, cause this parameter is a string data type. So even though it doesnt match doesnt necssarly mean the data type is wrong so it wont catch the miss match. This parameter has to match in order to run a prope ...Show All

  • SQL Server Triggers

    Hi, I am pretty new to SQL triggers. I want to create a trigger so if there is any updates on any record, the trigger will insert something to another table. My problem is whenever I have an update for multiple records, only the last record got inserted to another table. Looks like the "inserted" only retain the last record updated. Here's sample of my code create trigger UPDATE_INVENTORY on Inventory FOR UPDATE AS DECLARE @LocationID int DECLARE @TID int DECLARE @doUpdate bit FOR EACH RECORD SELECT @LocationID = LocationID, @TID = TID, @doUpdate = DoUpdate from inserted IF @doUpdate = 1 BEGIN INSERT INTO [Update](LocationID, TableCode, ID, Type) VALUES (@LocationID, 2, @TID, 'UPDATE') END ...Show All

©2008 Software Development Network