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

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

adurling

Member List

Bill F.
George2
roboky
Atul Bahl
treegum
john_frener
Soe
James Alexander
airwalker2000
Brian Kramer
Wizard_01
nguyentanbao
DGRASoft
James Bender
DVAz
orent
Matt MacDonald
Terrence Chan
kcchesnut
FergusLogic
Only Title

adurling's Q&A profile

  • .NET Development Problem installing Microsoft .NET Framework 1.1

    Hi i need to install Microsoft .NET Framework 1.1 on my PC for a game i want to play(Lord of the Rings Online), i downloaded the dotnetfx.exe setup file(file version: 1.1.4322.573) and ran it then during the copying new file prosess i got the following error: "Error 1304 error writing to file: C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\shfusres.dll Verify that you have access to that directory." So yea im kinda stuck as to what to do, any help with this would be really great. Much thanks. It sounds like there is some kind of permission problem on this system. Can you please try the steps listed at http://blogs.msdn.com/astebner/archive/2006/09/04/solving-setup-errors-by-using-the-subinacl-tool-to-repair ...Show All

  • Visual Basic Colour Combo Box

    Hi, How do i get a combo box to display system colours As i am using it so the user can select the background colour for a graph. I have tried colourcb.text = color() but this produces an error any ideas Andy Not that I'm aware of but try this: Public Class Form1 Dim Colours() As KnownColor Dim F As New Font("Arial", 12, FontStyle.Bold) Dim WithEvents CMBO As New ComboBox Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load CMBO.SetBounds(50, 50, 200, 20) CMBO.DrawMode = DrawMode.OwnerDrawFixed CMBO.Font = F Me.Controls.Add(CMBO) Colours = DirectCast([Enum].GetValues(GetType(KnownColor)), KnownColor()) For Each C As KnownColor In Colours ...Show All

  • Visual Basic Problem to update an table?!

    Hi! How do I solve following problem The problem is how do I update that table test's column idnr get diffrerent values, now the code below only update all idnr to same value, in this case DepartLoop’s last value. Sum = 4 While Sum <> 0 myCommand.Connection = connDatagrid myCommand.CommandText = "update test set idnr = " + TextBoxIDnr.Text + " + 1 where idnr = " + TextBoxIDnr.Text + " and orginal = '" + ComboBoxDepart.SelectedItem + "'" myCommand.Parameters.Add( " IDnr" , TextBoxIDnr.Text) MessageBox.Show(myCommand.CommandText) TextBoxIDnr.Text = DepartLoop DepartLoop = DepartLoop + 1 myCommand.ExecuteNonQuery() Sum = Sum - 1 End ...Show All

  • Visual Studio Enumeration values not appearing in Sandcastle output

    My Sandcastle-generated output does not list the member values of Enumerations. I've tried using both the "AddOverloads" transform and the "ApplyVSDocModel" transform. Is there something I need to change in the configuration to get them to appear Rob, In VS2005 documentation we did not list the member values for Enumerations. IMHO this is a poor design decision on our part. The "prototype" transforms released as a part of Sandcastle was supposed to address this limitation. We have not done this yet. We have a work item opened to fix this for our next drop. I will keep you updated. Anand.. ...Show All

  • SQL Server SQL Server 2005 SP2 MDX Changes

    Hi all, Upgrading to SP2 changes the way that MDX behaves, as described in the readme ( http://download.microsoft.com/download/2/b/5/2b5e5d37-9b17-423d-bc8f-b11ecd4195b4/ReadmeSQL2005SP2.htm#_analysis_services ). Can anyone tell me what best practice is to make a query like the one below work as before: WITH SET [Branches] AS '[Branch].[Branch Name].[All].CHILDREN' MEMBER [Measures].[Letters] AS '([Measures].[Contact Count], [Contact Type].[Type Description].[Letter])' MEMBER [Measures].[Letters All Branches] AS 'Sum({[Branches]}, [Letters])' SELECT {[Letters], [Letters All Branches]} on 0 FROM [Communication] WHERE {[Branch].[Branch Name].[Branch 1], [Branch].[Branch Name].[Branch 2 ...Show All

  • Visual Basic accessing information in an opend word document

    I am trying to create an application that will open a Microsoft Word document then be able to access what the user types in to it. I'm using visual studio 2005. I have opened the document in two different ways; using the shell method and creating a new variable as a process, but once the word document is open, I cannot figure out how to access it's information. If anyone knows how to make the ms word application save, copy/paste, or knows a way for my application to access its information let me know. I've created the application once using a RichTextBox built in to my application, but my client (I'm a college intern in over my head in software development) prefers to enter the data in MS Word. Any replies are appreciated ...Show All

  • Visual Basic VB configuration file

    Hi i have 2 configuration file in my project, how can i know which application configuration file i point to thanks If you have an application called ConsoleApplication1.exe     then the configuration file for this will be called ConsoleApplication1.exe.Config So your two applications will have different names and hence different configuration file names. Is there any reason why you have two configuration files for you application and not one.   ...Show All

  • SQL Server SQL query over the internet?

    it is my first time using SQL remotely, i am used to client/server .. i need to run query and execute procedure remotely. i have SQL server 2000 installed on one machine connected to the internet with static IP adress, the second machine does not have SQL server but also connected on the internet but different cities.. so how that can be possible i am using VB6 to and ODBC, i need to know the full code to execute procedure or run query and what i have to do on the first machine to let it work and give me access over the internet Exposing SQL Server to the Internet is not recommend for security reasons. The recommended option is to use a mid-tier, e.g. IIS, which is exposed to the ...Show All

  • SQL Server how to delete data from pda(database) after replication

    hi i am having trouble deleting data(i.e. pictures) from the pda database after uploading to the sqlserver2000 dbase.    can u please inform me of the process or commands necessary to delete from pda only after sync to sqlserver.     after autosync the sdf size doesnt reduce. i.e. Say when i created the sdf and it was 5 mb then i took 20 pictures and it became 10 mb. After i sync the sdf size should reduce to 5-6 mb based on the data, but its not happening. ...Show All

  • Windows Forms ListView not displaying images from ImageList in VS2005

    I am experiencing a very strange problem with a ListView. Here is the situation: on a Windows Form in VB.NET windows application I have a ListView control and an ImageList component. The ImageList component has been populated with eight (8) images and it is assigned to the SmallImageList property of the ListView control. The ListView is manually, i.e. during design-time, populated with ten (10) items and each one of them is assigned a value for its ImageIndex property corresponding to one of the images in the ImageList component. So far so good. When my application was in VS.NET 2003 it worked just fine, i.e. the images displayed correctly. However, after I converted to VS2005 the images are not displayed in run-time. In design time th ...Show All

  • Visual Studio Express Editions How do I disable resizing in applications?

    I want to disable the ability to resize or maximize my applications. What code do I put in the program, and under what class (form load, etc.) Thanks To set a form as not resizeable set the BorderStyle ( FormBorderStyle ) to something appropriate: to display a non-resizeable form it would be set to FixedDialog . The 'resize' border on a form will not show, hinting that it isn't a resizable form: this is important for accessability reasons. ...Show All

  • Visual Studio Express Editions Earliest "Modern" Book for C++

    What is the earliest publish date I should consider when selecting C++ books for programming methodologies and practices I am told that much of the syntax I use is an "old style" of C++. I started learning C++ in the late 90's and, now that I'm getting back into it again, I need to know which books I have are considered current. Most of the book I have are published in 2000. So when is C++ considered "current " Thanks. Two good books that I consider "modern" are "Accelerated C++" and "Modern C++ Design" - but you should note that the published date is not a good indicator of a books quality - there are a lot of "modern" C++ books that are reall ...Show All

  • .NET Development C# Client Socket -> How to get "All" incoming data, and build the file from the byte array(s)

    I have an app running a socket that sends a file (image.bmp) as a byte array, I only can chek for the new line at the end of the file, so my question is how to dynamicaly buid my byte[] to the correct size as all the data is coming in Note: I have Zero control over the server side, all I have to work with is the known port '49100' and the general specification's. Stating: When communicating over Ethernet, the device uses the following predefined ports. The device establishes connections as a Server and, therefore, listens for Host clients to initiate the connection on a particular port. Any number of clients can connect to the device, each one with their private peer-to-peer connection. TCP 49100 User format configurable TCP ba ...Show All

  • Software Development for Windows Vista It there any document tell us why ?

    I am following the hands-on lab, but the document tell me how to do and doesn't explain why. so i am always puzzled. Can u give me any document about why bow ! Hiya If you are a fan of books rather than online documentation there are some coming out next month. - Due on 13/10/2006 - http://www.amazon.co.uk/Essential-Windows-Workflow-Foundation-Shukla/dp/0321399838/ref=sr_11_1/202-4309871-8687067 ie=UTF8 Due on 23/10/06 - http://www.amazon.co.uk/Foundations-WF-Introduction-Workflow-Foundation/dp/1590597184/sr=1-3/qid=1158235191/ref=sr_1_3/202-4309871-8687067 ie=UTF8&s=books Due on 11/10/2006 - http://www.amazon.co.uk/Microsoft-Windows-Workflow-Foundation-step/dp/073562335X/sr=1-4/qid=1158235 ...Show All

  • Windows Live Developer Forums Problems with VEMap.Hide3DNavigationControl() method

    Can anyone confirm whether or not this method is working in v4 It works for me when in 3d mode and no other windows are poped up. To confirm it removes the new funky control in the bottom left corner not the dashboard. John. ...Show All

©2008 Software Development Network