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

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

Pierre123

Member List

Guimauve
Erasmus
PUG666
jgon371
Newcastle
Sid #.net
tapmar
Eric12345
Scott Northmore
Brian Lyttle
Gagandeep Singh
JenDB
CJWalsh
Venkatesh Mookkan
Tarmo Tali
Epiana
doroshjt
KevinDoyle
rwiethorn
Gil tap
Only Title

Pierre123's Q&A profile

  • Visual Studio Team System copying binaries to Test directory

    Hi All, On my daily build server, I want to copy some binaries to my "test results binary" directory, before unit tests gets executed. My "test results binary" I mean the TestResults\(directroy based on current time, data and system name)\Out. I believe there should be some macro which I can use to refer to that directory. Since the directory is based on time, date- I can not put direct path in my tfsbuild.proj file. I will really appreciate any feedback. Shrish The DeploymentItem attribute (DeploymentItemAttribute class) should be the solution to your problem. ...Show All

  • Windows Live Developer Forums Submit an App - Get the Windows Live Messenger Beta!

    Would you like early access to the Windows Live Messenger Beta Starting today, November 8 th and running thru 9:00am PST on Monday, November 14 th The first 5 people to submit Activity Apps to the Worlds Best App contest and successfully pass compliance checking will receive an immediate invitation to the Windows Live Messenger Beta! Be one of the first people in the world outside of Microsoft to run with the next version of Windows Live Messenger!   Lets see those apps!!!    -Scott dude i already got a leaked version Windows Live Messenger 8.0.0328, why enter your contest if anybody wants it ...Show All

  • .NET Development How do I stop Firewall blocking my app?

    Hello! How do I stop firewall blocking my app Mateusz I have a blog that has some C# classes that you can use to do this.  http://blogs.msdn.com/joncole/archive/2005/12/06/500770.aspx The classes are basically just wrappers around COM objects that are already present on the machine.  You can use the code I have in that blog or you can create a COM interop assembly (reference to a COM dll) using visual studio.  Keep in mind that the code I posted is not 100% tested and so you should do some testing of your own to make sure it meets your reliability constraints. ...Show All

  • SQL Server RDA Pull from Windows Server 2003 gives Native Error 28035

    I currently have a Vs.Net 2003 Pocket PC application that uses sql server ce 2.0 to push and pull data from Sql Server 2000 to the Pocket PC. The sscesa20.dll isapi agent is installed on a Windows 2000 server and points to another server that hosts the SQL database. In this configuration everything works like a charm. I am in the process of upgrading my application server to Windows 2003 Server but the RDA PULL process does not work, giving an Native Error of 28035 EVERY time. I use the exact same code in the app but when I point to the isapi agent on the 2003 box it does not work. When I connect to the the sscesa20.dll via the Pocket IE it ...Show All

  • SQL Server Join query

    I have two tables Table1 and Table2 Table1 columns: CustomerNum varchar(12) InvDate smalldatetime Table2 columns CustomerNum varchar(12) MaintDate smalldatetime Dis float Table1 Data (sample): CustomerNum InvDate 995169 2/4/2002 995169 11/4/2002 995169 1/1/2003 995169 3/4/2003 995169 10/4/2003 995169 1/4/2005 995169 5/4/2005 995169 11/15/2005 Table2 Data (sample): CustomerNum MaintDate Dis 995169 10/3/2001 1.07 995169 10/3/2002 1.1 995169 5/16/2003 1.7 995169 9/30/2003 2.9 995169 1/1/2005 2.8 995169 3/31/2005 2.95 995169 10/31/2005 2.85 I want to display customerNum, InvDate from Table1 along with applicable Dis from Table2. D ...Show All

  • SQL Server Description for Calculated Measures?

    Hi, is there no way to add a description for a Calculated Measure Well, that would be something to add if it's not there already... Metadata is so important so I think it's very important to have a description at this point, it's even more important since it's something you calculate and so it might be not good known for all the users... Hello It is perfectly possible in MSAS 2005,You can go to the Script View of calculated Measure and you can add the description there Thx and regards Pankaj ...Show All

  • Visual Studio Express Editions (Newbie) Listbox.SelectedIndex problem

    Hi EDITED post: changed question. This is the very last thing I need to do to complete my first project. I have found that to select an item from a Listbox, the user needs to use the up/down control and then click to highlight anthe item before a call to ListBox.SelectedIndex will return the correct item in the list. Even if a different item is showing in the Listbox, the return is always the last item that was 'selected', How do I programatically force the item showing in the Listbox to be 'selected'   The reason is because you are setting the value of Skill's SelectedIndex to 2 then even though you Dim diffic ...Show All

  • Visual C++ compiling vc++ code in VS 2005 error LNK2001: unresolved external symbol

    hi While compiling my vc++ application in VS 2005. i faced the link errorsas following. Any help will really help me a lot. 1 file(s) copied. link /NOLOGO /SUBSYSTEM:windows /DLL /INCREMENTAL:no /MAP:FULL /OPT:REF /DEBUGTYPE:CV /IMPLIB:..\DBG\TmtData.LIB /MAP:TmtData.map /OUT:..\DBG\TmtData. DLL @TmtData.files /BASE:@t:\tcomponents\Make\TmtCommon.Lod,TmtData Creating library ..\DBG\TmtData.LIB and object ..\DBG\TmtData.exp tcbsdglb.OBJ : error LNK2019: unresolved external symbol "__declspec(dllimport) protected: __thiscall T_CGlbComponent::T_CGlbComponent(char const *,class T_CVer sion const &,class T_CResComponent *)" ...Show All

  • Visual Studio Message when i try to open project

    Always I try to open my solution, the IDE show this message: The file 'MySolution.sln' needs to be checked out before it can be edited. The file was not checked out automatically because you have disabled automatic check out when files are edited in the Source Control options page. I only have 1 project under solution file. In the Environment options pane of Source Control I have check "Get everything when openinng..." and "Check in everything when closing...", and "Chek out automatically" in "On Edit" and "On Save". How can remove this message I don't know why the message appears in your case (s ...Show All

  • SQL Server HTML String Rendering in a Report

    We have a "Comment" field that is saved as a HTML string to the DB. This field needs to be pulled into a report as rendered HTML. I know this has been hashed out before, but has anybody found a good solution in the past couple of months We are thinking about storing two versions of the Comment in the DB: one with HTML, one as simple text. Has anybody found this an acceptable solution I know it flies in the face of good DB design, but it seems the quickest, easiest solution... Any word if this will be fixed in the next major release of SSRS Can we expect this release any time soon Thanks for looking, Smith ...Show All

  • Visual C# Put shortcut to form within Application

    I want to put shorcut to Form but i dont want to put this shortcut in Menuitem but through Application can i do this thank you Just use toolbars or something like that. ...Show All

  • SQL Server how to convert ms access queries into sql server procedure

    hi folks is there any way or batch process written by some one to convert ms acces queries into sql server procedure thanks in advance Normally this isn’t a wizard thing, you have to invest some time to convert this. Although there are support packages of third parties, even these can’t solve the whole process of migrating Access to SQL Server. HTH, jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Windows Forms making windows forms or title bar BLink

    Hi, How can I make form backcolor or form's titlebar blink Thanks, I forgot this struct, you'll need this too using System;     using System.Runtime.InteropServices;     [StructLayout(LayoutKind.Sequential)]     public struct FLASHWINFO     {         public uint cbSize;         public IntPtr hwnd;         public uint dwFlags;         public uint uCount;         p ...Show All

  • Windows Forms Using one dataset on Multiple Forms

    I'm trying to use one dataset, dsCarLoginService on multiple forms. I found the following code in the forums and it appears to make sense. DsCarLoginService is my dataset that I'm attempting to pass to the second form. I have the following code on my second form to accept the dataset: ..... Private serviceDataSet As DataSet Public Sub New ( ByRef dsCarLoginService As DataSet) MyBase . New () 'This call is required by the Windows Form Designer. InitializeComponent() serviceDataSet = dsCarLoginService   ..... This is how I'm trying to pass the dataset to the second form: Dim frmMaintenanc ...Show All

  • Visual Basic $1 Million dollars to whoever can figure this one out....

    This problem's stumped me completely...take a look: I defined the following function to create a ComboBox and add it to an arraylist: Public Function addComboBox( ByVal Text As String , ByVal Ops As ArrayList, ByVal parent As Object , ByVal enabled As Boolean , ByVal x As Integer , ByVal y As Integer ) As ComboBox    Dim newCbo As New ComboBox    newCbo.Text = Text    newCbo.AutoSize = True    newCbo.Parent = parent    newCbo.Left = x    newCbo.Top = y    newCbo.AutoCompleteMode = AutoCompleteMode.SuggestAppend   &nbs ...Show All

©2008 Software Development Network