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

Software Development Network >> Glenn W Johnson's Q&A profile

Glenn W Johnson

Member List

mcory1
Johan Nyvaller
DejanR
Jeff Parker
micca46899
TheZbuffer
SM_G
WThabet
n0n4m3
Espen S
Carlh62
ThRaShErUk
artemuse
nielsvdcp
ItzikE
bvdrsganesh1404
BurgleyWurgley
Hans Bothe
kludge
rclancy
Only Title

Glenn W Johnson's Q&A profile

  • .NET Development Log files and cans of worms

    Hi, I'm quite sure this could start a lot of arguements :p. If i am creating a log file that is constantly added to during the lifetime of my program, is it best to have a permanent Streamwriter object that i write to and then flush after each comment, or to spawn a new one each time i need to add to the log Or maybe there's some magical medium i haven't heard of Forget the postcards, just post your answers here instead. James. ...Show All

  • Visual Basic line break (next line) in textbox

    There is 2 problem I'm facing now. 1. how to pass each word in a line of text from the user's input textbox to an array     i.e. Sting in textbox = 'I am a girl'           when pass to array, I'm expecting ('I', 'am', 'a', 'girl') 2. how to determind a next line in a textboz     this is mean if there are 3 lines in a textbox, i want to pass each line to 3 different string. Tha ...Show All

  • SQL Server run packages as part of procedure

    I have created SQL code that is contained in different procedures. I have a procedure that then runs all of the pieces that I wish to run. My last step in my process is to export the data to my c: drive. During this process I created a package to be rerun. How do I include the rerunning of my package automatically as part of the procedural process How about creating a job for the package, and calling sp_sta ...Show All

  • SQL Server Transport Failed to Connect to the Server

    I have several reports that run from MS SQL Reporting Services each day that are automatically mailed (subscriptions) to recipients in my department. Two days ago, the MIS staff changed the email server from one named MailMan to one named PostMan. Since then my reports won't email to the intended recipients and they generate the error that is the subject of this posting. Where do I change MailMan to Postman in my server configuration ...Show All

  • Windows Search Technologies WDS Query from VBScript or COM

    I'm looking at integrating WDS functionality with an existing application and have been trying to call the ExecuteQuery from VB6 but am having problems. Does anyone else have some example code that they've managed to get working I've worked out that passing empty strings seems to case issues and am passing null references instead but am getting some errors raised ("Inv. Proc. Call"). This is for a small quick research project ...Show All

  • Visual FoxPro VFP linked server issue

    We're using SQL Server for the majority of our applications, but our accounting package is still in VFP 8.0.  I need to make some costing adjustements from our inventory program.  I have linked the VFP database to SQL Server just fine and, using OPENQUERY, I can SELECT data without a hitch.  Performing an UPDATE or INSERT, however, is a different story.  I get the following error: "Server: Msg 7301, Level 16, State 2, Line 1 ...Show All

  • Visual Studio 2008 (Pre-release) Inserting a record with a TimeStamp field

    Did anybody make it to insert an object with a TimeStamp field. When I try db.SubmitChanges() throws me: Argument types do not match. If I omit the timestamp field it works (however it won't protect me agains concurrency violations upon update or delete). Here is my timestamp property definition: protected System.Byte[] lastChange; [Column(Storage="lastChange", Name="LastChange", AutoGen=true, IsVersion=true)] public System.Byte[] LastChange { ...Show All

  • SQL Server SSIS in .NET 2005

    Hi All, I have a .NET 2005 application that uses SSIS programming class library to load and execute SSIS package stored in SQL Server 2005 (in msdb). I created the setup project that added automatically all the dlls required for that, and it is all included in .NET 2.0 as far as I know. Now, every thing goes OK on the development machine (XP SP2) against local SQL Server 2K5. But I deploy the application in ano ...Show All

  • Software Development for Windows Vista the WorkFlow project wizard is gone!where she be?

    hello all. i installed VS2005RTM special language version (pagecode is 2052), but WFF beta installed 1033 dir.so on the new projects wizard dialog, WFF project was disappeared,. now ,what can i do makes WFF project item recur thanks. Hi Matt, When you say you installed VS2005RTM lang versio(page code is 2052) I take it you mean you installed Chinese VS. So here is a question for you = Did you have English VS installed bef ...Show All

  • Windows Forms slow data reading and writing...

    Hi, I'm developing a program to manage an MS Access database, this database has about 160 fields, that need to be read at startup... however, this reading is somewhat slow... I'm doing it the regular way, I guess : OleDbConnection connection = new O ...Show All

  • Software Development for Windows Vista Binding in XOML only workflows?

    Tom, I have converted a State Workflow to XOML only State workflow. It seems that the HandleExternalEvent activity does not set OrderSender object to a value. As a result sender parameter is null, but the e parameter is not null. This was not the case prior to converting the State workflow to XOML only workflow. Please review the XOML syntax and let me know if the binding syntax for OrderSender is not correct ---------------------------- ...Show All

  • Visual C++ A simple CPP source file change caused entire solution to relink

    My group is new to VS05 and previously used VS 6.0. Several people in our group have had an ongoing battle with the compiler. It seems that when you make a simple change to a CPP source file that it will cause the entire solution to have to relink. We do have dependencies set between several projects within the solution, but if I am not changing a common header file or a method signature then I would not expect all of the project to need to be r ...Show All

  • Visual Studio Express Editions Free Learning Videos on Express Web Site

    I've been trying to view and download the free learning videos for Visual Web Developer Express and Visual C# Express. Of a total of 30 videos, I've been able to view and download 26, but 4 cannot be viewed in their entirety nor downloaded to completion. They are Visual Web Developer #2 and #4 (for C#) and C# Express #12 and #14. I usually get a "server was reset" error message, but have also gotten a worm alert message on the first ...Show All

  • Visual Studio Team System How does the test pick up values from List Boxes

    I am trying to do some performance testing for our web application and have recorded a test using data entry from a listbox. However when teh test is run again it does not work as it has no value. The application in the test indicates that some criteria must be entered. Is there a form parameter or querystring parameter that corresponds to the name of the list box If so, try hard-coding the value you want and seeing if that fixes your prob ...Show All

  • Windows Forms Timer & Label

    Ok. Heres my proble, which I know will get answered, because you guys have been dedicated to this forum and providing help. I dont know if people show there gratitude enough, but just know I am very grateful. Ok. I have a timer control and a label. What I want is, if the label.text property said "Welcome", to change to "Hello" in 3 seconds. How would I go about doing that Visual C# Novice wrote: Ok. Heres my ...Show All

©2008 Software Development Network

powered by phorum