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

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

MA2005

Member List

MunishGupta
MBarley
Sarwanan
Oscarfh
RayPowers
TACIR
SASTEAM
Jonas.S
Peter Tewkesbury
WXS123
Latso
eddy2705
hte
scdlewis
Dcoder85
igor1960
MA2005
Nadav Popplewell
qt1h00
He is Cool
Only Title

MA2005's Q&A profile

  • SQL Server keep together table groups

    Hi. I have a table containing two groups and a detail area.In the preview tab ,on some pages the second group and the detail area splits to different pages.I want them to be always on the same page.How can I do that This is amazing to me also. I've used Crystal Reports and Visual FoxPro's report writer, and both have simple checkboxes to "Keep Together" that you can set for any group. I haven't tried it yet, but what I'm wondering is if there's a way to use a subreport (or a table inside a table row ) because you can apparently set a table to keep together... Somebody please post if you've found a way... Thanks. ...Show All

  • Smart Device Development Error C2504: 'CCeSocket' : base class undefined

    I am attempting to port a Smart Device project from a previous version of Visual Studio into a Windows Mobile 5.0 project for PocketPC in Visual Studio 2005. I am getting the error mentioned in the subject where I have a class inheriting from CCeSocket. Has anyone else had this problem or know of a way to fix it This is code that worked just fine in its previous environment. Following might help you: http://msdn.microsoft.com/library/default.asp url=/library/en-us/vccore/html/C2504.asp Thanks, Achal, VSD, Microsoft ...Show All

  • .NET Development Not Sure of SQL Query - Code Attached

    I am building a small application that calculates the required fuel for a Boeing 747 based on route distance, winds, etc. I have created a small Access database and code that successfully opens and closes the database but I can't seem to figure out how to write a query to get the correct infomation from the database. Briefly, the database table has four fields, Altitude, NAM (nautical air miles), Time and Fuel. I want to search the database for the Time and Fuel required for the Altitude and NAM numbers entered by the user. I'm not asking for anyone to write the code for me, rather I need some guidance on how it's done. Can I write a SELECT statement that searches the database for Time and Fuel WHERE Altitude and NAM equal certain valu ...Show All

  • Windows Forms How to add duplicate datacolumn to datatable

    Hi All, How can we add a duplicate column to datatable. I already had a column named "Action" in my datatable, and i want a duplicate column to "Action". Note: Actually the datatable is being filled from dataset. I cannot change the Sql Query because those are predefined by analysts. Thanks in advance. You can not have 2 columns named action in your data table. You can add a datacolumn that uses an expression to copy the data to the new column. DataColumn dc = new DataColumn ( "Action2" ); dc.Expression = "Action" ; dt.Columns.Add(dc); ...Show All

  • SQL Server SSIS Packages Build Deploy Install Execute

    1) When I first developed the packages, I was able to run build, deploy, install & execute them from command prompt. 2) From stored procedure I got error: Error: 2006-10-24 14:58:54.62 Code: 0xC0016016 Source: Description: Failed to decrypt protected XML node "DTS:Password" with error 0x8009000B "Key not valid for use in specified state.". You may not be authorized to access this information. This error occurs when there is a cryptographic error. Verify that the correct key is available. End Error 3) Experts suggested to use package protection as Encrypt with password but still I could not succeed. 4) Now, we recreated the only package from which we kept password as before but while validation during insta ...Show All

  • Smart Device Development Smart Device Programming Working example

    Hi, I try to write a simple application with winform and web service for smart Device ( Pocket PC 2003 SE) in VS2005. In the toolbox, I could not find any object such as textbox, button or label controls at all. I downloaded some examples application for smart device in Microsoft website and none of them are working ( may be I do not know how to configure to make those work). Do you have any simple working example like "Hello Wolrd" for me to take a look Regards, JDang I did the same thing but the tool box is empty. I tried on other machines then I can see some controls on the toolbox. Perhaps, I have to reinstall Visual Studio 2005 and see if the problem goes away. J ...Show All

  • Visual Studio Class and Method Metadata Description for VS.NET Intellisense

    Hi, In VS when we make use of any inbuilt Class or method, we get a yellow color pop up description about that Class or method. However, I am not able to providde the same kind of descriptions for the classes and functions I have built. I need the description for the methods to pop up as these classes and functions will be consumed by other developers. I believe we need to make use of tags like C# : [Description] or VB.NET : <description> However, I am still unsure how to go bout it.... Can anybody help Thank you. - Goldy Verma Ok.. class library comments-xml file is in bin folder..and I get intellisense, member summaries and metadata in code ... but, shouldn't I ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. TotalRealTime behaviour

    I've used GameTime.TotalRealTime.TotalMilliseconds to access the wall clock time and it looks like it pauses when I drag the game window using mouse. Is it right and is it good :) In my case I need to keep the projectile going even in this case because my game is a network one and if the player drags the window all projectiles should fly in a synchronized manner on both PCs. I use DateTime.Now.Ticks as workaround and get what I need, but anyway I wanted to let you know about this effect. Well, in my case there is no dedicated server - there are only two players and they should share the same picture. That is really important for this game:) ...Show All

  • SQL Server Could not connect server from client machine

    Hi all I m a new member to this forum. Im a hardware engineer who rectify aome software related issues. Now our employees having problem with connecting their XP prof based clients to 2003 server from SQL query analyzer. I tried refresh sql server manager in server and tried restarting the server machine many times. sometimes it the client machine connects and disconnects immediately. i aslo tried changing the poll interval , but no use. waiting for a speedy solutin... i know this is as easy query. Hi mvramsubbu , A warm welcome to forum You need to digg more to get the Exact erro message refer Windows Event Viewer and SQL Server's Error Log for error and post them here so that you ca ...Show All

  • Visual Basic Write specific error to a text file?

    I have a vb.NET program that sends out emails, and I need it to write to a log file when it can't send emails to certain addresses. I need it to tell me what day/time, and what email address. I'm pretty new and I have never captured errors before. So far, I have the following error block: If _mailCounter.Text < MaxMessages Then 'DONT OVERLOAD MAIL SERVER Try System.Web.Mail.SmtpMail.Send(MM) Catch ex As Exception Err.Clear() End Try End If Any help is appreciated!!! Thanks! Tory Hi Tory; Just configure a trace listener in you application configuration file. Trace listeners can be configured through your application configuration file and turned o ...Show All

  • Visual Studio 2008 (Pre-release) Style ListViewItem and ToolTips

    I am trying to stylize all of the ListViewItems in my WPF app. I want add a new tooltip to each individual ListViewItem using a style. I keep getting the following error. Any suggestions Additional information: Cannot add content of type 'System.Windows.Controls.DockPanel' to an object of type 'System.Object'. Error at object 'System.Windows.Controls.DockPanel' in markup file 'WindowsApplication2;component/window1.xaml' Line 29 Position 14. Xaml follows: < Style TargetType = " {x:Type ListViewItem} " > < Setter Property = " ToolTip " > < Setter.Value > < DockPanel > < Image Source = " http://images.slashdot.org/topics/topicmusic.gif " /> </ ...Show All

  • Visual Studio Team System Sharepoint sites for TFS disappeared

    Hi Today I noticed a big problem with our TFS test server, the SharePoint sites for all the team projects are gone. The sharepoint sites haven't been visited for a few weeks due to the summer holidays, but they were certainly not deleted on purpose. This is not a big problem however, as these were only sample sites. The big problem is that it's not possible to create new team projects, I have tried both repairing and reinstalling SharePoint, but this doesn't seem to help. I would prefer not to set up everything all over again, so if anyone can help me get back on track I'd be very happy. Would you be able to post the error that you are getting on project creation from the logs Also - shot in the dark this one, but could one of th ...Show All

  • Software Development for Windows Vista Will the WF release support horizontal sequential workflow layout?

    In Beta 2.2 sequential workflows are oriented top down. Is it planned for the release that sequential workflows can be visualized horizontally from left to right Hi! I guess the matter boils down much to how easy it is to implement custom designer that is based on SequenceDesigner with basically all of its other functionality but to get it lined from left to right. The example is pretty easy to come up with, so I'll toss in a one. We are going to embed the workflow designer so that the end users can use it to customize the workflow based on our custom activities. There are several execution stages that I'll call flowsections here. We are designing to align the main flow between flowsections to be from up to dow ...Show All

  • Software Development for Windows Vista Are you having problems with the June CTP SDK install?

    The June CTP is live and we're excited that so many of you have downloaded it. Unfortunately, we've received several reports of users who get errors like this when they try to use the ISO:   Error 1330. A file that is required cannot be installed because the cabinet file c:\t\setup\winsdk-sdk_Core_SM_MLT-common.0.cab has an invalid digital signature. This may indicate that the cabinet file is corrupt.   That usually means that there was some corruption in the ISO when it got downloaded.   To verify that your download of an ISO file for the Windows SDK June CTP build is not corrupt, download the CRC Utility .    To run the CRC test, open a command prompt and run the utility ...Show All

  • SQL Server Pass parameters to complex procedure.

    Hello, I have this Stored procedure, a very complex one, and it works fine with the parameters wrote on it. But when I try to change the number to variables @param1, I got errors, can somebody tell me how to replace this please. DECLARE @return_value int, @lvaIndicador varchar(4000), @ecuacion varchar(4000), @numerador int, @denominador int, @lvaIndicador2 varchar(4000), @ecuacion2 varchar(4000), @numerador2 int, @denominador2 int, @porcentajeCumple numeric EXEC @return_value = [dbo].[SP_CUMPLENCONNIVEL] @nmtipoCompetencia = N'12,13,14', @nmdivisioncorporativa = N'18,19,20', @nmciclo = 9, @nmcicloCompara = 12, @nmempresa = 72, @nmcargo = N'20', @lvaIndicador = @lvaIndicador OUTPUT, @ecuacion = @ecuacion OUTPUT, ...Show All

©2008 Software Development Network