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

Software Development Network >> Michael Herman - Parallelspace's Q&A profile

Michael Herman - Parallelspace

Member List

none33333333
KedarP
Beginnerrrrrr
UsingBytes
mshvw
aero1
Brad-RDA
Dietz
Insignia
Grotius
jph_problem
daniel.ef
reichard
Maddinel
Markgannon
Agrapha
user11
yogibear0810
Murom
Soumya B
Only Title

Michael Herman - Parallelspace's Q&A profile

  • SQL Server long running transaction blocking queue

    Hello, I seem to be misunderstanding the way transactions work with service broker queues. We have developed and deployed a service broker application that 5 queues and a windows service for each queue on multiple servers (3 currently). Due to a last minute issue, we had to not use transactions when the services executed a recieve and I am not updating the code base to use transactions and am running into blocking issues. One of the services runs for 90 seconds (spooling to the printer) and all of the servers block on the receive operation for this queue. I thought that if I was receving messages from a single conversation, other receives against this queue would not block. Thanks, Jim Stallings ...Show All

  • .NET Development Should Close() cause CloseReason.UserClosing in Form_Closing event.

    I have some code that does the following // Somewhere in the bowels of the code... if (myResult = DialogResult.Cancel) throw CloseDownQuietlyException(""); ... I catch this and issue .... MyMainForm.Close() This is caught in the Form_Closing event and I check the FormClosingEventArgs.CloseReason . For some 'reason' this is being reported as CloseReason.UserClosing . The documentation says this reason code is only returned by the UI. Am I misreading something private void AncestorForm_FormClosing( object sender , FormClosingEventArgs e) { switch (e.CloseReason) { case CloseReason .ApplicationExitCall: case CloseReason .FormOwnerClosing: case CloseReason .TaskManagerClosing: case ...Show All

  • Windows Forms Insert Query Failed Schema

    I am trying to run an insert query through the table adapter and I go into query builder and create the insert query, I click execute query and it works, but, when I try to save the query I get an error message with a yellow exclamation point under the search criteria builder saying 'failed to get schema for this query'. The two tables are identical. All I want to do is send the data from one table to another table. I don't get it. Here is the code. INSERT INTO [Test Input] (Name, Chart) SELECT Name, Chart FROM Test WHERE (Name = '1') Let me know if someone knows what I am doing wrong StringBuilder sb = new StringBuilder(); sb.Append("INSERT INTO [Test Input] ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. DrawIndexedPrimitive help understanding

    Hello, I am new here. I have a few books that cover DrawIndexedPrimitive and one says the parameters are for vertex buffer the other says index buffer My problem is I am trying to render my terrain in patches. Right now I have a 65x65 size terrain and want to render 4 patches 33x33 each one. So my call to DrawIndexedPrimitive is dxApp.d3dDevice->DrawIndexedPrimitive(type, 0, 0, NUM_VERTICES, indicesSum, NUM_POLYGONS); indicesSum += NUM_INDICES; and my mesh is all messed up when rendered Any ideas would be great. Thanks I was only calling it once per frame.... dxApp.d3dDevice->SetStreamSource(0, vertexBuffer, 0, sizeof(Vertex)); dxApp.d3dDevice->SetIndices(indexBuffer); dxApp.d3dDevice ...Show All

  • SQL Server Permissions

    hi all my computer = NZ3 (sql Server) my computer = the report server I can design / view / publish to local host (myserver) others in domain can only view local host (myserver) and no content so to test added one person - as content manager he can now see all reports - but when he goes to run gets the error cannot create a connection to the datasource I am using sql server 2005 standard where else should I be changing or setting permissions thanks jewel thanks Jens that enabled him to see now cool. So when I have a group set up - do I have to add each one in the Security Logins to enable this to work thanks Jewel ...Show All

  • Visual Basic database report

    hello, i'm using ADODB on my vb8-access. before on vb6 i use data report designer to prepare a print, but here on vb8, how can i do that, without using crystal reports i would like to design my report just like report designer, is it possible or are there any turn around for this thanks hello, i follow your suggestion about creating new connection, when i select Microsoft Access Database File, i got this error Format of the initialization string does not conform to specification starting at index 0. i cant go through from here, i cannot go to selection of Access File. any reason for this ...Show All

  • Visual Studio Tools for Office Disappearing Document ActionTask Panes with Word

    I've been working on a fairly complex Word VSTO application which is about complete, except for some intermitent strange behavior which happens after a document has been saved. When reopening the document ( either the saved one or starting the new one via the application word template) one of two things may happen. 1) the document action pane begins to display and then closes , leaving only the getting started task pane. it is not listed as a disabled application, logging off and back on will fix the problem as if it had been black listed 2) The Document Actions pane stays open, but the two actions pane controls which should be there are not visible, despite code (msgbox(me.ActionsPane.Controls(1).Visible) claiming the control IS ...Show All

  • Microsoft ISV Community Center Forums Passing on a value on an existing Access Report

    I'm currently fighting with an Access 2002 Report. Here's the thing... I've created a report based on a query i've created. The query itself displays a series of receipts which have been added to the database via certain form. However, the user wanted to interact with the Report in a way that he could determine the content of the report by selecting a period between x and y. I've done so by creating a Date Selection form which would pass a "WhereClause" to the Report in question displaying only the desired content. The next request was to have a total amount of receipts as well as the total price mentioned at the bottom of the page. So far i've added these two fields as "Unbound" at the page footer and i'm trying to pass on the infor ...Show All

  • Visual Studio Express Editions Problem with error C2059

    Hey all, I have just downloaded a SDK from raven software and it was ment to be compiled in Visual c++ but it was supposed to be v7 and I had to convert it to v8 to use it =( anyway here is the error ------ Build started: Project: JK2game, Configuration: Final Win32 ------ Compiling... WalkerNPC.c c:\projects\jedi_academy_sdk\codemp\game\q_shared.h(1242) : error C2059: syntax error : 'type' .\WalkerNPC.c(63) : warning C4005: 'sqrtf' : macro redefinition C:\Program Files\Microsoft Visual Studio 8\VC\include\math.h(309) : see previous definition of 'sqrtf' w_saber.c c:\projects\jedi_academy_sdk\codemp\game\q_shared.h(1242) : error C2059: syntax error : 'type' w_force.c c:\projects\jedi_academy_sdk\codemp\gam ...Show All

  • Visual Studio 2008 (Pre-release) Connecting a WCF client to a Service running on QNX

    Hi everybody, I’m trying to have a WCF client serviced by a Service C++ program running under QNX Neutrino. I have used GSOAP to generate the wsdl and xsd files and feed them to the svcutil to get a ServiceProxy.cs and an App.config files, all this had been done and when executed both programs seems to connect well but my WCF client crashes with the next error: "The request channel timed out while waiting for a reply after 00:00:57.6562500. Increase the timeout value passed to the call to Request or increase the SendTimeout value on the Binding. The time allotted to this operation may have been a portion of a longer timeout." Here are the wsdl and xsd files which were gotten from QNXService Header for soapcpp2.exe compiled with ...Show All

  • .NET Development computer name to ip address c# Activator.GetObject

    Hello How do I get the ip address for computers in a workgroup General Context >>>>>>>> C# Programming Language Windows XP Yes Windows Workgroup .. No Domain Controller .. No Active Directory Network Connections Properties Client for Microsoft Networks .. F and P Sharing for MS Networks ... NetBUI Protocol... Internet Protocol (TCP/IP) Activator .GetObject(elided) works and remote call is successful on single computer and cross computer is successful as desired. Ping IP address is successful. And file sharing is successful between the computers. Connectivity exists. Cross Computer Activator .GetObject(elided) works ONLY with ip addresss of remote computer, not name. I walk to the other com ...Show All

  • SQL Server How to populate a junk dimension?

    Is there any best practise to populate a junk dimension Should I just create the table and fill-in all the stuff using some SQL I believe most records in the junk dimension are static. A junk dimension consists of attributes/fields in the fact table that are neither measures nore foreign keys. This can be a order number or any other information that it is hard to build dimenion and hierarchies with. In SSAS 2005 the dimension guide will help you with this if you use the fact table as a source for a dimension. All attributes you choose here will be grouped under one fact table dimension name. When you load your fact table you load the junkdimension. HTH Thomas Ivarsson ...Show All

  • .NET Development Clustered SQL Server 2005 and ADO.NET

    We are considering setting up a SQL Server 2005 cluster. Is there a developers guide to writting applications for this environment What can we expect out of the box(s) Should we be writting additional code in our dataccess components to detect and handle when failover occurs Any advice most welcome. Thanks. BenW Thank you. How does one identify failover is occring has occured Do you have some code or pseudo code for this Thanks ...Show All

  • Visual FoxPro Proper practice - edit a table in a grid.

    Hello everyone; I have a very simple form with a grid. The grid's record source is set to a cursor which contains a subset of a single table: Select * from PriceList where acct = cSomeAcct into cursor curPl I would like to add an edit button on this form which will alllow the user to edit the grid and update the Pricelist table. My question: What is the recommended way of doing this I thought of a few ways including issuing a "delete" and then an "append from", or maybe updatable views. How would you do this Thank you all. In addition to Andy's response, the problem with this approach is you either get all the records in the grid or if the table is filtere ...Show All

  • Windows Forms how to get the values from grid view in textboxes

    hi all may be my question will be simple for you but am new to this so please let me know how to do this... am using a gridview control in my form.. am enabling edit and update control for the grid view when i click on the edit the label controls changes to textboxes... and when i enter the new values and clicking on update i should get the values from the textboxes and display it in my form there are 5 columns in my row which am editing and i ve 5 textboxes in my form please tell me how to get the values from the edited row to the textboxes .. tnx Go to the design mode of the web form, select grid and attach (in the properties window select the events icon) a handler to the RowUpdating event handler (double click the RowUpdating e ...Show All

©2008 Software Development Network