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

Software Development Network >> Paul-I's Q&A profile

Paul-I

Member List

merwinp
Wengyik Yeong
Andrew Garbuzov
Liquidloop
billconan
Crazy.Freak.555
mikeatroundhere
Huckster
davenitup
anandj
ianRm
bljacobs
Hajin Studio Group
Abnerian
Bryan Dunlap
wayne-o
Martin Carlisle
R Gatliff
Erin
THal
Only Title

Paul-I's Q&A profile

  • Visual C# xml file

    how do you append to a xml file so you will not overwrite what is all ready there hi, you can use XmlDocument to load the file in computer memory mydoc.Load("path.xml") , then you select the rootnode XmlNode root = mydoc.SelectSingleNode("root"); you can append child to this node root.AppendChild(MyNode); hope this helps ...Show All

  • Windows Live Developer Forums Send IM from Flash in JS

    Is there any way to launch the MSN IM send IM window (much like EnterIM is described to do in the API) without having an entire application   I'm just trying to open an IM window and add a default message.  This is possible with AOL IM by aim:goim message= is there something similar with the MSN API Thanks, Erin Not really; you can open a conversation with a contact using msnim:chat contact=whatever@hotmail.com but you can't specify the actual message.   ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. 2d display in direct3d

    I'm looking for some help in drawing a texture (or anything really) that is fixed to the screen. Like text in the sdk samples, you can move around in 3d but the text is fixed. My goal is to create a heads up display for a 3d fps. I just started learning direcx 9 abt 2.5 weeks ago but have the basics down - except this. If anyone could point me to a sample it would be great. Thanks in advance  oh btw i'm using c++ I've seen people using quads in 3d and setting the projection to orthonormal to create this effect. There is a good reason for this - it allows you to apply a vertex ...Show All

  • Visual Basic ConnectionStrings in Class Libraries

    I have created a class library that has DataSets in it. When you configure a DataSet in Visual Studio 2005, the connection string goes in the app.config file: < connectionStrings > < add name = " AClassLibrary.My.MySettings.MyDBConnectionString " connectionString = " Data Source=.;Initial Catalog=Northwind;Integrated Security=True " /> </ connectionStrings > - fine, so in theory you can configure it at runtime. Except, of course, that this configuration setting must go in the host applications' web.config or app.config. However, if you copy the connection string above into the host config file, my class library ca ...Show All

  • Visual C# regularexpressionvalidator - Does it allow look ahead?

    I have a regularexpressionvalidator which is using the following expression: ^\$ ( =[1-9])( :\d{7,10}|\d(\d{1,2}) ( (1)(,\d{3}){2}|(,\d{3}){2,3}))(\.\d{2}) $ It is supposed to check for a value between 1000000 and $9,999,999,999.00, with or without commas, $ or decimal. It works when I try it in a regular expression tester but won't work in the the validator. I am wondering if maybe the regularexpressionvalidator doesn't allow for look ahead. ...Show All

  • Windows Forms Creating msi installer

    I have configured Taskvision to work for my needs, but how do I create an installer Robert. When I attempted to create a client installer I included everything I thought could be a reference or dependency and still got "System.NullReferenceException: Object reference not set to an instance of an object" when I launched the client and logged&nb ...Show All

  • Visual C# How to display columns from a database table in a combobox?

    my table name is Students with columns ID, Name, ... Hello Create a DataSource, Set the combo box datasource property to the created datasource, then set the combo box displaymember property to "Name" and valuemember property to "ID", so in this way all the names will be populated in the Combo Box. ...Show All

  • Visual C# How can I use the timer properly??

    To decorate my WinForm App,I used a timer to make the opacity of the form graduately transform when closing...but it did not work.,.wy Some one can help me You're close.  What's happening is the form is closing before you have a chance to "dim" it.  Try this... private void timer_Elapsed( object sender, System.Timers.ElapsedEventArgs e) {     if ( this .Opacity>0)        this .Opacity-=0.1;     else    {        this .timer.Stop();        this .Close();    } } private ...Show All

  • Smart Device Development listchanged event on BindingSource

    The list changed event on and I binding source is fired only when i execute de endedit method and i have made previusly a change in the binding list(moved,delete,inserted etc..). Does anybody know a way to notice that a change its made in the bindingSource list and after that i could call the canceledit method to restore my list. notice that if I call the endedit method the cancel edit wouldnt restore my bindingsource becose the changes have alredy be applied to mi bindingsource. Thanks for your help. The problem is that the BindingSource datasource is a ResultSet so that resultset couldn’t ...Show All

  • SQL Server Problem while deploying Report on server

    Deploying to http://localhost/ReportServer Deploying data source '/Report Project1/cnt_SDS_REQUEST'. The Report Server Web Service is unable to access secure information in the report server. Please verify that the WebServiceAccount is specified correctly in the report server config file. Dear Lukasz, your post was very helpfull, but I've a very strange bug. If I try to open a report all work fine. But if I click on a record (that should open a new sub-report) I've this: Not sufficient rights for the NT Authority\NetworkService account to complete this operation If I try to do the same thing using then Report Builder all work ...Show All

  • .NET Development Increasing the runtime heap?

    Hi I've got an issue with OutOfMemory exceptions occuring in an application. I know the gen 0 heap size is based on the L2 cache of the CPU running the system, but even when I try to run my process on a system that has a megabyte of it, it gets the exception not even halfway in. Normally, I'd just take it for granted that I was wasting too much memory too quickly, but the problem is - I need all of the memory I'm trying to allocate, and I need it all right away. Even if I insert GC.Collect(); GC.WaitForPendingFinalizers(); GC.Collect() and a Thread.Sleep(500); into my allocation loop, not enough is being collected for me to continue on. S ...Show All

  • Visual Basic VB SQL - Fieldname,etc - simple PROBLEM

    VB SQL - Fieldname,etc - simple PROBLEM Having trouble with what should be a ridiculously easy small, brief routine in VB. Any insight, would be really helpful. All Im trying to do is have VB pull data from two databases, two different ways; database (1) Simple table, with entries such as (strucuture of db); P 101 102 103 104 105 ------------------------------------------------------------------- 1 1286 2847 5288 2299 3300 2 3101 3024 3503 3024 2305 3 3016 3074 3058 3029 8310 4 3111 3142 3135 3214 3315 5 3116 3417 3518 2319 9400 The above is the table. It is only a static lookup table, no writing or updating will occur, where column ...Show All

  • Visual C# How this code work(C# 2.0)? It shouldn't!

    What makes you think that, there is no ambiguity possible, the compiler can directly deduce the best function member to call, 3 is an int parameter and there is a non-generic method F1 taking an int as argument, non-generics takes precedence over generic parameters, overload resolution solved, point. make your call g1a.F1(3L); and you will get a compiler error, as now there aint no method taking a long. change it to G1 g1a = new G1 (); g1a.F1(3L); And the first method will be called. Willy This works because the design has changed.  According to a newsgroup post back in early april by Rick Byers (msft):, ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. I need e-book for directx programming

    hi.... i need e-book for directx programming on C#... please help me! Yes Glenn's blog is now at http://www.virtualrealm.com.au/ I will edit that old link out of the posts. You are correct that after it expired it was taken over by someone else. ...Show All

  • Visual Studio Error 5 Unable to copy file "obj\Debug\BO.dll" to "bin\Debug\BO.dll". The process cannot access the file 'bin\Debug\BO.dll' ...

    I have been successfully using VS 2005 Beta 2 (VB.NET) for about a month now.  Yesterday, I started getting the error: Error 5 Unable to copy file "obj\Debug\BO.dll" to "bin\Debug\BO.dll". The process cannot access the file 'bin\Debug\BO.dll' because it is being used by another process. C:\WINDOWS\Microsoft.NET\Framework\v2.0.50215\Microsoft.Common.targets 2274 9 This error does not occur the first time I build the solution after just opening it in VS.  But all subsequent build attempts fail with this same error.  If I exit VS and reopen the project then I can again build one time and al ...Show All

©2008 Software Development Network