Software Development Network Logo
  • Game Technologies
  • VS Team System
  • SQL Server
  • Architecture
  • Visual C++
  • Windows Live
  • Smart Device
  • Windows Forms
  • Microsoft ISV
  • Windows Vista
  • VS Express Editions
  • Visual FoxPro
  • Visual C#
  • Visual Basic
  • .NET Development

Software Development Network >> Brian Grunkemeyer - MSFT's Q&A profile

Brian Grunkemeyer - MSFT

Member List

Fernando Gongora
WedgeSoft
stevantosic
Andres_Ghelarducci
Ed cramgo
Owen3
real green
Karen Mae Sapla
Rigeto
Sideshow Paul
Chadwick Posey
Golf_Novice
NiC_72
dlyford
Broomy
808
John V
Newbie10
Steven Kelly
cacooke
Only Title

Brian Grunkemeyer - MSFT's Q&A profile

  • Visual Studio 2008 (Pre-release) Desktop Resolution

    Hi, Is there any other way to retrieve the desktop's resolution without referencing System.Windows.Forms This is really frustrating because I would really like not to reference a whole dll just to obtain the screen resolution. Thanks, Jaco WPF has tried to isolate people from Pixel measurements so that we work well on high-dpi screens. However, I could imagine that the information would likely be useful in some cases. Can you tell us what scenario you are trying to achieve with the screen size...so we can understand At this point, we can't add much new API to the system...only extreme ...Show All

  • Visual Studio Team System Team Project Creation Fails because of Sharepoint

    OK this one is killing me.  I have done the install about 3 times and keep getting the same error.  When I go to create a new team project, I step through the wizard and click finish.  The wizard then goes on to create the Reporting Services Part, the Source Control part, and when it gets to Share Point it fails on authentication.  Everything is in a domain and I have used service accounts as specified per the install. Here is the kicker, when I am local (terminal serviced into team foundation server) all goes well, but when I am on my workstation it fails and does not give me a whole lot to go on.  It barks about p ...Show All

  • SQL Server MySql and Sql question

    The vast Majority of Hosting services use MySql so my Question is " Can MySql Utilize a SQL Database without alot of additional work " if not what needs to be done so the SQL Files can run on MySql.. Thxs in Advance ... No - the two file types are binarily incompatible. But you can install the ODBC driver for MySQL and run a single query in SQL Server to access the MySQL data directly inside SQL Server. Buck ...Show All

  • Smart Device Development Universal Remote using Infra Red

    We are working on a multi-purpose remote using Infra Red on PDA. So for that purpose, we are trying to read the Infra red Signal from the remote and sending the signal using the PDA. this is piece of code for sending and recieving the Infrared signal. This is just a check program. We read the signal and are sending the same signal again so that we can check if the device is responding. But the device does not seem to respond. The Data we are getting in the unsigned char Buf array when the Infra red signal is received is a series of 33 numbers in integer values . Is there a  meaning in them  The Data we read is a series of ...Show All

  • Visual C++ FileLoadException VC2005

    Hi I try to run my project (which run ok at VS 2003) on VS 2005 pro edition. The project include native c++, MC++, and C# projects with MFC GUI and C# GUI The project is build ok, when I try to run it, I get FileLoadException before it get to my main function. The additional error is : Could not load file or assembly "MyprojectName" or one of its dependencies. HRESULT: 0xE0434F4D The file MyprojectName.dll exist, and all of the dependencies which he need exist also. It look like that one of Microsoft libs missing but I do not know which libs is missing. I had the same problem in VS2003, and I find an application XmlSerializerPreCo ...Show All

  • Smart Device Development command prompt in pocket pc device

    hi, how to get the command prompt in the pocket pc device There is no "command prompt" on Pocket PC devices. You might be able to install console on to Pocket PC, for example: http://www.symbolictools.de/public/pocketconsole/index.htm ...Show All

  • Visual Studio Express Editions Reading textfile into listview

    Hi there people. I've got another question I hope you'll be able to help me with. I've been keeping track of a few things and have been saving numbers to a text file in a table type format. An example: Team Wins Losses Ties Games Played Team 1 4 2 2 team 7 1 0 8 etc etc etc etc etc All is ok saving it but now I'd like to view the data I've entered in a listview. I know how to read it with streamreader and split the strings (using "\t" becase I've made it tab delimited) but the thing is now, how do I make it know (the listview) when a new line is to be added My last approach I thought I co ...Show All

  • Visual C++ Initializing an array of pointers to functions

    I am writing a dialog based MFC appliation using Visual C++ 6.0. In my simplified test case, I added the following definitions to the header (TestDlg.h). typedef void FOO(); FOO show1{}; FOO show2{}; FOO show3{}; FOO *pfun[3]; At the end of the OnInitDialog() code (before return TRUE;), I attempted to initialize the array as follows: pfun[0] = show1; pfun[1] = show2; pfun[2] = show3; Each of these lines has compile error C2440: '=' : cannot convert from 'void (__cdecl CTestDlg::*)(void)' to 'void (__cdecl *)(void)' What is the proper way to initialize a function pointer array ------------------------------------ Two other t ...Show All

  • Visual Basic Where is windows application Equivalent of web.config?

    Hi fellow developers, I am new in windows app development. can anyone kindly advice where I can find a windows equivalent of web.config (in the web app terms) and global file I wish to create an application level variable to connection the sqlconnection object. thanks and enjoy your day, jimmy chan Check out http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnadvnet/html/vbnet04222003.asp Best regards, Johan Stenberg ...Show All

  • Visual Basic serial port ir decoder

    I have an application that I am working based around the LIRC principle to receive infrared signals from Sony remote controls and saving them in an MS Access database also converting to Pronto CCF format. The program will also transmit the code to any learning remote control. I’m using the CTS pin of the RS232 port for the input signal and im based my hardware from an elector article, which can be found here. http://www.bairesrobotics.com.ar/elektor/01-2002%20Infrared%20Transceiver%20for%20the%20PC%20(1).pdf http://www.bairesrobotics.com.ar/elektor/02-2002%20Infrared%20Transceiver%20for%20the%20PC%20(2).pdf Storing the data into access is no ...Show All

  • .NET Development Populating Multiple Typed-DataTables with one SQL query

    Hi All, I don't think this is possible, but if it is I'll be delighted!! I have a typed dataset with two datatables - lets say 'Person' and 'Car' - like this: Person - Columns: PersonID, Name, TelNum Car - Columns: CarID, PersonID, RegPlate, Colour . Each person can have mulitple cars.  Now imagine I want all the cars for people called 'Smith'.  In SQL this is easy - SELECT * FROM Person p INNER JOIN Car c ON c.CarID = p.CarID WHERE p.Name LIKE 'SMITH%' .  However, if I run that SQL through ADO.Net, it will just return one datatable with the columns from both tables in (which i know is normally desired). ...Show All

  • Visual Studio Express Editions Need help with for and pictureboxes

    I'm making a map editor to make maps Every tile is a picurebox. In the menu there is a command "New" wich will load all the default pics into the picturebozes, so you can make a new map i created this for statement dim i as integer For i = 0 To 391 PictureBox(i).image = My.Resources.Image_default Next i But this doesn't work. There is something wrong with the PictureBox(i).image Please help me. I'm using vb2005 Thanks in advance, Radexxion "There is something wrong with the PictureBox(i).image" doesn't really give much idea of the problem you are having. Have you created an Array called ...Show All

  • Visual Studio 2008 (Pre-release) How do I use the ScrollBar ?

    I am kind of having a hard time figuring out how to use the scrollbar. I have created my own Canvas that displays a document. So I have a viewport (wich shows a part of the document), and a document (wich is basically another Canvas). How do I calculate and set the parameters for the scrollbar now So that the scrollbar reflects size and postion of my two Canvases For example: How do I calculate size scrollbar's viewport (ScrollBar.Viewport) so that it  reflects the size of my Docment and my Viewport. What do I set for Scrollbar.Minimum and Scrollbar.Maximum Is there maybe an example around on how to use the ScrollBar I don't want ...Show All

  • Microsoft ISV Community Center Forums VB writing data to an Excel file

    I have run into a problem with what I believe is formatting my data that I am writing to my excel file with VB 6.0. Here is how I am writing now: Sub NestComplete() Dim ExcelSheet As String Dim RecordNest As ADODB.Recordset Dim CycleTimeMin As Integer Dim CycleTimeSec As Integer Dim CycleTime As Single TodayNestTotal = TodayNestTotal + 1 CycleTimeMin = Asabtcp1.GetDataWordM(1) CycleTimeSec = Asabtcp1.GetDataWordM(2) CycleTime = Round(CycleTimeMin + (CycleTimeSec / 60), 2) ConnectDB True ExcelSheet = "Select * from [NestData$]" Set RecordNest = New ADODB.Recordset RecordNest.Open ExcelSheet ...Show All

  • SQL Server SQLXML 4.0

    I just installed SQL2005 and VS2005. It appears that a new version of SQLXML is available, SQLXML 4.0. Does anyone know if this version is compatabile with SQL2000 I am going to use the SQLBulkLoad library. I could not find a download of SQLXML 4.0. Does anyone know how to redestribute this version of SQLXML Thanks I did some more looking and discovered that the SQL2005 installation CD includes SQLXML4: "Z:\ENGLISH\SQL2005\DEVELOPER\SQL Server x86\Tools\Setup\sqlxml4.msi" I can install this msi if .net framework 2.0 is installed. I plan to install sqlxml4.msi on every client workstation. We do n ...Show All

©2008 Software Development Network