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

Software Development Network >> Eric Brinkerink's Q&A profile

Eric Brinkerink

Member List

Arnoh
MMMalik
setareh
prk
hbilan
nbrege
sunny123
DeamonX
Ayooya
JosepMola
Impact247
NotMyself
mihooper1
Mega_x
DoanHaNam
vasudupe
dbcuser
Mike36
Yorker
Mystagogue
Only Title

Eric Brinkerink's Q&A profile

  • .NET Development Remote running

    Hi, is it possible to run an VS2005 application which lies on a server Because I've tried to but I've couldn't make it work. Thanks. Thanks for your reply. Although I enabled the ClickOnce Security Settings and set it to full trust, When I try to open a file I get an error saying that is still partially trusted. Any idea Thanks. ...Show All

  • Visual Studio Sum field in a Group Header

    Hello, How can I do a sum in group header. I need to display a total before displaying the details inside a group and I cannot doing this. If somebody cam help me . . . Regards , Hi, This could be accomplished by creating a subreport and place it in the header. Just hide the details of the subreport and just display the sum. cheers, Paul June A. Domag ...Show All

  • Visual Studio Team System TFS Email notification not working

    hi I am working with TFS build notifications.I am trying to automate the process of sending email notifications when a build completes.The project alerts have been setup.I tried using the bissubscribe tool to subscribe to TFS events,but I am getting the following error in TFSEvent log file.Please help me resolve this. Event Type:     Error Event Source:  TFS Services Event Category:          None Event ID:          3032 Date:               11/28/2006 Time:           & ...Show All

  • SQL Server Cannot configure SQL Server Express 2005 for remote connections

    Hello. I have SQLEXPRESS 2005 installed on my laptop running Windows XP Home Edition with SP2. I have an application that can connect to the local instance with no problem. The other day, I tried to configure SQLEXPRESS 2005 for a remote connection from my desktop. To date, I have been unable to figure out how to do this. I have followed the instructions posted at various locations on the internet, but to no avail. While I can configure SQLEXPRESS 2005 to allow TCP/IP connections, I have been unable to restart the server. Here is the pertinent snippet from the error log: <time> Server A self-generated certificate was successfully loaded for encryption. <time> Server Error: 26024, Severity: 16, State: 1. 2006-08-14 21:02:27.18 ...Show All

  • Internet Explorer Development Temporary Internet Files

    Why is it that if I go into Widows Explorer i can not find the temp internet folder I checked in the internet options where the folder is suppose to be located, but if I go to the folder(local settings) it's not there. While I'm browsing I can go to the internet options and look at the settings, view files, and nothing is there either. Doesn't IE7 store information like IE6 did Plus where is the cookie folder at go to "Folder Options"> View> Enable - Show Hidden File Folders > Uncheck - Hide Protected Operating System files. You will now be able to explore your Temporary Internet Files.  Your Cookies are now in the Temporary Internet Files Folder...I have not been able to find the ...Show All

  • SQL Server Giving understandable name to excel file when exporting with RS

    Hello every body, I'm trying to export excel file on with reporting services. My file has about 50 sheets and reporting services gives them the default name "feuille1, feuille2, feuille3, feuille4 etc....). I would like to give a valid and understandable name to that sheets. In fact i would like to give the name of each page to my sheet. The name of the page was specified in the report query. Could someone help me please... Thanx I do not think that is configurable but you can try asking that question on the SQL Server Reporting services forum: http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=82&SiteID=1 Even though it might not be the most fun task, you could always manually rename those sheets to have mo ...Show All

  • Software Development for Windows Vista Built in .rar not just .zip

    Would it be possible to have built in .rar support not just .zip or is it too late in development to implement it too late to develop and .rar is not a Microsoft product. As well as this, these forums are for software development and this subforum is for the UI Development for Windows Vista for your product. The best place to ask questions is over at the appropriate communities about Windows Vista: www.microsoft.com/communities Thanks! ...Show All

  • Smart Device Development using my .h files in C# project

    I would like to give a C# application access to constants/Structures and interfaces defined in C/C++ header files . They are use d by many other applications, and I do not want to redefine them in my C# code. How can i use my existing .h files in C# project.. I'm afraid that you will have to re-declare the types in C#... C++ and C# can be so different, that it's impossible to use C++ declarations directly in C#. You should look for P/Invoke tutorials to see, how data structures can be translated from C++ types to C# types. Here's couple: Here's introduction to Compact Framework P/Invoke, and some examples what C++ types maps directly to C# types (blittable types) http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnne ...Show All

  • Visual Studio Team System TF50612 Couldn't Remove Permissions for Group

    Hi, I can't remove a user from Team foundation Server Security Setting (Team -> Team Foundation Server Settings -> Security). I get: Couldn't Remove Permissions for Group TF50612: Failure creating access control entry, one of the specified actions don't exist Regards DDressel I added a windows user to Global Security. The user is in no Team Foundation group. I successfully removed all permissions for the user already. ...Show All

  • .NET Development What is the connection string to write for importing mixed data from excel sheet to data grid

    Please help me about this issue, so that I ll be glad to u.I used IMEX=1.but it is working for some limited rows I believe if you specify MaxScanRows=0 inside of the Extended Properties of the connection string, then it suppose to work. Microsoft suggests to do it that way in next KB http://support.microsoft.com/kb/278973/en-us ...Show All

  • Windows Forms Application.Exit()?????

    I wanted to know how can i do a check before I exit an windows application sort of like if a user clicks the X to close the form..I want to do a MessageBox.Show(are u sure u want to close", MessageBoxButtons.YesNo) and then maybe do if DialogResult == Yes then do Me.Close else I want to keep the form active....any help on how i should get this done Hi, All work fine...but if I call Application.Exit doesn't work because any events are raised. Why Application.Exit does not call OnClosing events of forms ...Show All

  • Visual Studio 2008 (Pre-release) Model generation wizard working backwards or is the programmer backwards? :)

    I have a table (again, using the video game stuff as my sample to play with): ID Title Description Rating (int, refers to the ID column in GameRatings) Type (int, refers to the ID column in GameTypes) Rating and Type both have foreign keys that point to the source tables GameRatings and GameTypes respectively. I have Associations in my Entity model that have produced classes called FK_VideoGames_TitleRatings and FK_VideoGames_VideoGameTypes. That all appears fine. However, I don't appear to have any navigation ability to allow me to do things like: game.Type.Name or game.Rating.Name Is there something I missed in the DB to allow for this automatic member generation, or, if the wizard doesn't do it, what do I have to do to my pre-generated ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Input Gain

    hi all, simple question, How i cann set the input gain with directsound i habe make a program to capture sound, but i want to be able to set the input gain too. Thanks in advice!! Daniel I don't believe DirectSound provides this functionality, but you should be able to handle this through the multimedia APIs that provide access to audio mixer devices. I found this Ask Dr. GUI article that covers the topic in VB using Win32 calls, you should be able to convert it over to whatever language you are using: http://msdn.microsoft.com/library/default.asp url=/archive/en-us/dnaraskdr/html/askgui10162001.asp ...Show All

  • Visual Basic Features of Sleep method

    Hi everyone, I was wondering, once the number of ms is fixed with Sleep method, is there any way to know how many time lack for to reach the end Thanks for any comment, The sleep method effectively suspends the application and gives control back to the operating system. If you need to countdown or do something similar you should look at the Timer control for a Windows Forms application or System.Threading.Timer. ...Show All

  • Windows Forms BindingSource: when to add form data to underlying list

    I have a BindingSource with an underlying list assigned as a datasource. I create the list from a flat file using the list contructor and then assign the list to my BindingSource's DataSource property. The BindingSource is assigned to a BindingNavigator. I use the Position Changed event to move data from the list to the form for display. This works perfectly for the MoveNext, MovePrevious, MoveFirst, and MoveLast events. Now I am ready to add a new record. My first thought was to use the AddNew event; however, the AddNew event is called prior to having entered the new data into the form. So, what is the proper event to catch for moving the data from the form to the empty record (which is created by the default AddNew processing) ...Show All

©2008 Software Development Network