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

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

slifinger

Member List

hcNat
Tulkinghorn
Howard Rogers
Mareen Philip.
lexluthor
actofbob
acribb
Herwin Grauel
Rick Troemel MS
Russell Parikh
Bill_Thompson
Uncle Davy
phillihp
BH2007
Janga
visiSteve
xp2005
BioGeek
ArunSingh
DaveC426913
Only Title

slifinger's Q&A profile

  • Windows Forms Treeview Bug

    It is not possible to make a single node bold without the end of the node text being clipped.  The work around this problem, I tried setting all nodes to bold and then setting all but one to regular.  The problem now is that the selection box when selecting a non-bold node is too big! This is quite a major problem as it means . ...Show All

  • Software Development for Windows Vista How can i get refference of Workflow Runtime in workflow

    hi need a refference to a service for which in need the refference of the runtime. How can i get the reffernence to current runtime OR whats the equivalent code for WorkflowRuntime wr = WorkflowWebRequestContext.Current.WorkflowRuntime ......... in WF Also is there any way to set a state dynamically I tried SetState ss = new SetState("StateName") ss.TargetState = "ExistingStateName" but it doesnot work. To get at a service that you have added to the WorkFlow Runtime from within your activity protected override ActivityExecutionStatus Execute( ActivityExecuti ...Show All

  • SQL Server cannot convert between unicode and non-unicode with Oracle

    I keep getting the error message below when attempting to import a text file (flat file) to an SQL Server Destination using SSIS. This database has recently been migrated from SQL Server 2000 (where I used a DTS Package that worked fine). I plan on doing further manipulation to the file after importing but have so far tried to keep one step at a time. I have tried using a smaller files and different tables but still get a similar response. I believe that the encoding of the text file is ANSI. If it is relevant the database collation is Latin1_General_CI_AS (the same as it was when 2000). Any help anyone can provide will be greatly appreciate ...Show All

  • Visual Basic Searching through MS - Word files of different versions (2002/2003)

    Hi, I hope someone can help me solve my problem. I'm using VB.NET Standard 2003, and am trying to create a piece of code that will search for a specific word through an ms-word file, and will open the file if it indeed contains that word. I want the program to be able to do this for both Word 2002 and Word 2003, without the user telling it what version he has installed on him computer. Now, I'm a bit new to programming, so if you have an answer for me, please don't assume i know what imports to use or what "coms" are, because i probably don't :) Any help would be appreciated, I've been working on this for a very long time ...Show All

  • Visual Studio IDE facility to suppress some debug notification messages missing in B2?

    I felt sure that B1 had options to suppress some of the notification messages (such as loading DLLs, thread exit status, etc) that you often see in the Output pane when debugging. I can't find these options in B2. Did they ever exist (do they now ) or have I imagined them We moved these options to a different location. In Beta 1, they were in Tools->Options->Debugging->General. In B2, we moved these to the context menu of the Output window. In order to suppress any of these messages, right-click the Output window and uncheck any of the options. The main reason for moving these options was to i) red ...Show All

  • SQL Server Connecting SQL2000 problem

    Hi All, I have a sqlserver 2000 & 2005 both installed on same server with the instance name as servername\sql2000 and servername\sql2005. When i try to connect the sql2000 database from dotnet2002 or 2003, It comes up with an error as sql server doesnot exist or access denied but when i tried with dotnet2005, i am able to connect it. I guess it has to do with an dotnet framework 1.0 & 1.1 but i am not sure where to look for it. Can someone please point me to right direction Thanks Shaik Nagul     on the client, check that the TCP protocols are enabled using the Client Network Utility (cliconf ...Show All

  • .NET Development ado.net 2.0 Fill method fails silently (bug?)

    Please help me if you can. Using VS 2005, windows form. I have a dataset with a few tables, some of which are bound to datagrids.  When the form loads, the datasets are filled with data from SQL Server stored procedures.  No problem so far. I have a procedure which processes data (using stored procs), after which I re-fill the dataset, using the same code as successfully fills the dataset when the form loads. But... the fill method fails (silently) when called after the processing. Likewise, if I trigger the fill methods with a button click, the code fails to fill the dataset. However, if I step through (not over) th ...Show All

  • Visual C# Typing in Visual Studio 2005 Text Editor is extremely slow

    Has anyone else noticed that typing in Visual Studio 2005 is extremely slow   Whey I type it seems that the screen is always 2 words behind where my hands are.  It makes it extremely frustrating to get anything done. I'm mainly referring to C# code.  It seems like Intellisense is going nuts trying to guess every word I'm going to type and never actually prints the characters to the screen. Has anyone else experienced this   Is there an option I can turn off to get my text editor back ! By the way, I have a very fast computer with Dual 3.0 GHz Zeons with 3GB memory and everything else that should make "typing" very fast. ...Show All

  • Visual Studio Express Editions Getting the ID from a newly entered record

    I hope this describes what I am trying to accomplish, on a form I want users to enter information in fields that will be used as header information then enter information in fields that will be detail records and each of the detail records need to have the ID = to the ID of the header record. I created a simple form to try and test this but I need a little help if someone could be so kind it would be most appreciated. Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load 'TODO: This line of code loads data into the 'StrangDataSet.Quotes' table. You can move, or remove it, a ...Show All

  • Visual Studio Team System Testing: Call Context is lost

    i need to store application information so i can reuse it in the next test. but when i execute a series of (unit) tests it seems that each test is executed in a complete new environment thus loosing any information such as the call context. since i'm storing relevant application information in the call context this information gets recalculated before every test what is very time consuming. i don't understand the reason for this behaviour; is it on purpose or am i doing something wrong sorry for not answering so long - i didn't see your response. here's a simple repro (quick and dirty from my mind - hop ...Show All

  • Visual C# DataReader not returning any data

    Hi there, I have a slight problem using DAAB 2.0. I have a sp that runs fine through sql 2005 passing in the params manually, however, when I try and do the following i get no data public void() { userToGet = new User() //User struct Database db = DatabaseFactory.CreateDatabase("DB"); using(DbCommand dbCommand = db.GetStoredProcCommand("sp_name")) { db.AddInParameter(dbCommand, 'UserLogonID", DbType.String, "Wayne"); using(IDataReader datareader = db.ExecuteReader(dbCommand)) { userToGet.firstName = datareader..... } } when this code runs, it tell me that the reader can not ...Show All

  • SQL Server Sql Server 2005 setup error message

    Hi I am trying to learn VB 2005 and I am reaching a step in my studies which requires downloading Sql Server 2005. However every time I attempt to download, I receive this error message. "SQL Server Setup cannot install files to the compressed or encrypted folder: c:\Program Files\Microsoft SQL Server\. To continue, make sure that your installation directories are not compressed or encrypted, or specify a different directory, and then run SQL Server Setup again." I have tried saving it to another folder, this did not help. Somewhere in my search for answers, I came across something that said I needed a strong Sa authenticatio ...Show All

  • Visual Basic showing opened files

    THis si the code i use when you click 'open file' Private Sub Button1_Click( ByVal sender As System. Object , ByVal e As System.EventArgs) Handles Button1.Click Dim openFileDialog1 As New OpenFileDialog() openFileDialog1.RestoreDirectory = True If (openFileDialog1.ShowDialog() = DialogResult.OK) Then End If End Sub   What do i do so the program i've opened is displayed in the textbox at the bottom You can use: for single file selection TextBox1.Text = openFileDialog1.FileName   or multiselect openFileDialog1.Multiselect = True For i As Integer = 0 to open ...Show All

  • .NET Development Control for making graphics

    I'm making a program now. It's mission is makig graphics of all types of functions. Now it's time to chose what control I need for making graphics It must be a white rectangle, where I will be able to draw lines and points for graphics. I also want to export my graphics from this control to .BMP format. I am using .NET 2005. Of course, I can easily use Form_Paint and some functions from System.Drawing namespace. But I think it is not the best variant because, I think there should be special control(s) for my request. You would create a UserControl and override that user control's OnPaint method. This way your control could ...Show All

  • Windows Forms DataGrid adding columns

    I need to append a column on the end of a datagrid, i get information from a database to fill the grid but i want another textbox to gather additional information to another table in the database. I can seem to make this happen :( please Help   Check out this source and see if there is an answer. http://www.syncfusion.com/FAQ/WinForms/default.a ...Show All

©2008 Software Development Network