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

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

ZindrosH

Member List

MrCRM
drajwani
jeusdi
Tilex
bhaskar27in
Dipesh A.
Chris Lang
Alastair Q
jschroeder
Dunce Hat
chaza
rxg
Kevin Rodgers
Fabriciom
Cooly
dabd
RBowden
Closer
toben888
Webhostbudd
Only Title

ZindrosH's Q&A profile

  • SQL Server sql 2000 to sql 2005 upgrade

    I have a sql 2000/2005 side-by-side install on a single server. I right-click a sql 2000 database, select All Tasks, and the Copy Database to upgrade a sql 2000 database. In the "Copy Database Wizard" I see the message: "To use the detach and attach method SQL Server Agent must run under an Integration Servicers Proxy account that can access the file system of both the source and destination servers." 1. What does that mean 2. I decided to click "Finish" in the wizard, and the database copy seemed to work fine. Whaterver 1) means does, by default, the SQL Server Agent already run under this "Integration Services Proxy" account. (Rememberr the upgrade process did work). TIA, ...Show All

  • Windows Forms Windows Form In Apache

    Hi, I am actually looking for possibility if Windows Form would be able to host in apache on Linux environment. I am researching how to embed a windows form in IE. It looks like I can only host Windows Form in IIS. Any suggestions Regards, Leo I knew the link. Thanks anyway. I've posted the .dll and the html file which embeded .dll as object to Apache server. But somehow, the embedded object can't run. It just show me a red cross. ...Show All

  • SQL Server IO Completion Listener Worker appears to be non-yielding Message

    We are using SQL Server 2005 (not on SP1), and keep getting the following message in the SQL Server log: IO Completion Listener (0x15e8) Worker 0x00B7E0E8 appears to be non-yielding on Node 0. Approx CPU Used: kernel 0 ms, user 0 ms, Interval: 35092. After receiving this message, the server slows down considerably and we receive numerous messages saying: SQL Server has encountered 61 occurrence(s) of I/O requests taking longer than 15 seconds to complete on file [xxxxx.MDF] in database [xxxx] (22). The OS file handle is 0x00000CDC. The offset of the latest long I/O is: 0x000000fa21a000 I have not been able to find any documentation or explanation of what the IO Completion Listener message is about or how to correct whatever pro ...Show All

  • SQL Server trim trailing white spaces

    Hi All, I have a column which has some white spaces that I suspect is tab delimeted one. So when I use a rtrim(col1) it would not trim those. So i used a scrip component and wrote this line, Row.trimDetail = RTrim(Row.detail) here trimdetail is an o/p column and detail is the input col with the trailing spaces. but still I don know why the column has that spaces. Can someone help me to figure out what is the problem Thanks in advance, Hi All, Thanks for the valuable inputs so far.. I tried using this script but what I see is even after this some of the records get errored out and when I see the errorDescription it says "No Status is Available" .. Any one of you have got this b ...Show All

  • SQL Server Using Management Studio to manage .sdf file on device

    Hi, I am trying to connect to a database on a Windows Mobile device using the Management Studio. I am able to select server type "SQl Server Mobile" and navigate to the file on the device. When I try to connect I recieve the following error. Should this work If so what must I do to allow the registry access Thanks, Ron Requested registry access is not allowed. (SQL Server Mobile Edition ADO.NET Data Provider) ------------------------------ Program Location: at Microsoft.SqlServerCe.Client.TdsParser.ThrowExceptionAndWarning() at Microsoft.SqlServerCe.Client.TdsParser.Connect(String host, SqlCeInternalConnection connHandler, Int32 timeout) at Microsoft.SqlServerCe.Client.SqlCeEngine.FileExists(String filenam ...Show All

  • SQL Server Import multiple text files into Single table

    How to import multiple text files (residing in single folder) into SQL Server table I know how to import single file but not sure how multiple files could be loaded Pls. guide. Thanks, HShah I am assuming that thefiles all have the same structure. There are a number of options availableto you. See here: Processing data from multiple files all at once ( http://blogs.conchango.com/jamiethomson/archive/2006/10/14/SSIS_3A00_-Processing-data-from-multiple-files-all-at-once.aspx ) -Jamie ...Show All

  • Visual Basic capture multiple listbox selections

    I have a list box wth 6 items and the user can select as many items as apply. I can capture any 1 of the choices the user makes with the following code which assigns the chosen item to the string variable strSubs strSubs = Me .ListBoxAbuse.SelectedItem.ToString() What I can't seem to do is capture more than 1 item from when the user makes multiple selections from the list box. Can someone please suggest the correct code which will enable me to do so Thank you Howard Hi, You can use the SelectedItems property to get all selected items: For i = 0 to listBox1.SelectedItems.Count - 1 msgbox(listBox1.SelectedItems(i).ToString()) Next cheers, Paul June A. Domag ...Show All

  • Visual Studio Task List

    Is there anyway to import User Tasks from one solution into another in the VS2005 Professional Task List   I'm afraid not. The only way to do it would be to write a macro (or add-in) which saves them to a separate location and then re-creates them in the new solution. -Josh Stevens VS Core IDE team ...Show All

  • Software Development for Windows Vista InfoCard Identity Provider - Resources required

    I am trying to build an identity provider. I could use the following resources: 1) An official InfoCard schema. I have tried to piece together one from the tech-ref, but it has some validation issues and isn't really normative. 2) A sample managed InfoCard. I have tried to build one, but when I go to import it into the InfoCard selector, it fails with an unhelpful error message. The event log message is generic, too. 3) A way to get diagnostic messages out of the InfoCard selector when it has problems with my InfoCard and my identity service. Thanks, Sid There will be an updated managed card creator sample posted with the July CTP. There were breaking changes that were unanticipated with ...Show All

  • Visual Studio 2008 (Pre-release) WCF with "raw TCP" clients?

    Hi All, I have been working on a custom Encoder to work in conjunction with the TcpTransportBindingElement (i.e. tcp transport) to communicate with "raw tcp" clients (i.e. the byte stream to/from the client is neither soap nor xml). The current obstacle is that the ReadMessage method in my encoder is not "firing". I presume it is because the transport is not receiving something it recognizes as a message terminator. I would appreciate if someone would point me to material on the internal workings of the WCF Tcp transport. Also, it is important for me to know if I cannot use the tcp transport that ships with WCF to do the job (i.e. if writing custom transport in addition to a custom encoder is also necessary) ...Show All

  • Visual Studio Express Editions Colours

    Is there any other way of using RGB colours in the bitmap.setpixel function other than Color.FromArgb Its hard to customize it as it is an integer.... BMap.SetPixel(x + 1, y + 1, Color.FromArgb(&HFF0000FF)) I cannot base this off a variable by simply doing this: &HFF00 & green & 00. .... give me a hand Umm, you still haven't told us what lines cause a compiler error. We can't move on until you tell us. The one thing I had to do to compile the code from your post was to remove blank lines. ...Show All

  • Visual Studio Express Editions Windows Position problems

    How can i get this to work, i wanted to make my window to save its position on screen everytime i move it, and then on load recall that and place the window where it used to be. Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load Me .Location.X = My .Settings.PositionX Me .Location.Y = My .Settings.PositionX End Sub how would you go about checking that the form is visible and not off-screen (perhaps in C# if you know it, if not a VB solution would be at least a bit helpful) thanks ...Show All

  • SQL Server with ssis :flat file importing data problem

    Hello, I have a problem with some in a file. when i excute ma package to import data with my *.cvs file ssis bloqued le data flow in the line number 1042 and output this error : column delimiter note found for the column 50 wich is the last column . How can i resolve this probleme please. Thanks all totocasagrandi wrote: no i had no probleme in this ligne. the delimiter for the last colomn is (Ctr-LR) and all is Ok. i want to ignore lines who don't had last delimiter. how can i do this If there is no row delimiter then you've got a problem. It sounds like a source data issue that needs fixing. Or am i misunderstanding -Jamie ...Show All

  • Visual Studio Team System How to add calender control to a field in process template

    I have down loaded the process template and trying to customize the template. I have added 3 date fields to the Tasks.xml and uploaded the template < FIELD name = " Expected Start Date " refname = " Microsoft.VSTS.Common.ExpectedStartDate " type = " DateTime " reportable = " dimension " ></ FIELD > the field shows on the workitem template form and we can type in the date and the validation is working fine. Now I want to add a calender control so that the users can pick a date from. Is there any way I can add a function that shows the calender and when the user picks a date it will populate the date and timeto the Expected Start Date field that I mentioned before. Tha ...Show All

  • Windows Forms Documentation / detailed explanation for InitializeComponent

    Hi, I'm currently writing my diploma-thesis. I'm coding a C# project and use VisualStudio 2005. I need to describe the InitializeComponent-Method pretty precisely. Where does it come from What does it do and so on Of course I know all this, but I need some "real" reference like a book, article or the original MSDN-Documentation, simply something I can quote from Any suggestions, links or further info Thanks a lot and take care guys! JS P.S.: English or German language would be great There is no formal documentation on this method because it is not required. The designer itself uses it simply to isolate designer-generated code from user-generated code. The best documentation you'll find is re ...Show All

©2008 Software Development Network