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

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

SoGa

Member List

Scott Lyon
svarghese
Olle Gustafsson
DeadlyEvilRyu
Seiggy
shinoy
Shan McArthur
billqu
ntsoo
flarmon
Bharat Gadhia
timmi o tool
C. Hunter
Patrick Huynh
AshishGupta
oksanaP
Anterian
dougakers
Jabber
ThE ViKinG
Only Title

SoGa's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. Animation sample

    MS had announce an animation sample some weeks before and you just told us, that i will be released soon, but the question is, what soon means...When will you release the example. All I need are some informations how to transform the bone matrices to absolute ones to transform the mesh. It helps a littel bit. If I understand it, this means that the following code should give me the absolute animation matrices to transform my Model with. public override ModelContent Process(NodeContent input, ContentProcessorContext context) { // node = the node with the animation data, that means a BoneContent type foreach (AnimationContent ac in node.Animations.Values) { foreach (string key in ac.Channels.Keys) { fo ...Show All

  • SQL Server Cursor and cursorless performance

    Hi I am doing the Serial Balance Report The data is given in a range format i need to culculate the balance,for your information below is an example Given Stock In Serial Range 10000 - 19999 Stock Out 15000 - 15999 Balance (this is what i calculate out) 10000-14999 16000 -19999 First Loop BEGIN --Given the Stock Out Get the Source Stock In and put it into another cursor(Normarlly just 1 record will found) SECOND LOOP BEGIN --calculation END END Previously Im using 2 cursor to loop and perform the calculation, due to the slow performance i change it to cursorless. I have found that the first 1000 of 55492(2 Month) data its use almost 10 min to finish up the loop ...Show All

  • Visual Studio Express Editions How do I convert .NET 2.0 Coding into VB 2005 Express Edition coding?

    How do I go about understanding and converting the coding of .NET 2.0 into the coding that Visual Basic 2005 Express Edition can understand You should check out - the following 2 utilities which will convert snippets of C# code to VB. http://www.developerfusion.co.uk/utilities/convertcsharptovb.aspx http://www.kamalpatel.net/ConvertCSharp2VB.aspx This way you can do you own conversions of whatever code you using. ...Show All

  • Windows Forms Dataset & DataGrid???

    I have a dataset that holds some data, and when i show it in the data grid i would like it to be editable, and changed in my dataset, can anyone send me a link or shed some light on how i should get this done you can use a CommandBuilder but usually if you have a Select command, it should be automatically generated for you. So...   this.da.UpdateCommand = new CommandBuilder(this.da).GetUpdateCommand(); then try to perform your update   I've also just noticed you did not pass the SqlCommand into the SqlDataAdapter constructor - this could be one reason why it is throwing the error ...Show All

  • Visual C++ Detected memory leaks!

    I obtained the following strings in the output windows when I exited my program. How to read it Detected memory leaks! Dumping objects -> {45} normal block at 0x013C1A60, 16 bytes long. Data: < qf f - - > E8 71 66 00 0C 91 66 00 F0 2D BD 00 C0 2D BD 00 {44} normal block at 0x013C0040, 16 bytes long. Data: < qf f / @ > E8 71 66 00 0C 91 66 00 A0 2F BD 00 40 12 BD 00 Object dump complete. Best regards, Jeremy I think that if third party library doesn't have debug information, it should break, but statck information is restricted. Is the program in Debug configuration ...Show All

  • .NET Development User credentials delegation from IIS on WinXP to SQL Server on Win2003SRV fails

    Problem: I am trying to create an asp.net website with integrated windows authentication to access SQL databases. IIS resides on WinXP and SQL Server on Win2000 SRV. Both are in the same NT Domain. IIS and SQL Server cannot reside on the same machine and a stand alone web server is ideal as the website needs to access multiple SQL Servers. IIS is set to Integrated Windows Authentication. The anonymous access in IIS settings is unchecked. The web.config file has Identity element set for impersonation <identity impersonation="true"> The machine running IIS & the SQL Server are set to be "trusted for delegation" in active directory. The domain user accounts that will be accessing the databases are not marked a ...Show All

  • Visual Studio Render .rdlc to PDF without Report Viewer control

    Hi, I'm rendering an rdlc directly to a PDF without using the Report Viewer control. I'm using code similar to that already posted on this forum for printing without the Report Viewer. Essentially I'm after an example whereby I can configure the datasource information programatically based on however many datasets I have in my report. So in the code below, I need to modify LoadSalesData() so that rather than use an xml file, look to see what datasets are in my .rdlc, populate them and then add them to my report. private void Run() { LocalReport report = new LocalReport(); report.ReportPath = "Report.rdlc"; report.DataSources.Add(new ReportDataSource("Sales", LoadSalesData())); private DataTable L ...Show All

  • Windows Forms Making advanced forums

    I am planning to make an advanced forum application that allows to register a user, register a user for different program and keep track of them, then write invoices. What would be the best way to do that. I used to use vb.net 2003, right now I am getting a free upgrade from msdn to 2005. I have noticed it has more features, would any of them help me to do what I need. I was thinking to have a collection of buttons, when you click on them they slide and give you more options. It is just I dont know yet how would be a better way to click a button have a different form showing up. I have played with mdi container and did not very liked it. I have allso found that 2005 has split container, would that work. Any help would be apprec ...Show All

  • Visual Studio Debugging nightmare - Help!

    I am going insane over this. I have a W2003 R2 server with IIS 6 and VS.Net 2005 installed.  The application server works fine.  The problem is debugging.  I load a simple project.  NOT on a remote workstation, I load VS.Net ON THE SERVER and run it there.  I go to start debugging and I get the error: "The debugger could not be started on the web server.  The debugger cannot connect to the remote computer.  This may be because the remote computer does not exist or a firewall may be preventing communication to the remote computer." - There is no remote computer.  This is all there is.  I think it exists. - Since I'm trying to debug on this server, I don't see how a firewall can affect it ...Show All

  • Windows Forms Debug Hang when dwelling on .Text

    I am working on a multiple thread C# application that communicates with a server. When i am debugging my code i try to see the content of a textbox by dwelling on the .Text extension of a textbox. The program hangs for approximately 15-20 seconds(Even if i pass over .Text). When i try and step to my next line of code(after hang) it jumps to the catch statement. The message i receive is "Thread was being stopped". It occurs with both threads running or the other thread commented out. It will also run correctly and step through if i do not dwell on the .Text extension. In this case txtSetupID.Text = "11111111". Any reason Why this is occuring Sample Code: try { ... blTempArray = BitConverter.GetBytes( ...Show All

  • .NET Development Cannot access file IOException

    Hi, I need to load a file which is being accessed by a windows service but i get an IOException with the message Cannot access file as it is being used by another process. Is it possible to load this file in some way. How does Notepad manage to get a handle on it Regards, tribal I have tried the following File .Open(filePath, FileMode .Open, FileAccess .Read, FileShare .Read) and I still get the same exception. ...Show All

  • .NET Development Telephony in .NET

    Hi I would like to know how to implement telephony in .NET. We have TAPI 3.0 but it is not supported in .NET so any replacement of TAPI in .net please let me know. HI Bochica Have u found a solution Is it possible to use the modem on the clients machine Looking forward to your reply Desperate!!! ...Show All

  • Windows Forms using windows addressbook

    Hi, I hav developed a mailclient in mfc...........into which i hav to embedded windows address book.......i refered.....msdn.......but sufficient information is not given........i know its is possible.............can any one.........come out with a solution.......its urgent........ Thnx in advance, Sudhakar. Hi, Sorry to say but this forum is dedicated to the windows forms instead of MFC. They have something in common both focusing on the windows desktop application, but mfc seems out-dated and isn't suitable to be discussed here. ...Show All

  • SQL Server x64-Bit Install of SQL Server 2005

    I have a AMD 64-bit multi-processor server that is currently running the 32-bit version of SQL Server 2005 without any problems and we are using it. (I followed the instructions on how to install the x64 version of the v2.0 of the .NET Framework and it is running properly.) Now I want to move forward with installing the 64-bit version of SQL Server 2005 and the associated services such as SSIS, SSRS, and SSAS. The plan is to basically uninstall the 32-bit version of SQL Server and then just install the x64 version, Are their any issues with the installation I didn't see any 'read-me' on the x64 DVD disk. While we have lots of experience with 32-bit installations...this is our first x64 box...so I thought I should ask. Thank you. ...Show All

  • Visual Studio Team System CTP 7 on Team Suite, Schema Import - "statements were not fully understood"

    There are numerous statements like this: ALTER TABLE [dbo].[DCJStatTx] NOCHECK CONSTRAINT [FK_DCJStatTx_DepartmentDeptSchedule] GO ALTER TABLE [dbo].[DCJStatTx] NOCHECK CONSTRAINT [FK_DCJStatTx_EmployeeEmployee] GO ALTER TABLE [dbo].[DCJStatTx] NOCHECK CONSTRAINT [FK_DCJStatTx_JobOpenJob] GO ALTER TABLE [dbo].[DCJStatTx] NOCHECK CONSTRAINT [FK_DCJStatTx_JobStatusStatusCode] GO ALTER TABLE [dbo].[CustInvNotes] NOCHECK CONSTRAINT [FK_CustInvNotes_Division_AcctDivisions] GO ALTER TABLE [dbo].[CustInvNotes] NOCHECK CONSTRAINT [FK_CustInvNotes_CustomerNCustomer] GO ALTER TABLE [dbo].[QQOrderDet] NOCHECK CONSTRAINT [FK_QQOrderDet_ProductID_QQProducts] GO ALTER TABLE [dbo].[QQOrderDet] NOCHECK CONSTRAINT [FK_QQOrderDet_SizeIDQQSize] GO .... ...Show All

©2008 Software Development Network