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

Software Development Network >> Sam Loud's Q&A profile

Sam Loud

Member List

KirkAtCenterstance
Stckmn3
akram badr
NickNotYet
swlee
gregaug
mistry_bhavin
MarinosC
Inferno986
Wendy_B
kkarre
robinjam
Omniscient
s1981s
Wil Burton
ROLIVIER
bslim
Tamil mannan
ititrx
godzilla9
Only Title

Sam Loud's Q&A profile

  • SQL Server can I pull a sql 2000 datafile into sql express ?

    Can I do this with a sql 2000 database http://www.cryer.co.uk/brian/sqlserver/howto_movedatabasefile.htm then attach sql express to this mdf hi, BitShift wrote: Can I do this with a sql 2000 database http://www.cryer.co.uk/brian/sqlserver/howto_movedatabasefile.htm then attach sql express to this mdf no, but you can do the contrary, attach the mdf (+ ldf) to SQLExpress regards ...Show All

  • SQL Server Problems with regard to connection string

    hi! I have 2 questions that needs to be clarified. I have Sub packges being executed from the main package. I am executin the Main Package with the Conn string set through the C# UI like string connect = @"TahoeDB;Data Source=SE413695\AASQL2005;Initial Catalog=TestDB;Provider=SQLNCLI.1;Integrated Security=SSPI;"; jobCommand = new SqlCommand("xp_cmdshell 'dtexec /f \"" + path + "\" /Conn \"" + connect + "\" /Set \\package.Variables[User::ArchivePackageName].Properties[Value];\"" + name + "\" /Set \\package.Variables[User::ArchiveFileType].Properties[Value];\"" + type + "\" /Set \\package.Variables[User::ArchiveFlatFileConnectSt].P ...Show All

  • Visual Studio 2008 (Pre-release) What does 'tampa' mean?

    While using this new inline initialization thing a local variable will be called something like _tampa_f__1 example: 134 return new Literal { Value }; The question is, where did the generated name prefix "tampa" come from :) Is it a river ...Show All

  • SQL Server Monitoring a folder for a file - start ssis

    Hi I want my package to monitor a directory for a file and when it detects one it will start processing the file. Any help would be appreciated Regards Ants WMI is a good option here and the WMI Watcher Task will help you to achieve the same. I remember reading somewhere that the memory used by the package will be released only when the package is stopped, so in your case if the package is going to be waiting for the file (package in run state), we need to consider the side effects of memory. Thanks, S Suresh ...Show All

  • Visual C# differecse between AppendText and Text+=

    What is the difference between: 1) rishTextBox.AppendText("any text"); 2) rishTextBox.Text+="any text"; the second arise a problem but the first dont make the problem. bola shokry wrote: What is the difference between: 1) rishTextBox.AppendText("any text"); 2) rishTextBox.Text+="any text"; the second arise a problem but the first dont make the problem. Semantically they are very similar. Using Text += ... causes a new string object to be created and assigned to the Text property. That Text property's set method sends a message to the control the set the text. The AppendText method will not assign a new string object, it ...Show All

  • Visual Studio 2008 (Pre-release) Bind group of RadioButtons to one variable

    Hi guys, How can I bind IsChecked RadioButton property for the group of RadioButton-s to one variable which can be assigned the value from 0-10, depends how many RadioButton-s I have. <StackPanel> <RadioButton IsChecked={Binding Path=IsCheckedVar} /> <RadioButton IsChecked={Binding Path=IsCheckedVar} /> <RadioButton IsChecked={Binding Path=IsCheckedVar}/> </StackPanel> Of course all of them have the same IsChecked state in this case. Any help is appreciated. Irina Create a value converter (a class which implements IValueConverter) and have it convert the numeric value into a bool for each radiobutton. In the binding syntax, set the ConverterParameter proper ...Show All

  • .NET Development Web Service must call a Console App located in the same directory (Simple)

    I have a small problem, when I am calling the Console Application from the Web Service it is not bringing it up, it is located in the same directory. Is this possible and please can you tell me how to do it. I think it is simple. This what i got so far. Process prcCompare = new Process (); prcCompare.StartInfo.FileName = HttpContext .Current.Request.PhysicalApplicationPath + "idb\\MappingProc.exe" ; prcCompare.Start(); Thank-you very much for your help ahead of time . Looks like the Console Application is running under the user and the web service is running under the ASPNET or IUSER. Is there any way I can switch the user when I call the process. Thank-You Nikhil very much f ...Show All

  • Visual Studio Reporting Services Style with css

    Hi Does anyone know how to style my report(rdl/rdlc) with external style sheet Thanks Chani ...Show All

  • Software Development for Windows Vista applications in Application compatibility toolkit

    hi, i am trying to test the application compatibility with the ACT tool. i have windows server 2003 installed on my machine and running SQL server 2000. in the ACT tool, when i deploy my package, all the applications should be shown up in the analyze section. but the applications do not show up. can anybody resolve this issue very urgenty, because i cant proceed further. regards, divya thanks for the reply mathew, but i have checked all the conitions u hav told. still it does not show the applications in the Application compatibility manager plz resolve this issue..... regards, divya ...Show All

  • Visual Studio Express Editions How can I gather a string of items selected in a CheckedListBox to print?

    How can I gather a string of items selected in a CheckedListBox to print When I print the CheckedListBox.text it only shows the currently selected item, and it doesn't even have to be checked. I wan't a string consisting of the item name selected (ie; item1, item2, item4) etc. can anyone help there is a property called "SelectedItems" in the checkedlistbox, which returns a collection of items which have been checked. you may wish to use this. so, this is without coding here, you could try: for each currentItem as string in Me.theCheckedListBox.SelectedItems.ToString() 'print next does this help ...Show All

  • Visual Basic Changing default account in Outlook 2003 programmatically

    I would like to put a button in a toolbar in Outlook that brings up a new email message and sets the FROM to a different account. I realize Outlook does not allow you to set the FROM line directly, but is there a way to change the default account for just this email and then set it back Thanks Mary MaryNick, In the System.Net.Mail namespace, We just set the MailMessage.From method as the source of sending mails. However, in Outlook Add-in with the namespace Microsoft.Office.Interop.Outlook, when you tried to add a command menu for your Outlook in VSTO, it seems hard. I don't know whether you are familiar with programming in VSTO, however, I can only find an article related to your demand in code po ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Cannot compile my first DirectSound app. Help!

    Hello everyone, I'm new here. I'm trying to write my first DirectSound app and am having a bit of difficulty...I'm hoping the gurus around here can help (I've been trying for days to get this to work and I think it's just something stupid I'm doing). I'm using VS2005 (C++) and have installed the DirectX SDK June 2006. Here's what I've done so far: 1) Selected "Project -> MyProject properties -> C/C++ -> General" and added "C:\Program files\Microsoft DirectX SDK (June 2006)\Include" to "Additional Include Directories" field. 2) Selected "Project -> MyProject properties -> Linker -> General" and added "C:\Program files\Microsoft DirectX SDK (June 2006)\Lib\x86" to "Addi ...Show All

  • Visual C++ drawing square wave in a dialog box?

    i'm really a beginner here, so hopefully somebody can help me. i'm currently doing a dialog application for a IC tester(hardware). In this application, it will send some vector(series of '1' and '0' ) to the IC tester(hardware) and then after the testing it will return back a result vector(series of '1' and '0' ) to the computer. Therefore, in the dialog, it will hv a button to start the testing. Once the button is pressed, the testing will begin and later in the dialog, it should display the input vector and also the output vector( which looks like a square wave to represent 1 or 0). The data for the vector can be taken from a file saved in text format. The problem now are: 1)how do i display the vector in my dialog box Should i create an ...Show All

  • Visual Studio Express Editions Installation On Vista Ultimate Problem

    Everytime I try to run Visual C# Express Edition Installation, I get an error saying I must have Windows XP Service Pack 2 installed but I'm currently running Windows Vista Ultimate on my machine. Does anyone know how to fix this problem May be you are using older version of Visual c#. Try to upgrade it or write to mircosoft about the issue and possiblely they will provid you some kind of patch. You can contact to Microsoft by using 'Contact us' on the website of Microsoft. Prefer sending email. ...Show All

  • Smart Device Development Project disaster: updating the info in a DataGrid without moving the VSB

    When I run dataGrid.Update(); the vertical scroll bar is always moved to the top. How do you update a datagrid keeping the scroll bar in the same position The scroll bar moves so the row with the current row index is positioned at the very top of the datagrid. If the user scrolls down and doesn't click a row every now and then the scrollbar will scroll to the current row index row every 5 seconds. That's not acceptable. I'll have to edit the datatables manually so the scrollbar doesn't jump around. ...Show All

©2008 Software Development Network