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

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

bryceflorek

Member List

dumian
sqlbomb
Michael Weed
CodeSweatAndBeers
Jesús López
Kartit
Jeanne P
Giber
MikeLR
Allen White
zoomer
Disk4mat
Amos Soma
Henri20
vishnu_gawali
kallusin
RavindraPatil
skeezwiz
Shilei
Rizzlers
Only Title

bryceflorek's Q&A profile

  • Visual Studio Property Group being redefined in Target

    Hi. We are using MSBUILD for our build where the version control tool is Surround. I see a MSBUILD target file, where in a Property group is defined <X> with details to configure surround like the login, server, branch details etc. However I see the surround configuration being redefined in a separate Target where each of the properties defined in the earlier Property groups are reused and the output is another property name <X>. Can anyone please help me to understand why is this for. Why cant the earlier Property group be used for this purpose. Why is it needed to be redefined in a separate Target Any help would really be appreciated. Thanks Kumar nayak wrote: Why is it needed to be ...Show All

  • Software Development for Windows Vista why is my application getting elevated?

    Hi, Strangely, even though i don't include "requiredAdministrater" in manifest file, it gets elevated. The executable file name doesn't contain any of setup, install or any of those words that vista uses for heuristic detection. Where else should I check to prevent elevation I'm using visual studio 2005 sp1. Thanks in advance. A pplication gets the Elevation Prompt, if the application tries to access(read/write) any RegKeys/Files which require administrator privileges. Please run your application through "Application Verifier Tool", This says that Which file/Regkey access needs the administrator privileges. You can download Application Verfier Tool from http://www.microsoft.com/downloads/d ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Memory Leak?

    Heya, I've been working on this 2d game for about a month and a half. A space shooter with a ton of animations. But thats not the problem the problem is recently as the amount of Images has increased I've noticed that the memory usage never stops going up as the game progresses. I know there is some kind of flaw or redundancy in the way i store textures now since the release of beta2 and the content manager. However What would cause memory to keep adding up until the game begins to stutter The structure for storing textures was done before the content manager so it is just a Dictionary class that loads and gets textures loaded via the content manager. The UnloadGraphicsContent method in the game unloads the content mana ...Show All

  • Smart Device Development skipping among controls of form

    when navigate through controls that placed on Form (or panel), the ‘next’ of the last placed control is the first control that placed on the form (with the assumption that we keep the tab order..), my question how can I change the form behaviors that when last control is focused, this skipping will not take place (the only way to move will be up), like all the native menus of the WM OS. thanks, Oren the first control in my form is label and a textbox beneath plus other controls. when the user scroll down, and the form scroll the client area, when moving back up, only the text box got focus (which is actually good) but this behavior cause to a situation that the first label will not appear ...Show All

  • Visual Basic How to create a dockable ToolBar type App. with Auto-Hide etc.

    Hi, Anyone know of an online tutorial to create a dockable toolbar type application please    Application to also have: 1) Always On Top option. 2) Is registered in the ToolBars dialog when you select the Windows TaskBar "ToolBars" option. 3) Has an Auto-Hide option. 4) Has a LOCK option. 5) The dockable option needs to dock with any side, top or bottom of the windows GUI in the same way the TASKBAR can be at the top, bottom or either side.   A short simple example would be ideal please.  I know it's a lot to ask, sorry .   Regards, S_DS   Hi http://msdn.microsoft.com/library/default.asp url=/library/en-us/shellcc/platform/shell/programmersgu ...Show All

  • Visual Basic Strongly Named DataSet

    How Can I Creat Strongly Name Dataset using the .xsd file Please explain me step by step because i don't have any idea how to create it But i want to use it in my project. SPPatel, Please take a look at this article with its link below: How to create and use a typed DataSet by using Visual Basic .NET or Visual Basic 2005 http://support.microsoft.com/kb/315678/ This article shows how to create and use a typed DataSet in a small Web application. Typed DataSets, which inherit from the DataSet class, create first-class members of a DataSet's DataTables and DataColumns, yielding the many benefits that come with the use of strong typing. ...Show All

  • Windows Forms How to Remove ListItem from a ListBox

    Hi friends when i try to remove ListBox item(ListItem) its giving error error : List that this enumerator is bound to has been modified. An enumerator can only be used if the list does not change. i have only ListItem objects in my ListBox and my code as follows foreach ( ListItem removeitem in listBox1.SelectedItems) { listBox1.Items.Remove(removeitem); } any help pls, Regards Ranadheer. Try this int SelItemCount = listBox1.SelectedItems.Count; for (int i = 0; i < SelItemCount; i++) { listBox1.Items.Remove(listBox1.SelectedItem); } ...Show All

  • .NET Development Failure in background thread is not terminating my application

    Hello, I have Windows form which launches background thread, failure inside that thread (unhandled exceptions) and not crashing main application. If it would crash I'll at least see what was error message but now I have no idea how to find the reason for exception in background thread. The only way for me to see the issue is to do processing on main thread and then unhandled exception will in fact crash application and will tell me what happened. How do I properly debug in this scenario except for attaching in VS to running process So you do start that thread and give it a thread function to execute. Is that Thread function a method of the main form class or a separate class If seperate give it a ...Show All

  • Windows Forms help me in Datadridview and BindingNavigator in vb.net 2.0

    Hi, I have a rewquirement in my Appln. ie.. in my appln, In 1st form i have a datagridview Control,In 2nd form I have a BindingNavigator control. When i press a next button in bindingNavigator, I have to display the selected row fields of datagridiew contol of form1, in Text boxes of 2nd form. Please help me. On Form1 1) Add a DGV 2) Add a Binding Source 3) Add a button "open form2" In the form loadevent of form1, add the following code Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim dt As DataTable = New DataTable() dt.Columns.Add("Col1") dt.Columns.Add("Col2") dt.Columns.Ad ...Show All

  • Windows Forms Send keystroke to another application

    I am writing a little tool for a friend who works behind the scenes for TV shows like Criminal Minds and CSI. He needs an application that simply sends a keystroke to the foreground window. Do you know of an API that can accomplish this task that can be used in c# of vb.net Thank you in advance, Steve Bostedor Bozteck Software http://www.bozteck.com sure use the SendKeys Class! http://msdn2.microsoft.com/en-us/library/system.windows.forms.sendkeys.aspx http://msdn2.microsoft.com/en-us/library/system.windows.forms.sendkeys.sendwait.aspx ...Show All

  • SQL Server Creating a dynamic excel file

    Is it possible that i can create a dynamic excel file (destination) ex, i want to create a Dyanamic Excel destination file with a filename base on the date this will run on jobs. Is this possible 11172006.xls, 11182006.xls Jaegd, Not sure if that will work. I am working on a similar problem now. I am trying to load the contents of a table into an Excel file every week with a datestamp in the filename. I've tried a few approaches but haven't found a good solution yet. But here's what I found so far. 1. The first approach was to dynamically configure the connection string or filename property of the excel connection to generate a unique name every week. In design time, you will have no pr ...Show All

  • Visual Studio 2008 (Pre-release) Is NET 3.0 only for new OS?

    Is the new NET 3.0 only for new OS excluding Windows XP Thanks, Lorenzo .NET 3.0 is avaialble for windows xp,windows 2003+sp1,vista,you can find more info here http://msdn.microsoft.com/windowsvista/support/relnotes/netfxjunectp/default.aspx ...Show All

  • Visual C++ Paint' : cannot convert parameter 1 from 'struct HDC__ *' to 'long'

    Paint function in microsoft visio viewer 2003 is like this: [id(0x60020035), hidden, helpstring("hidden method Paint")] HRESULT Paint( [in] long HDC, [in] long X, [in] long Y, [in] long Width, [in] long Height, [in] long SrcX, [in] long SrcY); but when I use the following codes to call funcitons: IViewerPtr m_Viewer( _T("VisioViewer.Viewer") ); CString strFunction("D:\\Program Files\\Microsoft Office\\Visio Viewer\\1033\\SAMP_VDX.VDX"); BSTR b = strFunction.AllocSysString(); _bstr_t b1 = b; m_Viewer->Load(b1); SysFreeString(b); m_Viewer->Paint(pDC->m_hDC ,10,10,200,200,20,20); there is the following error, please tell me how to solve ...Show All

  • SQL Server how to set default value for datetime column in sql mobile?

    I try to set a default value (getdate()) for a datetime culomn in sql mobile, but got error when i insert record: there was a syntax error in the date format. [expression = getdate()] may be I can only set a exict date I can repro the failure you are seeing. On Searching BOL for sql mobile, It says the following about the default definitions for columns. DEFAULT Definitions A column can have only one DEFAULT definition. This can contain constant values or constant functions. You should post this to the SQL Server Everywhere/Mobile/CE Edition Technical Discussion forum. ...Show All

  • Visual C++ Run only one application

    Hi, I want to create application that can only be executed once. I mean like MSN, once you have run it and you execute it once again, the previous program window will appear. Can someone please show me how to do it Thank you idos wrote: Can someone please show me how to do it HANDLE hMutex = CreateMutex(0, TRUE, _T("MyUniqueMutex")); if(!hMutex) { // Mutex creation failed, deal with that return -1; } else if(GetLastError() == ERROR_ALREADY_EXISTS || GetLastError() == ERROR_ACCESS_DENIED) { // Already running, deal with that return -1; } // Woho, this is the only instance ...Show All

©2008 Software Development Network