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

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

PiaMaria

Member List

AamirHabib
40th Floor
ChandraP
BLRisner
Joshua-Programmer
Sai A
Luis Alonso Ramos
Toby77006
TomSlick23
WalangAlam
DiasVFX
Sukumar Raju
newcyan
Stubey
danacton
Callum
zort15
KONJIRO
Yasir Imran
ManjuVijay
Only Title

PiaMaria's Q&A profile

  • Visual Studio 2008 (Pre-release) drilling from FRAME control to HTMLDoc object

    I have a Frame Control in my XAML file, with source being a web page: <frame source="url"> I need to do an InvokeScript(method,args) against that web page. Frame does not directly support invoke script, but the underlying object that runs the frame WebBrowser does. I have searched and searched, but how does one drill down from the Frame objects properties to find the underlying: WebBrower or HTMDoc object I reported this bug a while back, unfortunately it couldn't be resolved in v1. The workaround is to host the WinForms browser control. HTH, Drew ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Bryce 6.0

    As soon as they get a page up I will post a link... What has been said is full Poser animation support thru DazStudio...And IBL lighting,Exporting of Booleaned objects,Faster render times,Improved Stabability,Major enhancements in the Terrain Editor.... ...Show All

  • SQL Server How to create cumulative S-curve?

    Hi I need to make two reports: one containing the Raleigh chart, the other containing a cumulative curve. In the raleigh report I do this: Per project I can see the amount of mandays on a timebase(weeks). For the s-curve (cumulative curve) this needs to happen (and I dont know how): I need to see the sum of the amount of mandays on a timebase(weeks). An example: In raleigh curve: week1 has 20md(mandays), week2 has 30md, week3 has 15md, week4 has 5md In s-curve the same values should give: week1 has 20md, week2 has 50md(30+20), week3 has 65md(50+15), week4 has 70md (65 + 5) I tried a sum of a sum but thats not allowed in RS Anyone who knows how to generate an s-curve (cumulative curve) ...Show All

  • Visual Studio VS .NET 2003 debug broken with windows XP SP2/VS2005

    I have recently installed windows XP service pack 2 and a trial demo of VS2005/VSTS on my PC. Now I can't debug in VS .NET 2003. I get:- "Access denied. Verify that you are an administrator or a member of the 'Debugger Users' group on the machine you are trying to debug. After being added to the 'Debugger Users' group, you must log off and log back on for the setting to apply". My MDM isn't running and when I try and start it I get:- "The Machine Debug Manager on Local Computer started and then stopped. Some services stop automatically if they have no work to do, for example, the Performance Logs and Alerts service." I have looked through all microsoft articles I can find and tried everthing they sugge ...Show All

  • Windows Forms hi i need help with visual basic 2005

    i have created a project and setup up small database within the program and created a dataset and know i want to retrieve data from the database/dataset and display this in a rich text box could some please help thanks steven Hi, Here is the code to retrieve data from database dim con as SqlConenction dim com as SqlCommand dim da as SqlDataAdapter dim ds as DataSet con = new SqlConnection("your connection string here"); con.Open() com = new SQLCommand("select * from YoutableName", con) da = new SqlDataAdapter(com) ds = new DataSet da.Fill(ds) To Display the data in a rich text box. I don't understand if you want to display a unique column or all c ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. DrawUserPrimitives in B2?

    I've created a new project, and I've moved all my code over from B1 to B2 in the new project. It compiles, but it's not actually showing anything when run. Is there anything that lists what all the changes are from B1 to B2 I suspect my problems lie in that the DrawUserPrimitives has changed considerably, and the XNA docs now show an entirely different (and more complex it seeems) way of drawing 3D objects. An example of DrawUserPrimitives working in B2 would be great if possible, or should I just bite the bullet and change over to DrawPrimitives and IndexBuffer Sample effect pass: textureEffect.Parameters["WorldViewProj"].SetValue(cubeSRotate * playerRot * m_effect_b.View * m_effect_b.Projection); textureEffect.Begin();//Effec ...Show All

  • Windows Forms How to make an SDI application

    Hi, my question is simple but I could not find enough info .. So, I want to make an SDI application in visual c#.net 2003 , how can I do this, any sample, tutorial etc are greatly appreciated .. thanks.. if(SDI == "Single Document Interface") { // By defualt a Windows application is a Single Document Interface. i.e SDI is ready made you dont need to do anything for it. } For making your application MDI you need to set the IsMdiContainer property of Main form to true, set the the IsMdiChild to true and MdiParent to mainForm. This will create and MDI. Conslusion for your question is that you dont need to do any effort to make application SDI, by default it is SDI. C ...Show All

  • Visual C# How to read current active IE window's html content

    Hi there!, I really hope someone can help me with this issue... it is really cracking my brain up:S What I want to be able to is to load the html content of the current active IE window by a simple IE Frame or console application. Not using the webbrowser component. That is possible but I just don't know how to do it. Maby with the HtmlDocument I have googled and googled.. I found this example http://www.codeproject.com/vb/net/ByPassAutomation.asp which is VB, but other than that the example does NOT work.. well I have IE 7.0 so maby it's because of the tabs.. can anyone please help me Regards, Qawi hmm actually this code is weird:S I think I AM on the active tab because when I call refresh it refreshes t ...Show All

  • SQL Server Need help on a query

    I join with 2 tables, one table (table_A) has 5 records and the other (table_B) has 7 records. 5 records in table_A match 5 records in table_B. There are 2 records in Table_B not in Table_A, How to write a query to get only the unmatched records out select s . EMPLID , s . EMPL_RCD , s . EFFDT , s . EFFSEQ , t . EMPLID , t . EMPL_RCD , t . EFFDT , t . EFFSEQ from table_A s right JOIN Table_B t on s . EMPLID = t . EMPLID and s . EMPL_RCD = t . EMPL_RCD and s . EFFDT = t . EFFDT this query give me all the rows from both table, but I only want the unmatched rows. Thanks in advance U will get unmatched rows from Table_B in this query. SELECT B.* ...Show All

  • Visual Studio Tying domain classes to shape objects

    Hello! Please forgive me for such a beginner question, but we just started playing with DSL Tools a few days ago and are having some trouble getting shapes to appear in the VS toolbox. We've attempted the following steps: create a domain class ('FooElement'), create a Geometry Shape ('FooShape'), add an Embedding Relationship from ExampleModel to FooElement.  In the DSL Explorer:  add a ToolboxTab/Tool (Class=FooElement, Order=10), add a ShapeMap (Class=FooElement, Shape=FooShape). After performing these tasks, the item still won't show up in the VS toolbox when running the project. Help EDIT:  the error was that the templates hadn't been transformed.  However, now, when dragging an object onto the surface, it adds it ...Show All

  • Windows Forms Check if the application has modal dialog open over

    Hello. I have a WinForms application which check for some condition each second (windows timer). Once a condition is true it has to refresh data and start processing. However, in the case there is some action like modal dialog or message box opened I need to wait until user closes it and then start reloading. The same behavior should be done when the application is not active. What i do once the condition is reached is looking for all top level window that belong to the my application's process and compare them with my main form's handle. If neither match i assume there is some modal dialog / message box is opened. My problem is that there are more than one top level windows opened for my .NET application although i created only one. Is it ...Show All

  • Community Chat Question with Vista

    Sorry this might be misplaced Will Vista be able to run Xp programs such as games and files Another thing is would you suggest having 2 opperating systems and if yes should I have a seperate drive Will this affect my computer by slowing it down having 2 OS's thanks the current vista (rc1) is compatable with most applications. however, because it isn't in retail or even rtm yet we can't say for sure.because 2 os's cannot run simultaneously (unless one is emulated in the other) your computer would experience no negative affects from dual-booting.A tip for dual-booting xp and vista: take a long time to think about which os you will use most. allocate more drive space to this os. like right now, i'd give vi ...Show All

  • Smart Device Development Can we acces .NET Framework 2.0 new classes and new features from Visual Studio 2003?

    Hi I am Sridhar, in my system I have installed Visual Studio 2003. I have installed Framework 2.0 and SDK. I have to call all the libraries which are exists in 2.0 from VS 2003. Can we acces .NET Framework 2.0 new classes and new features from Visual Studio 2003 and how Regds, Sridhar R ...Show All

  • Visual Basic deployment of vb.net windows application problem

    hi all how life is going in these days I using vb.net and access i use the com component in my project of vb (like msflexgrid,mshflexgrid) i deploy project windows application using setup wizard what i am required in user machine 1)framework 2)internet exploer 6.0 for com what is required please help when i load it on user machine then they shows jit compilers error thanks in advance hi sir Jit Debugging failed with the following error :0x800405a6 Please check the documentation topic 'JUST-IN-TIME Debugging error ' for more information i read it form msdn in which show no user log on but in user machine i log on.i tick in deploy source code also i installed all .net vs 2003 then i show ...Show All

  • Smart Device Development GPRS Connection Setup in Code

    Hi, I was wondering if there is a way to configure a connection for GPRS on a windows mobile 5 device in code. I am having a few problems doing it through setting the registry as I can get the connection to appear under the Connections > Manage existing connections dialog but if I try and connect to the connection I am prompted for the username and password however I do not want this prompt to appear. I have been able to do configure the connection with great success for a windows ce 4.2 and pocket pc OS however it seems a little different for the mobile 5 device I am working ok. I do not want to import registry entries, I would like to be able to set the registry values in code, which is working as I get the connection in the required ...Show All

©2008 Software Development Network