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

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

DavidTaylor

Member List

AksaiGora
yanyee
Andrew Fry
Andrea Pagliano
RobertMC
NoEgo
Sara_H
Ofir Epstein
Vaish
rottengeek
curtKauf
Eli Gazit
leonardoreyes
Louis Jaramillo
paschott
m_umair_85
wbbeasley
IntMain
Malleswar
Andy Ho
Only Title

DavidTaylor's Q&A profile

  • SharePoint Products and Technologies How can I execute code in Session Start/End, Application Start/End, etc.?

    If I have code that needs to execute on Session Start, or Application Start, etc., what is the proper way of adding this code for a Sharepoint web application Just add global.asax as with ASP.NET SharePoint already installs with a global.asax file. You could modify it directly, but the standard 'modifying installed SharePoint files' disclaimer applies: hotfixes, patches, etc. could overwrite any changes you make to the file. ...Show All

  • Visual FoxPro view

    Hi gurus I have the following and every time I run the second view It tells me that my first view created does not exist. first view create sql view RV_company_Find_Prefetch remote connection preauth as;select distinct fkCompany from security_User where fkUser= lcfkUserName and deleted=o order by 1 second view Cretae sql View RV_carrier_find remote connection Preauth as;select Name,address1,city,state,pkcarrier; from carier c;inner join preauth! RV_Company_find_prefetch pf; on c.pkcarrier=pf.fkComp The error says that it can not find the first view Can you gurus help me here. Thanks After you create the first view, what does AERROR() tell you It looks to me as though the vi ...Show All

  • Visual Studio Team System report designer don`t find all fields

    hi, i`m using report designer to create reports on my self-created work-items. but i did not find all fields and types in the selection in the report designer. i create a new report project. connect to the ms sql server 2005 analysis service. use the following conneciton properties: server-name: atvie-tfs01 database-name: TFSWarehouse i tested the connection and the connection is ok. in the query builder i choose the "team system" cube. and then i get the first problem. i added work item - System.WorkItemType to a filter with "Add to filter". in the filter i want to choose in the filter expression one of my newly created work-items. one is called ReleaseItem. but it is not available in the drop-down! but i imported alr ...Show All

  • Visual Studio Express Editions ArrayQuestions

    How do i have an array that doesn't have a size How do i store an array in the my.settings can you give me more information about Arraylists and dictionary classes. thanks   And how do i store and array inside an array to make a 2d array.   ...Show All

  • Visual Basic Dynamic tabs and messages

    Hi everyone, I have a dialog box set up that has several tabs on it. This is a communications dialog box which handles incoming messages across my TCP/IP connection with a server. These messages can be related to different things, for example, and each tab on my dialog box is a representation of these different message types. Each tab contains a text box and my messaging function writes incoming messages to the text box. That bit is easy; done. One of the messaging functions that I want to implement is the ability to initialise outgoing messages to other users connected to the servers. Now I know how to do that as far as the network programming goes, it's easy. But I want people to be able to initialise messages with as many peop ...Show All

  • .NET Development Future XSLT/XPath features in .NET Framework

    In effort to prioritize our goals we composed the list of random features each of them may add value to set of XSLT tools offered from Microsoft.   1.        XSLTc (Compiler for XSLT stylesheets, that generates .NET assemblies) 2.        Performance improvements in the XslCompiledTransform 3.        Compilation XSLT to JScript (like AjaXslt) 4.        Compilation XSLT to C++   5.        XSLT 2.0 in the XslCompiledTransform 6.        XSLT 2.0 in the MSXML 7.        XPath 2.0 ...Show All

  • Windows Forms writing back on database

    How can we databind a PictureBox control I tried i tlike this picPrimaryLogo.DataBindings.Add(New Binding("image", mFcPartySetup.DSPartySetup, "PartyCompany.PrimaryLogo")) but it said someThing like that: Additional information: Could not format the value to the desired type. why does this happen i m using vb.net vs2003 with sql server 2000 personal edition & the datatype or the sqlsdatatype for the field PrimaryLogo is image datatype then why does this value/format issue occurs Hi, Dim cn As New SqlConnection(strCn) Dim cmd As New SqlCommand("SELECT Picture From myTable ", cn) Dim da As New SqlDataAdapter(cmd) Dim ds As New DataSet da.Fill(ds, &qu ...Show All

  • SQL Server SSIS performance

    Hi, I have 4 execute packages say A, B, C, D. These packges contains packages for data transfer in turn. Package A - 15 packages Package B - 15 packages Package C - 20 packages Package D - 20 packages When i run these packages one at a time in the order A, B, C, D then the execution time is around 17 mins. If I make a parent package and put A, B, C, D in sequence in it, executing this parent package increases the execution time to arnd 50 mins. Pacakge A, B, C, D doesnot run in parallel. They run one at a time. So i was wondering why the there is so much time difference. Please let me know if theres some configuration settings to make the parent package efficient. All the test conditions are same in both the c ...Show All

  • Visual Studio Express Editions Plot real time graph using data read from serial port

    I read some data from serial port and i store it with buffer.Add(final). I later would like to take the data from buffer and add it to another new list which is yvalues, data inside yvalues are the what that would be used to plot the real time graph (plot one point every second), yvalues.add (buffer) certainly not going to work..What is the right way of solving this problem Private buffer As New List(Of Integer ) Private yValues As New List(Of Integer ) 'event handler for data_received Private Sub OnDataReceived( ByVal sender As Object , _ ByVal e As System.IO.Ports.SerialDataReceivedEventArgs) _ Handles SerialPort1.DataReceived Try TextBox1.Invoke( New myDelegate( AddressOf UpdateTextBo ...Show All

  • Visual Basic Accessing Remote Computer's Information

    Okay, I'm creating a Visual Basic .NET 2005 Windows Service. I need it to periodically access some remote servers for their information. Right now, I'm working with drive information, so I'm trying to get the total space and the amount remaining on the drive of the remote server. How do I go about doing that I'm trying to keep this service centrally located so that it can access 3 separate servers without loading and configuring it individually. I tried My.Computer.FileSystem.GetDriveInfo() and System.IO.DriveInfo, but, predictably, they only access local drives. Any help would be greatly appreciated. Well, those computers probably think of your code as some stranger wandering into their house and trying ...Show All

  • Windows Live Developer Forums Web Services

    How to pass connection string from web service to a windows application. For eg. There is a windows application which has to display the data from the database and the web service is used to pass the connection string from the web service to the windows application. ...Show All

  • Community Chat 3D Cube MMORPG 1M$ Development

    This message is in regard to the 3D Cube MMORPG Development.  I am looking for someone interested in a business opportunity along with HyCube - Design and Development who would be interested in helping fund the 3D Cube MMORPG.    Program Layout posted on the website : http://magicnxnja.tripod.com/   then contact me at dannyblei@yahoo.com or reply to this post.  You can also contact me on MSN with the same EMail. Key Features: - 3D Puzzle Matrix 3D Cubae Programming Language 3D Environment Editing Tool With Cubae Intergration Tachnoid Infect Bases   If you are interested in investing in this development then contact me at dannyblei@yahoo.com ,  or Reply and provide the nec ...Show All

  • SQL Server Access 2000 Upsizing Wizard add-in

    Hi, I want to upsize a db from Access to SQL Server. I have a version of Access 2000 that has not got the Upsizing Wizard add-in loaded, and can't find the install disc. Does anyone know if it is downloadable, and if so, from where Thanks Thanks, I finally managed to find the install disk so all is good now. ...Show All

  • .NET Development Parsing double value from a string

    Hi all, I need to parse a string which is in the following format (example): -0.0004 USD/Tonnes Basically, it will be a double value, might be preceded by the negative (-) sign and followed by <Currency>/<Unit of Measure> . The result should be just the double value (with the sign if its there), as in the above example, it should translate to -0.0004 I wanted to know if there is an easy way of doing it in C#, like using the Double.Parse() or the string.Format() methods (I tried them both but couldn't get them to work) Or do I have to parse the string character-by-character to get the required result Thanks in advance, MadMonk P.S.: Apologies if its a silly question, I'm still a newbie in .NET ...Show All

  • Visual Studio Tools for Office Which VSTO edition should I be using?

    Earlier I downloaded the "Microsoft Visual Studio Tools for the Microsoft Office System" and now I see there's a "Microsoft Visual Studio 2005 Tools for the 2007 Microsoft Office System" download that is available. I had to remove everything because I was experiencing problems when trying to run in debug mode (The ApplicationStartUp event was not firing, but that's another story). Now I get the following error which occurred after I remove the first VSTO install and then installed the latest. "The Visual Studio Environment Menu Package ({715F10EB-9E99-11D2-BFC2-00C04F990235}) did not load because of previous errors. For assistance, contact the package vendor. To attempt to load this package again, type 'deven ...Show All

©2008 Software Development Network