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

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

doctatrips

Member List

dreameR.78
myGreenBird
Garegin Gulyan
Lovericky
Asday
SCRunner
lwsimpson
David Zokaites
CharlotteV
dsallow
ClaudeG
Brennon
hailong1977
Jamie Thomson
jcnconnect
Yuhang
MarlAtkins
grellsworth
Kamii47
xlordt
Only Title

doctatrips's Q&A profile

  • Visual Studio Express Editions error

    i have downloaded visual studio web developer 2005, but during setup asking for enu cd1...how to troubleshoot thank you it helped me but still i am getting an error : the following component failed to install : microsoft sql server 2005 express edition x86.what should i do know ...Show All

  • .NET Development How to display HTML code retrieved through sockets in a browser from VB.NET

    Hi, I have retrieved HTML Code from the web server in my Visual Basic .NET Program using TCP sockets, now i want to display that code in the browser (Internet explorer). How can i do it either in an already open browser window or a new one Can any one guide please. Also if i retrieve some images code from a webserver then how can display that images in internet explorer Thanks Thanks for your response, but i think it will not work, actually What i want to do is to display the retrieved page in the browser at run time and once i send the page code to the browser , the browser should then automatically send the requests for the embedded links (images, redirection etc..) which may exisits on the ...Show All

  • Smart Device Development Please Help Test New Game

    The Game is an Internet Version of Reversi complete with: 1. A Player Lobby to choose challengers 2. Live Update to download new versions 3. 6 by 6 as well as 8 by 8 Game Versions. The Website for Download is www.ReversiMobile.net . If you don't have Internet hardware, you can test on your Windows Mobile Emulator. There are some notes on this at www.ReversiMobile.new\Msdn At the bottom of the 'PLAYING' tab page is a place to click to send feedback. It will automatically open an email to support@ReversiMobile.net . The address for info about running on your emulator (typo) is at: www.ReversiMobile.net/Msdn I have also added a Tab, just for bug reporting. The names starting with BOTx_x_x are bots runn ...Show All

  • .NET Development copying files between folders on file servers

    I'm currently doing a project and I want to look for filenames containing the value the user enters after clicking the submit button, and copy these files from one network directory to another network directory. I don't have a clue how to do this, can anyone help Man sorry but would you be able to provide me with an example of a recursive method in VB, so I can basically get a foundation for my method for copying the files across, as I've only started learning it, and then got assigned this project Thanks. ...Show All

  • Visual Studio 2008 (Pre-release) Transform a WCF contract to a xml message

    Hi, I have a entity which is decorated with WCF DataContractAttribute to make it serializable. By marking the class and methods with this attribute serialisation is done automatically. Now my situation is I need to serialise the entity to xml and then post the xml to a MSMQ queue. Is it possible Thanks Sai You can create a XmlWriter that writes to memory, instead of a file: DataContractSerializer serializer = new DataContractSerializer ( typeof ( MyDataContract )); MemoryStream ms = new MemoryStream (); XmlWriterSettings writerSettings = new XmlWriterSettings (); Encoding encoding = new UTF8Encoding ( false ); writerSettings.Encoding = encoding; writerSettings.Indent = true ; ...Show All

  • SQL Server Union All

    When any changes have been made to the underlying table structure, the Union all reports error and does not automatically correct the error. I then have to delete it and recreate it. Is this a bug Hi Array, I think I know what you mean: I you for example change the data type of a certain column after creating the Union all task, then it seems like you cannot union the two columns, even though the both of them are from the same (new) type. This happens because the output column, that is been created when you select an input column, is created with a certain data type. If you changes the source's data type, the output column data type doesn't change accordingly. You will have to delete this column and cr ...Show All

  • Visual Studio Express Editions Print Previewing the Form

    I did some research on Print and Printpreview for my form. They did work, sort of. It printes a blank page or in the preview it says: 'Document does not contain any pages.' I tried setting the size in the CaptureScreen() to the size of the form. memoryImage = new Bitmap (684, 559, mygraphics); //this is the size of tabPage1 Any suggestions Here's the code: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace InvoiceReceipt { public partial class Form4InvoiceReceipt : Form { public Form4InvoiceReceipt() { InitializeComponent(); } [System.Runtime.InteropServic ...Show All

  • SharePoint Products and Technologies Reorting Services and MOSS 2007

    Hello Can someone point me to an article on how to hook up MOSS 2007 to reporting services installed on another box Thanks Hi Ray, I think you need to install SQL 2005 SP2 and the associated sharepoint addin. (Trying to get this working myself.) http://download.microsoft.com/download/f/2/5/f250ed72-c102-4216-8653-63189e24fa02/readme_rsaddin.htm#_rsshare_installation_3 Martin ...Show All

  • Visual Studio Express Editions your sql server installation is eaither corupt or has been tampered with (could not open SQLEVN70.RLL)

    i have tried un installing it and re-installing it over and over and there is no change! please help me! I found this post on another forum. Can you see if this helps http://www.experts-exchange.com/Applications/MS_Office/Q_21754121.html ...Show All

  • Visual C++ Q: How to disallow users to terminate my program?

    Hi, I'm building an application to monitor users so as to prevent them from abusing the PC. This program must not be stopped. How can I disallow users to terminate my program I found out that if I want to terminate ZoneAlarm's vsmon.exe from Windows Task Manager, I'll get an error message "Unable to Terminate Process: The operation could not be completed. Access is denied." Can I make my program like that The users are running on a limited account (I have access to the administrator a/c). Is there a simpler way that I can solve my problem I am using C++ w/ MFC on Visual C++ 2005. Sam is right. This issue really has nothing to do with C++ itself. Here is the security newsgroup: http://msdn.microsoft.com/newsgroups/default.aspx d ...Show All

  • Visual Studio Tools for Office UDF FOR EXCEL 2003 USING VSTO 2005 SE.

    hi, i am pretty new to vsto 2005 SE. i have created a add-in using VSTO 2005 SE. i want to write a user defined function say Add(int,int). when we write in the cell =Add(1,2) this will return us the sum. i want to ask where this Add function will be declared and what other refrences are required. i want to know how UDF are used and declared . please enlighten with the above example if possible. otherwise give idea in steps. plzz help me. Parm, A better approach then creating UDFs with VSTO is to create automation add-ins as the following article by Eric Carter show: Writing user defined functions for Excel in .NET ...Show All

  • Software Development for Windows Vista Doubt in InvokeworkflowActivity

    Hi All For invokeworkflow activity which is available, we have to set the target workflow name at the desing time,but what i want is a customInvokeworkflowactivity for which we can set the targetworkflow at runtime and the invoking workflow should wait for invoked workflow to compelete. what i have to do If someone has the idea to develop this one, plz send the details or send the sample. Thanks in advance.... Regards Prabhakar I have a sample on my blog where (I think) the workflow type could be set at runtime - http://www.masteringbiztalk.com/blogs/jon/PermaLink,guid,7be9fb53-0ddf-4633-b358-01c3e9999088.aspx if not - it could be modified to be so in either case. ...Show All

  • SQL Server Moving my SQL Server to another computer

    I will moving my SQL Server to another server. The plan is to stop SQL Server copy database file to a temp netwokr location, Switch off this server. Configure the new server with the same name and IP, install SQL to the same paths and service pack to the same level (SQL 2000 sp3). Then start and stop the SQL server. Once stop I will then copy the old database file over the new ones. I know in general this works as I have doen this many times before expect this time round there is a replicaiton database which is new, I am expecting this will work the same but has any one else tried this before Unfortunately, you have to disable the publication before you can detach and move the database. BTW, ...Show All

  • Visual Studio Express Editions can i import text file to TreeView ?

    hi all, i want to import a text file in to treeview. i have a text file (c:\test.txt) "c:\text.txt" '****************************** 1024 20060801 C:\ 1024 20060801 C:\testfolder1 1024 20060802 C:\testfolder1\testfile1.txt 1024 20060802 C:\testfolder1\testfile2.txt 1024 20060803 C:\testfolder1\testfolder2 1024 20060803 C:\testfolder1\testfolder2\testfile3.txt 1024 20060804 C:\testfolder3 1024 20060804 C:\testfolder3\testfile4.txt ... ... ... '****************************** can i import this file to TreeView + C + testfolder1 testfile1.txt testfile2.txt + testfolder2 testfile3.txt + testfolder3 testfile4.txt ... ... Thanks for help..... You can import the lines of a te ...Show All

  • SQL Server dynamic query problem

    I make a sp in mt sql server, the SP get one parameter, its the WHERE, and then I execute the query, here is my SP: ALTER PROCEDURE [dbo].[rptEventToPsy] @strSQL nvarchar(4000)='' as DECLARE @SQLString NVARCHAR(4000); SET @SQLString = N'SELECT dbo.tbl_CA_meeting.userID, dbo.tblUsersName.OrdName, COUNT(dbo.tbl_CA_event.itemInPackageID) AS Expr1, dbo.tbl_CA_itemInPackage.itemInPackageName, dbo.tbl_CA_package.packageName FROM dbo.tbl_CA_meeting INNER JOIN dbo.tbl_CA_event ON dbo.tbl_CA_meeting.eventID = dbo.tbl_CA_event.eventID INNER JOIN dbo.tbl_CA_itemInPackage ON dbo.tbl_CA_event.itemInPackageID = dbo.tbl_CA_itemInPackage.itemInPackageID INNER JOIN dbo.tbl_CA_package ON dbo.tbl_CA_itemInPacka ...Show All

©2008 Software Development Network