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

Software Development Network >> &#169&#59; Ţĩмό Şąļσмāĸ's Q&A profile

&#169&#59; Ţĩмό Şąļσмāĸ

Member List

stang4lyfe
sherin
Thilakavathy
Devan47
RMan54
ShivaanKeldon
I am Josha
Luis Esteban Valencia MCP.
SCRunner
Mitch Wardrop
Stéphane Beauchemin
bhavu
ks06
Peter Peter
Stefan Wenig
good1ed
dops141441
gafferuk
Biceps
CsNetworks
Only Title

&#169&#59; Ţĩмό Şąļσмāĸ's Q&A profile

  • Visual Studio 2008 (Pre-release) Problem with Menus and Frames with HTML source

    In a Browser Application, I have a Menu and a Frame on a page and the page opens a web page inside of a Frame. The problem is when the Frame source is a webpag, the menu drops down BEHIND the Frame. If the Frame source is an xaml page, the menu drops down in front of the frame area like it should. Is there any way around this Example: (the amount of menu items is necessary to see that the menu actually does open up and it is under or behind the frame) < StackPanel > < Menu > < MenuItem Header = " Menu " > < MenuItem Header = " Item " ></ MenuItem > < MenuItem Header = " Item " ></ MenuItem > < MenuItem Header = " Item " >< ...Show All

  • .NET Development Exporting contents of Grid View to excel spread sheet. Is AJAX possible?

    Hi, How can the contents of a Grid View in ASP.NET2.0 be exported to an excel spread sheet. Currently I have a search screen, where there is a facility to export to excel sheet. The Grid view uses pagination to display the records depending on the user preference(say 10 records per page). But while i export to Excel, I need all the records which match the search criteria to be in the excel sheet. Can someone please give pointers to how i can do this Also can I use AJAX for this Hi, Thanks!!! Does this export all the rows in the Grid View to the excel or only the rows which are currently displayed in the page. In my application even if there are may records returned(say 350 records), o ...Show All

  • .NET Development My .exe file is not running outside bin folder??

    hai guys, this problem is making a head- ache to me... i have built a console application in the .net1.1 with vs 2003 .its working fine while debugging or running.even its working  fine by running the .exe file directly when it is in bin folder. but if i take out the exe file and running out side the bin folder...its showing err. it is showing a nullreference error saying that the connection string(database) is not passed..actually i have passed the connection string..thirough app.config  file. this time..i have brought .exe.config file to the same location.now it is showing the "applicationblocks.dll is missing." even though  i add reference. if i taken the entire bin its working fine in my ...Show All

  • Windows Forms Installing 2 click once application

    I have two click once application. When I install one app, I want to install the second one with out asking the user to install the second one manually. Is it done How can it be done Thanks. ...Show All

  • Windows Forms How to add non-selectable items into a combobox

    I'm trying to achieve a parent/child layout in a combo box drop down where the parent items are not selectable and the child items are. Colors blue red white In the above example, if the user clicks on the parent item 'Colors' the drop down list will remain open as the item cannot be selected. I know this is possible via MFC by subclassing the listbox control. Is it possible in Windows Forms (C#) Hi, The post discusses how to disable the item in the listbox, hope it helps in some extent. Or you can implement the DropDown event and do not show the item you don't need. ...Show All

  • Visual Studio Express Editions How to setup include/library for nmake (outside VC IDE)

    I'm porting a program written for Linux to Windows and am using nmake to build the project by 'translating' the GNU makefile to VC++ makefile. My developing tool is VC++ 2005 and Windows 2003 SDK SP1. There are several questions I'd like to ask here. 1. How to specify include and library path my program needs, or what are the equivalent nmake commands for the lines below LIB_DIR=/usr/local/vs INC_PATH = -I $(LIB_DIR)/include LIB_PATH=-L $(LIB_DIR)/lib LIB_LIB=-lvs -lnr SYS_LIB=-lGL -lGLU myapp.exe: file1.obj file2.obj $(link) -out myapp.exe file1.obj file2.obj $(LIB_PATH) $(LIB_LIB) $(SYS_LIB) file1.obj: file1.cpp $(cc) $(INC_PATH) file1.cpp 2. How to specify system include/library path. Fo ...Show All

  • Windows Live Developer Forums VE Map Control in Thick Mobile Client Application

    Hi, I have used VE Map Control in Windows Application on desktops and they work fine. My understanding of how it works is as follows VE Map Control is web control which uses javascript to make Web Service Calls and gets the data. For it work on a Windows Application we use Web Browser Control. As we have seen the maps come up fine on Pocket IE, we are looking at the possibility of replicating this scenario on the Mobiles The possibility we are looking at is [Thick Mobile Application + Web Browser Control + VE Map Control + Internet Connection ] on a Pocket PC emulator Do we have support of > Web Browser in Windows Mobile (We think it is there) > Javascript in Pocket IE ( We thi ...Show All

  • Windows Forms Strange behaviour of the stored procedure for SelectCommand

    Hi, all! I've met a strange situation. I have a stored procedure: ALTER PROCEDURE dbo.GetTemp AS begin insert into dbo.log (ProcName) values('GetTemp') select * from TempDB end This procedure is set as SelectCommand property for TableAdapter. When the Fill method for this adapter is invoked, the DataGridView gets the data from, but nothing is added to the dbo.log table. When I start this procedure manually, everything works fine. What is the reason Is SelectCommand somehow prohibit any changes in DB Thank you in advance Well, I don't need to update the table. I just want to add to the log table a record each time when data from other table is retrived... ...Show All

  • Visual Studio When will VS 2005 and VSS 6.0 work?

    Open vs 2005, select "pending checkin window" for about 10,000 files wait 45 min to 1 hour.. I think you misunderstood me Ray. We do have perf and regression tests for both VS 2003 and 2005. I was just saying that I personally was not in charge of Perf testing, so I could not tell you an exact Perf numbers for different versions of VS. I was only in charge of testing the fix for the pending checkins window for the SP1 which was a regression from VS 2005 RTM. BTW, what breaking problems are you encountering which is a regression besides the bug that was introduced by SP1 Beta and fixed for final SP1 Also, what basic performance problems are you seeing that has regressed from VS 20 ...Show All

  • Software Development for Windows Vista In July CTP, using StateMachineWorkflowInstance to obtain CurrentState freezes workflows in that State

    Dear all, I have a working StateMachineWorkflow hosted under asp.net 2.0. I have written a simple routine (shown below) to interrogate the current state of a workflowinstance: public string WfCurrentStateDescription(string WorkflowInstanceId) { // Get the workflowRuntime which was started in global.asax WorkflowRuntime wfRuntime = (WorkflowRuntime)Application[WorkflowRuntimeKey]; StateMachineWorkflowInstance wfInst = new StateMachineWorkflowInstance(wfRuntime, new Guid(WorkflowInstanceId)); return wfInst.CurrentState.Description; } I find that, once I have called this on a workflowinstance, that instance gets "stuck" in the current state and never transitions to the next state, even though code appears to get c ...Show All

  • Visual Studio Team System .vsmdi file with large number of tests and testers

    Our QA team (~50 people) have been adding, organizing and running test cases in VSTS for weeks now. Since the number of test cases is pretty big (~5000+ manual) they always have problems with the .vsmdi file. Every time they create a new test case the .vsmdi is checked out automatically by VSTF because test solution is under source control. In most cases several test cases are created and added to lists by different testers at the same time, leading to a multiple shared checkout scenario on the .vsmdi file. The problem starts when they try to check-in the vsmdi file... In many cases they overwrite each other changes, loosing test cases and entries in the lists... We tried setting up all the clients to perform exclusive checkouts by d ...Show All

  • Visual Studio Team System MSF CMMI and Employee Performance Appraisals

    Ok, this may seem like a bit of an odd question. We are piloting MSF (specifically MSF using CMMI) using VSTS. One thing we are running into is how our team (using MSF) interfaces with the rest of the company. Specifically we have an existing performance appraisal process that is based on a hierarchical (and matrixed) management structure. That doesn't seem to fit at all with MSF. We are trying to figure out how employee performance appraisals and/or evaluations would be completed in an MSF team environment. Does anyone have any experience with performing evaluations in an MSF based team TIA Besides what Alan mentioned, the Employee Performance Appraisals topic is better handled by People CMM . CMMI-SW per se is focused on Orga ...Show All

  • Software Development for Windows Vista Linksys wireless usb problems with vista

    I have been having problems with the pci and usb Linksys wireless adapters when I installed windows vista RC1 build 5600. It always gives me these errors: Can't load ProcNIC'sdll and Can't load Res_dll Maybe I need to find drivers for windows vista and if they are not there then I guess I will have to wait until they do. The only problem I see with windows vista is the networking problems. I have seen other posts for network problems so I guess I am not alone. I have a Linksys WUSB54GS wireless card that connects to a Linksys WRT54GS.  I have installed Vista enterprise  multiboot option with XP.  I installed the XP drivers on VISTA ok for my wireless card and was able to see my wireless ...Show All

  • Visual Studio How to catch "The application cannot undo" message?

    Hello, I used OpenLinkedUndo method with mdtStrict flag to open linked undo context for the changes in my main editor and some other opened documents in my VSIP package. After I closed the undo context, user can edit the files I changed. But, if user tried to undo the changes in my main editor, it got the message box with " The application cannot undo " message. Could I catch the exception and display my own message box because the default is not infomative for user Is there any possibility to do it Thanks. If you are adding your own custom undo units you may be able to implement the new IVsQueryUndoUnit interface, and if you can do enough detection yourself to spot a situation which will ...Show All

  • Visual C++ Project : error PRJ0002 In a CLR Windows Forms Application

    Hi, when i make a new CLR Windows Forms Application and try to compile it I get this: Project : error PRJ0002 : Error result -1073741819 returned from 'C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\bin\resgen.exe'. Here is the Build log: Build Log Build started: Project: Ex1_05_1, Configuration: Debug|Win32 Command Lines Creating temporary file "c:\Documents and Settings\Mito\My Documents\Visual Studio 2005\Projects\Ex1_05_1\Ex1_05_1\Debug\RSP00000135603528.rsp" with contents [ /Od /D "WIN32" /D "_DEBUG" /D "_UNICODE" /D "UNICODE" /FD /EHa /MDd /Yu"stdafx.h" /Fp"Debug\Ex1_05_1.pch" /Fo"Debug\\" /Fd"Debug\vc80.pdb" / ...Show All

©2008 Software Development Network