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

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

DougInGeorgia

Member List

Programm3r
DigitalNoise
Tryin2Bgood
MarlAtkins
ReneeC
CKLEIN
Burrough
jd_cowan
JamesC2000
flash.tato
Yann.G
Andreas Kammann
samame
yhal
Fradam
Wayne Sepega
AvalonNewbie
Vale Surfer
xavito
Vic1234
Only Title

DougInGeorgia's Q&A profile

  • Microsoft ISV Community Center Forums vba array?

    i'm trying to design a front end for a database and have no idea what im doing i have a form which is opened up several times and info needs to be stored somehow each time a new form begins, a guy i know seems to think creating some sort of array for each of the fields contained within the form will work however i have no idea where to start the feilds contain both numerical and text content. hope some one can help my boss has got me doing thins as i finnished my original task early please help Hi Claire Which application do you use to open the form The form application may be key to the method used to store the data. Do you have Microsoft Access ...Show All

  • Windows Live Developer Forums Java & Windows Live Mesenger Compatibiliy Issues with Windows Vista Ultimate 64 bit

    Ok! I hope someone out there will be able to give me a hand with respect to this issue! I've recently changed from XP over to Vista Ultimate X64 and I have to say I'm starting to get over (and rather frustrated) with the whole "WOW" experience that is Windows Vista! The lack of drivers I can live with but problems with software built by Microsoft is a whole over ball game. Specifically, what my problem relates to is that in connecting up to WLM, the program only takes me as far as the contacts menu before it subsequently crashes with only a pop-up box stating that "Windows Live Messenger has stopped working" whilst simultaneously attempting to obtain a solution of the internet which is consequently not forthcoming. In seeking to obtain ...Show All

  • Visual FoxPro S/P 2 (BETA) Errors

    How can I roll-back the S/P 2 beta for VFP9 I didn't realize it was a beta and downloaded it. Now I am getting table errors with exception codes and VFP9 shuts down. Can I uninstall and reinstall VFP9 then S/P 1 Only way is to reinstall VFP and SP1. SP2 is a Community Technology Preview (CTP) and thus a pre-beta, not to be used in anything but test systems. It is buggy by definition. ...Show All

  • Visual C++ Winsock 10048 error

    I have a stress test application which spawns 100 threads and then communicates through TCP to a server on the same machine. The connection code looks like: bool CSockConnector::Connect( const CInetAddr &Addr, CSockStream &Socket) { Socket.SetSocket(socket(AF_INET, SOCK_STREAM, 0)); if (Socket.GetSocket() == INVALID_SOCKET) { // printf("Cannot create socket: %d\n", WSAGetLastError()); return false ; } if (connect(Socket.GetSocket(), Addr.GetAddr(), Addr.GetSize()) != 0) { printf( "Connection error: %d\n" , WSAGetLastError()); return false ; } return true ; } As one can see the code is pretty clean. However I have the problem that some time ...Show All

  • Commerce Server CSF and OrderDiscount

    Are CSF and OrderDiscount related or do they work together i.e. If CSF selects discounts then does OrderDiscount use this discounts only or OrderDiscount again fetches all discounts and evlaute them to apply Is there anyway where pipeline component before OrderDiscount selects the discounts to be applied and OrderDiscount only applies them Also, OrderDiscount documentation specifies about item_product* property. If component needs to modify or set some item_product* property then how should one go about it how is collection of item_* properties stored in Order dictionary CSF is used for targeting of ads and discounts. The Advertising and Discount pipelines are both of type CSFPipeline. OrderDiscount ...Show All

  • Visual Studio 2008 (Pre-release) Dashed Line

    Hi together, Is it possible to draw a dashed line in WPF. I didn't find any option for doing this with the Line class. I can only define some stroke properties: Line myLine = new Line(); myLine.X1 = 0; myLine.X2 = 100; myLine.Y1 = 50; myLine.Y2 = 50; myLine.Stroke = Brushes.LightSteelBlue; Any ideas Cheers, Franz Use StrokeDashArray: Line myLine = new Line(); myLine.X1 = 0; myLine.X2 = 100; myLine.Y1 = 50; myLine.Y2 = 50; myLine.Stroke = Brushes.LightSteelBlue; DoubleCollection dashes = new DoubleCollection(); dashes.Add(2); dashes.Add(2); myLine.StrokeDashArray = dashes; myLine.StrokeDashCap = PenLi ...Show All

  • Visual Basic My program will not run

    On wednesday night i was working on my program( a visual basic tutorial). I added in a textbox and then went to run my program when it would just show me the source code. I didn't get a compiler error or anything. I checked for duplicate identifiers and found none. I tried to remove this newly added textbox and when i tried to run the program again, it once again sat there just showing me the source code. Any idea what is wrong Im only using one form. Hi, Homefry39, We're going to need some more information here to help you out. What tutorial was it, what code was in there, and also what do mean by it would just show you the source code -- do you mean that it was just showing you the IDE and that y ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Workaround to make XNA GSE work on Vista RTM?

    It is not supported of course, but since Vista is locked down and shipping, is there a workaround to install Beta 2 of XNA GSE on Vista Repro steps: On Vista RTM Install C# Express Launch XNA GSE Beta 2 When it is "registering templates", an error message about C# Express closing down appears XNA GSE Installation app errors as well, saying that something went wrong Installer reverses all the installation... I managed to install in on RC2 by running the .msi installation from an elevated command prompt Of course, after installing the SP for C# ...Show All

  • Visual Studio Express Editions Looking up Username n password from login form to access database

    I have this login form and i want it to be able to do... When you click 'Login' - It will take the Text out of the username textbox and look for a match in the database table and then when it find it, it will look at the password in the next column and see if it matchs the password textbox http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=638452&SiteID=1 ...Show All

  • Windows Forms How is {Name} property handled in designer?

    I have some strange things happening with my controls concerning the Name property. I have a custom user controls in a custom forms designer. If I change the {Name} property of my user control through a Property Grid control, it doesn't call the set method of the UserControls Name property. The name is set, because the Property Grid recognizes the new name, but if I reference the controls overridden Name property , it still holds the old name. It is causing me major problems. It is really strange. Here is what I'm seeing. This method removes a control that I have from an internal array. It is called by the Change service when a component is removed. public void RemoveControlFromControlArray( DisplayObjBase dob) { ...Show All

  • Architecture optimistic concurrency with daab 2.0

    is there any best practice to implement concurrency with daab 2.0 as i see it don't expose the rowchanged event, but returns rowsaffected. Shall I compare the ds.getchanges().count with rowaffected or there is something better out there I would like to return rows to the user for selecting if he wants servers or clients rows. Thanks Well, this is all that i have found. I will do it but with a set of rows instead of row by row. The part of concurrency is at the end. http://www.codeproject.com/smartclient/SmartClientSOA.asp ...Show All

  • Smart Device Development How to set menu bar's font size?

    How to set menu bar's font size Thx. ...Show All

  • Visual Studio Express Editions Update Method Problem

    I'm struggling with a problem I am having with the update method when saving data that has been added to a datagridview. I have 2 forms. One form called Price_History that has a datagridview. The other form has several fields based on a different table and it is called Tracking_List. I have a button on the Tracking_List form that once fields have been entered, it saves the record and also sends data to the datagridview in the Price_History form. I have the following code on the Tracking_List form to save the data that was passed to the Price_History form: Dim newRecords As DataDataSet.Price_HistoryDataTable = CType (DataDataSet.Price_History.GetChanges_ (Data.DataRowState.Added), DataDataSet.Price_HistoryDataTable) Pri ...Show All

  • Visual Studio Team System BadImageFormatException on Microsoft.TeamFoundation.Client.dll

    Hello, I am just starting to work with the Team Foundation SDK and have added references to the Microsoft.TeamFoundation.dll, Microsoft.TeamFoundation.Client.dll and Microsoft.TeamFoundation.WorkItemTracking.Client.dll. I've written some simple code to create an instance of the TeamFoundationServer class. The app builds and executes, but when I step in the debugger into the function to instantiate the TeamFoundationServer I get the following exception: System.BadImageFormatException: Could not load file or assembly 'Microsoft.TeamFoundation.Client, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. An attempt was made to load a program with an incorrect format. File name: 'Microsoft.Te ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Converting Pixel Position to First Polygon Hit

    I'm looking for a straightforward way to identify the first polygon intercepted by a ray from the camera at a certain pixel position. For example, let's say the mouse is clicked at position 127,345: Supposing I have an List or other collection that contains a record of the polygons currently rendered, is there a recommended algorithm for identifying the first front-facing polygon intercepted by the ray (thus allowing the ability to identify the "object" that the user clicked on.) The best advice is to wait for the Content Pipeline to be shipped. One of their Model classes will almost certainly include this ability. In managed directx it was "Mesh.Intersect". If you have any other part o ...Show All

©2008 Software Development Network