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

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

JustinW

Member List

Dato
mom bot
PeteJS
Taliska
JayG123
Svetik
dredrunde
CliftNorris
Frances83
Shannon Wright
Kevin Downs
jesbin
Divyang
David M. Kean - MSFT
Harry Solsem
AlCant
AndreLH
OldDino
codputer
nielsvdc1
Only Title

JustinW's Q&A profile

  • SQL Server Log file - failed MSDE SP4 Installation

    Hi, I tried installing MSDE SP4 on a windows 2000 Server. Unable to deploy..getting error "The instance name specified is invalid" Then tried installing with the following; setup /upgradesp sqlrun DISABLENETWORKPROTOCOLS=0 /L*v C:\MSDELog.log The log files indicates; 1] SOFTWARE\Microsoft\Microsoft SQL Server Setup.{E09B48B5-E141-427A-AB0C-D3605127224A} TempFolder is C:\DOCUME~1\thp-mgb\LOCALS~1\Temp\{E09B48B5-E141-427A-AB0C-D36051272 ...Show All

  • SQL Server Updatable subscription in Transactional Replication

    Hi guys, I am trying to setup a Transactional Replication for my data. My publisher and distributor is MS-SQL 2000 server; while subscriber is on a Oracle server. All are locally installed. I have also setup the linked server connection and created the publication. Data is able to be replicated correctly onto my Oracle database. However, this time ard, I want my changes in the oracle database to be reflected back into the SQL database. So I had ...Show All

  • .NET Development SignedXML, Multiple Signature(s),Verifing Signatures

    Hi. How to carry or have multiple signatures for the Referenced docs in a single XML file The case is, referenced docs should be signed by more than one person. It seems not tidy enough to have multiple xml files for the signatures instead of multiple signatures in one xml file. Though this is my assumption, would appreciate the input as to "one and only one Signature element could be in a SignedXML". Thanks in advance! ...Show All

  • Windows Forms pre populated listview

    I have a control that inherits from listview, and i wish the control to populate itself with items when dropped onto a form. Im not sure at what stage to populate the listview. at first i fired the populate method from the constructor. This&nbs ...Show All

  • Visual Studio Express Editions What gets installed

    When installing VB 2005 Express Edition, does SQL Server 2005 also get installed. If so, how do I gain access to SQL Server You get the SQL Server Express edition to access this you will have to use the command line tools or the CTP Version of the management studio. If you have a look at the SQL Express home page you will find the links to the management tools as well as some guides to get you started. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. screensaver resource puzzle

    I recently tried my hand at creating a screensaver using C++ and unmanged D3D. Its very simple by just by loading up a hard coded .x file and rotates it. I then then thought since I know a little about 3d studio max sdk that so I can try and make a screen saver generator plugin. * I thought I had overcome the difficult part in writing the code that extracts all the mesh information from the 3ds max scene and write it to a x file, my pre built ...Show All

  • SQL Server Bug, Can not create varchar(max) columns with SMO

    I just want to create a varchar(max) column with SMO. My code is as follows. Instead of varchar(max), a column with datatype varchar(1) is created!!! Table t = new Table(db, "t1"); t.Columns.Add( new Column(t, "c1", new DataType(SqlDataType.NVarCharMax))); t.Alter(); That seems to be a bug of release version. I don't face this problem in Beta 2 Is there a workaround for that problem This seems like bug to me al ...Show All

  • Visual Studio Express Editions Windows Form Designer Generated Code

    I've created a number of forms and got the Generated Code, but now I don't seem to be getting the Generated Code with new forms.  What am I missing Thanks, jerryk I'm in the free VB Express Edition 2005/2008 but there's no plus sign to expand in any of my projects What to do Thanks. Newbie ...Show All

  • .NET Development ErrorCode=10054

    Hello All Having a little trouble with something that working with VS2003. Let me explain what my app does it is an employee list so all people can stay in sync with local database. This is a PPC2003 app that goes to my website runs a page that generates an XML file lit a RSS Feed. Dim sr As New IO.StreamReader(response.GetResponseStream) While Not reader.ReadState = Xml.ReadState.EndOfFile If reader.Name.ToLower = ...Show All

  • Windows Forms HTML-inputelement

    Hi Guys, i'm developing a system to fill an internetsite-form. In a previous version, I used the dlls msthml.dll, AxInterop.SHDocVw.dll and Interop.SHDocVw.dll. But now - with .Net 2 (Beta) - I want to use the new WebBrowser (System.Windows.Forms.WebBrowser). I know, to fill out normal edit-fields, but I dont know how I can press a button on an internetsite and how I can change the state of e.g. Check-Boxes. I hope, you understand my problem ...Show All

  • SQL Server Textbox line beak Issue

    I have a textbox which is bound to nvarchar in SQl server DB. When i insert the value i am inserting \n for my line breaks, the preview works fine but when i deploy it the line feed dont work in the textbox. Any Suggestions In HTML, we translate "\r\n" to a linebreak. Try doing a .Replace("\n", "\r\n") on the value of your textbox. Thanks, Donovan. ...Show All

  • SQL Server Broker:Corrupted message

    Hello, Has anyone seen this in profiler I have two brokers on different servers with one of them being the initiator. All messages end up sitting in the initiator's transmission queue. Profiler on the target broker's machine displays this for every attempt to send by the initiator: A corrupt message has been received. The End of Conversation and Error flags may not be set in the first sequenced message. This occorred in the message with Co ...Show All

  • SQL Server Custom code assembly with config file

    Hi! My report has a reference to an assembly of a class library I did. This class library has a config file, classLibrary.dll.config, where I set some parameters, one of these being the "initial path" to the project's folder(for example, project folder is myProject, and you would use the initial path to say it's in c:/projects/tests). When I preview the report everything works fine, but when I publish it I get this error: Abso ...Show All

  • SQL Server SQL92 syntax - Why is SQL2005 different

    This arose from trying to solve an item in Experts Exchange http://www.experts-exchange.com/Databases/Microsoft_SQL_Server/Q_21627719.html See the item: SELECT X.* FROM ( SELECT A.*,B.Col1 B_Col1, B.Col2 B_Col2 FROM A,B WHERE A.col1 *= B.col1 ) X ---> Correct SELECT X.* FROM ( SELECT A.*,B.Col1 B_Col1, B.Col2 B_Col2 FROM A,B WHERE A.col1 *= B.col1 ) X WHERE X.B_col1 IS NULL ---> Broken (Returns 2 rows) ... My question(s) are: Why are the ...Show All

  • .NET Development Mailto: Functionality via ImageButton - (WEB DEVELOPMENT)

    Hi i'm using visual studio.net 2003, and my OS XP Pro. i'm busy with a web application. how do i go about creating a hyperlink through a imagebutton I want a image, as a button stating that if you click on the button, you will be able to compose a new email, and the "NEW EMAIL DIALOG" will appear, and send it to a fixed e-mail address. (eg: someone@somedomain.com ) Which will be shown, or dispayed on the image . But, I wa ...Show All

©2008 Software Development Network

powered by phorum