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

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

MyoZaw

Member List

Marius Onofrei
shailu155
Mateusz Rajca
Humpty
rjShadow
creaturita
MethMath
ChitownDotNet
Richard Abrahams
pioner
Michelle A.
tacallah
Promit
satya n
akaballa
ThE_lOtUs
Dany V
Peediaj
Jake Watkins
Ed Abshire
Only Title

MyoZaw's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. how to apply custom effect to mesh?

    1. I just import tiny.x from directx sdk to my project 2. Just add test.fx from xna to my project uniform extern float4x4 WorldViewProj : WORLDVIEWPROJECTION; struct VS_OUTPUT {     float4 position : POSITION;     float4 color : COLOR0; }; VS_OUTPUT Transform(     float4 Pos  : POSITION,     float4 Color : COLOR0 ) {     VS_OUTPUT Out = (VS_OUTPUT)0;     Out.position = mul(Pos, WorldViewProj);     Out.color = Color;     return Out; } void PixelShader(inout float4 color : COLOR0 ) { } technique TransformTechnique {     pass P0     {      &n ...Show All

  • Visual Studio 2008 (Pre-release) GridSplitter problem

    Hi! I was asking that question already an nobody answered, so I made a quick example whats wrong. When you run that example and hold the mouse pressed on the left button, the right column is set to width 0 and its content disappears. But when you drag the right GridSplitter a little and then press the left button again, the content disappears but the column isn't being set to width 0 although its exactly the same trigger as before. Whats wrong Thanks! <Window x:Class="TestApp.Window1" xmlns=" http://schemas.microsoft.com/winfx/2006/xaml/presentation " xmlns:x=" http://schemas.microsoft.com/winfx/2006/xaml " Title="TestApp" Height="300" Width="300"> <Window. ...Show All

  • SQL Server Catching DML statements by A specific application and emailing all identiy info and T-SQL String

    I would like Create a DDL trigger that would intercept all delete,updates,and inserts by a specific application. Than send an email to me about the : user name application T-SQL statement executed The problem I am having is I can't create a DDL trigger for Delete,Insert, or Update statements. If DML Statements are not catchable , how come I can do a trace with SQL Profiler and see what DML statements are executed. I created a common generic managed stored procedure for Auditing all DML statements based on an aricle at the following url http://g.msn.com/0FCS/1 D135BE85&http://www.sqljunkies.com/article/4cd01686-5178-490c-a90a-5aeef5e35915.scuk&&DI=5784&SU=http%3a%2f%2fwww.Codezone.com%2fSqlJunkies.com ...Show All

  • Visual C# Open a new web page without saving

    I use WebBrowser 2.0 control to edit an html page.When I open a new page, one dialog shows and ask me to save or cancel saving the old page. How can I open a new page immediately without saving And how can I customize this dialog ( example : change message in this dialog, change the text of button ...). ...Show All

  • Connected Services Framework Notification on UpdateProfile request

    Hi, I have been trying to get UpdateProfileNotification to work without any success uptill now. I have been able to update profile and have subscribed my SampleService to receive UpdateProfileNotification. But my sample service never gets UpdateProfileNotification when PM updates a record. I got inside eventlog and found Subscription request failing with an exception "Microsoft.ConnectedServices.SDK.Eventing.EventingLogger" threw an exception ---> System.NullReferenceException: Object refernce not set to an instance of an object at Microsoft.ConnectedServices.SDK.Eventing.EventingLogger.cctor But I could not find any class called Eventing.EventLogger in the SDK documentation shipped with CSF3.0 Developer f ...Show All

  • Visual Studio 2008 (Pre-release) RC1 of .NetFx 3.0 released on September 1st

    .Net Framework 3.0 Release Candidate 1 (RC1) and Windows SDK RC1 are both available for download. EID & Orcas Preview should both be available next week. A few more details are posted here . Enjoy and please keep the great feedback coming! Thanks, Rob Relyea Program Manager, WPF Team http://rrelyea.spaces.live.com EID & Orcas are now both available! For links, please see my post about rc1 platform and tools . Thanks, Rob Relyea Program Manager, WPF Team http://rrelyea.spaces.live.com ...Show All

  • Windows Forms creating setup of the project in .Net

    Hello Alls, Me create the setup of my project in C# (through setup project ).. Now i want that wen i start installing from the setup created...Before it i got the message dat if .net framework is nt installed please installed it.. How do i add it ... Regards, Aamir ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Networking Code Information

    Is there a description on the network code(xBox Live) support I need to give some estimates on how long a room based chat would take to implement, but I haven't been able to find information about networking support in the XNA dev kit. Is there an API to handle this, or do we have to develop this from scratch TIA, Scott ...Show All

  • SQL Server SQRT in Analysis Services

    Hello guys, I need to create a calculated measure that uses the square root function but there isn't a function in AS for that. On the other hand I can't calculated de SQRT in my Data Source View because the formula needs to be made at the cube level to get the needed results. Any suggestion Thanks! Alan Koo SQRT is really just a power of 1/2. So you can you the power operator. I.e. WITH MEMBER Measures.x AS 25^0.5 SELECT x ON 0 FROM [Adventure Works] HTH, Mosha ( http://www.mosha.com/msolap ) ...Show All

  • Visual Basic Geting an Image of the Page in a Web Browser Control

    I would like to know how, if its possible, to get an image of the page loaded into a web browser control Imports System.drawing Public Class Form1 Private Sub Form1_Load( ByVal sender As Object , _ ByVal e As System.EventArgs) Handles Me .Load Wb.Navigate( "www.microsoft.com" ) Wb.Location = New Point(0, 0) End Sub Private Sub cbGo_Click( ByVal sender As Object , _ ByVal e As System.EventArgs) Handles cbGo.Click Const ScrollbarWidth = 18 Dim wbRect As Rectangle = Wb.ClientRectangle Dim wbBm As New Bitmap(Wb.ClientRectangle.Width - ScrollbarWidth, _ Wb.ClientRectangle.Height - Scrollb ...Show All

  • SQL Server Delete records every day

    Hi! New on this Is there a way on a sql sever where i can delete som records one time every day like if a field in my table is < getdate() Alvin Hi Alvin, You can schedule the stored procedure to run as required via creating a job (and step) in SQL Server agent. Cheers, Rob ...Show All

  • Visual Studio Clash between Studio 6, Studio 2003, and Studio 2005?

    I just recently got a new machine here at work. When I was installing software, I was careful to put Studio 6 (VB6 and C++6) on, THEN Visual Studio 2003 (.NET framework 1.1) and then finally Visual Studio 2005 (.NET framework 2.0). I need to use them all for my job, often in the same day. My current project is with C# 2.0, so I got that working right away. But I just got interrupted to go back to help with a previous project, which is ASP.NET & VB.NET (Framework 1.1). Visual Studio 2003 development environment comes up fine. I select existing project, find the .sln file, and load it. Shorly thereafter (within 2 seconds or so) the status bar says "Initializing offline cache..." and then Studio 2003 freezes. And when I say &q ...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 Studio Tools for Office Differences between addin code for Office 2003 and 2007.

    Hi, May I ask is there a different in writing of code between all office 2003 and office 2007 cause I was unable to get the code to word in the addin in office 2007. Example like having 'Globals.ThisDocument' is available in addin for office 2003 word and not in addin for office 2007 word. Thanks. Are you sure you're using VSTO 2005 SE in both cases "Globals.ThisDocument" sounds more like a VSTO 2005 (without the SE) document-level customization... From which folder in the Visual Studio File/New/Project "tree" did you create the project for Office 2003 If it wasn't the Office/Office 2003 Add-ins folder, then it wasn't a VSTO 2005 SE project and therefore not an Add-in (and not analagous to the Office 2007 ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Release .exe not working on non-Xna system.

    Hi, I sent a compiled version of the XNA shell program (blue screen only) to my friend who doesn't have XNA installed on his PC. Didn't work (crash with no decent debug info). After he installed XNA on his system, the .exe worked fined. Just thought you'd like to know. lushdog No, as ZMan has noted, you should not redistribue the XNA DLL's. In the future, once XNA has graduated from betaland, an XNA runtime installer will be available to ensure the correct installation of the assemblies. Generally, shared assemblies are registered with the GAC (Global Assembly Cache) to ensure proper version handling, etc. As of right now, the only proper way to distribute the XNA assemblies, is by having the end user ins ...Show All

©2008 Software Development Network