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

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

Dhondtie

Member List

Charles_80
AndersBank
e.d
Martin Lundberg
Marco Shaw
tunes2468
invantix
vgta
MLyons10
Jason Bolstad
sqlster
beermix
R1ZWAN
Gied
d00d
JIM.H.
bonus
Andre's
RavindraDonkada
K.Kong
Only Title

Dhondtie's Q&A profile

  • SQL Server New Data Source showing only default instance

    I have two instances in SQL on my machine. When creating a New Data Source in BIDS, I can only see the default instance. I have checked the SAC manager to make sure the second instance allows remote connections and the setting are exactly the same as the default. Any ideas Thanks. I checked the Config Mgr and the port number was blank for the second instance. When I changed the port number to the same as the first instance, I was unable to restart the second instance until I removed the port number. Should I use a different # ...Show All

  • Microsoft ISV Community Center Forums How to get the filename into the "Insert Picture" dialogue?

    Our company written a marco that used in MS Words and it as same as the "insert -> picture -> from file" dialogue, but we want to enhance it to get the filename automatically when the dialogue box is opened to instead of blank. Hi, Looks like the built-in dialog does not take a initial filename argument. You can change the folder using, Options.DefaultFilePath(wdPicturesPath) = "C:\" Instead try the Filedialog object. Dim dlgFile As FileDialog Set dlgFile = Application.FileDialog(msoFileDialogFilePicker) With dlgFile .Filters.Add "Images", "*.bmp; *.gif; *.jpg; *.jpeg", 1 .InitialFileName = "c:\temp\happy" .InitialView = msoFileDialogViewThu ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Texture trouble

    Greetings, programs. I'm having an odd problem rendering a simple bitmap to the screen. I've got a 256x256 texture that I'm trying to render onto a 1024x768 screen. I've got 4 vertices to make the two triangles that make up my screen rectangle. I lock the texture and fill it with differently colored horizontal stripes, then present it to the screen When I use D3DFVF_XYZ coords in windowed mode, it shows up perfectly. When I use D3DFVF_XYZ coords in fullscreen mode, or use D3DFVF_XYZRHW coords in either windowed OR fullscreen mode, it looks like this: Link to a screenshot. Note the diagonal tear. Any ideas on where I should look for the source of the problem I've checked the values of my vertices and tu/tv values, and al ...Show All

  • .NET Development how can we automatically update web references before build

    How can we automatically update a project's web references before build  instead of manual process You can go to the project properties and in the pre-build events add this line: wsdl.exe /language:<CS, VB or JS> /out:<the folder path in where your web references are hosted> http://<your ws server>/<your ws path> hope it helps, rgds, Rodrigo ...Show All

  • Visual Studio Express Editions How to install and use C# in Visual Web Developer 2005 Express?

    Hi, I'm trying to open an existing Visual Studio solution (.sln file) in Visual Web Developer 2005 Express. I don't know which flavour of Visual Studio 2005 the solution was created by (Express, Professional, Team Suite, etc). The project contains both C# files (.cs) and ASP.NET files (.aspx). I've downloaded and installed both VS Web Developer 2005 Express and VS C# 2005 Express. The Express edition of VS Web Developer should handle C# source, but the VWD and VC# run as separate IDEs. In VWD's About box (and start-up splash screen) there is only one installed product: Microsoft Visual Web Developer 2005. How do I install VC# into VWD so I can open a .sln which contains both ASP.NET Server files and C# files When I ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Easy Tile Sets

    I made this easy TileSet Class, for those who want to create 2D games and they want to store their graphics in one file. I also included a sample tileset. TileSet.cs   <--- Link Here tileset.png   <--- Link Here The black borders are to that you know where to draw (the black borders are included, so you can draw over them), You will need to make a tileset image with the correct multiple dimension of the tile height and width, for example, if you tileheight and tilewidth is 32, then if you want to make the tile set have 32 tiles in the x direction and 16 tiles in the Y direction, then the tileset image has to have height and width of 32*32 and 32*16 respectively. To use the example tileset: TileSet tileSet ...Show All

  • .NET Development ConfigurationManager.AppSettings not reading my app.config

    I am having a frustrating issue that everyone tells me should be very simple to execute. I'm using the new ConfigurationManager object from System.Configuration.dll which I have referenced in my project. I do not have any compliation problems or warnings, yet I cannot get a single key value out of my app.config file. My config file looks like this: < xml version="1.0" encoding="utf-8" > <configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0"> <appSettings> <add key="KeyName" value="KeyValue"/> </appSettings> </configuration> and am trying to just assign this to a string like this: string path = System.Configuration.ConfigurationMan ...Show All

  • Visual FoxPro Dynamically enable or disable rows in a grid.

    How can I dynamically enable or disable the current row in a grid depending on a contition I used to use 'when' in Foxpro browse but in a grid the 'when' affects the entier grid. thanks. Aleniko wrote: How can I dynamically enable or disable the current row in a grid depending on a contition I used to use 'when' in Foxpro browse but in a grid the 'when' affects the entier grid. This code in the grid's AfterRowColChange: This.AllowCellSelection = SomeCondition ...Show All

  • Visual Studio Express Editions working directory

    Ok here is what i got. Private Sub Button4_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click Dim p As New Process p.StartInfo.Arguments = "/cgo" p.StartInfo.WorkingDirectory = "c:\" ' i want to insert a variable here that when i key in c:\test.bat or c:\car.bat in a textbox it will pull the address i typed in the textbox p.StartInfo.FileName = "cmd.exe " p.Start() p.WaitForExit() MsgBox( "Done" ) Ok i am new to vb. and my program works fine if i code in the directory address for my program but what i am trying to do is get it set up to where i type in the location in a text box and it automatically ...Show All

  • .NET Development qesutions: moving an img , saveing a screen shoot

    am making a proj in asp.net/c# it includes moving an img dynamcly , but the img control dosn't have position propretes(neither left and top ones). anybody know how can i do it or can refer me to somewhere that teaches me what i need to know and i need to save the new img (img over img) to a file anybody know how or a place i can learn how to take a screenshoot of a spacific place in the UI (a sqaure in the UI that i can save to an img file) thanks the best place to ask ASP.NET related questions would be over at the ASP.NET forums: http://forums.asp.net in terms of making a screenshot, here is an example where it will take the entire screenshot, you can modify the code to only take a specific pa ...Show All

  • Software Development for Windows Vista How flexible/forgiving is the WF XOML loader?

    Context We are adding an "extractor" component to a WF-based modeler suite that will programmatically create XOML *files* that will be then loaded into our WF modeler. A key issue will be version control between the XOML created by extractor and the WF modeler. We don't expect the activity namespaces and names to change nor their hierarchical relationships (sequentual workflow model). However, we do expect the properties/attributes for each activity to be vary over time as the extractor is enhanced somewhat independently from the WF modeler. Questions 1. What happens if WF is asked to load a XOML that has a) missing attributes for an activity b) extra attributes for an activity Michael. For the latt ...Show All

  • Visual Studio Express Editions calender link to database

    I'm trying to create a database of projects. when a project is entered i want the entered to link the database info for that project to the calender date so that when a user clicks on a calender day the projects for that day are shown in a message box. Any ideas Thanks if I understand correctly, say you have details of a project stored in a database including the date of that project. From the winforms app, when the user selects a data using say a datetime picker control or a month calander, you wish to retrieve that date of project, if stored in the database, from the database and show it to the user is this correct ...Show All

  • Visual Studio Express Editions progressbar help

    Hi im new to this programing stuff im using visual basic express edition and im trying to make a program its like a internet explorer and i cant seem to figure out how to get the progressbar to work when im loading the web pages what do i do please help fast! yea thanks for the fast reply again but were would i put that sry im a nub at this lol ...Show All

  • Visual Studio Team System Code Analysis in VS2005 for Testers

    Hi Everybody, I've got a problem with VS2005 for Testers & projects with Code Analysis enabled. I've created the solutions in VS2005 for Developers and Checked them into TFS. Then I've checked them out on a machine with VS2005 for Testers and the solution does NOT build. I get this error The "CodeAnalysis" task failed unexpectedly. System.NullReferenceException: Object reference not set to an instance of an object. at Microsoft.Build.Tasks.CodeAnalysis.GenerateFullPathToTool() at Microsoft.Build.Tasks.CodeAnalysis.Execute() at Microsoft.Build.BuildEngine.TaskEngine.ExecuteTask(ExecutionMode howToExecuteTask, Hashtable projectItemsAvailableToTask, BuildPropertyGroup projec ...Show All

  • Visual Studio Express Editions Options for Creating Reporting

    Can any one tell me my options for creating reports in VC++ Express 2005 hello Re: Options for Creating Reporting I am going to mark this thread as answered since you have not followed up with any further information on your problem as requested for over a week - I assume you solved the problem yourself or one of the suggestions in this thread helped you solved the problem. If you have a solution you could post it so others can find it. If you do not have a solution then please submit further details and then mark the thread as unanswered. thanks Rico ...Show All

©2008 Software Development Network