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

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

Yoni_Nijs

Member List

mobigital
Rod Yager
dgolds
bjkaledas
Ehsan_AIUB
xRuntime
Camey
donkaiser
Yeshia
Trevor_B
gcrain
James2007
CoachBarker
Jeff Green
AngusHuey
Denis A.B.
PK_VBE05
hlj16
ashleyT2
bszenith
Only Title

Yoni_Nijs's Q&A profile

  • Windows Live Developer Forums Java Applet in Messenger Activity?

    I have tried to create a small multiuser test activity using the MSN Messenger Activity SDK. I have successfully created a local XML file for the messenger directory. I have also succeeded in inviting another user to participate in the activity and is redirected to the HTML page deployed on my local web server. So far so good! I want to implement some of the activity functionality as a Java applet but where the applet should be displayed there is only a grey area (as if the applet is not initialized properly). When I access the Java applet directly using a browser it works perfectly. Is it not possible to embed a Java applet in the HTML to be embedded in the MSN messenger activity window How can this be acheived ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Unified Input

    It's my biggest gripe about XNA and directx, there's no unified input...   I don't have a 360 controller hooked to my pc, not even sure if that is possible... is it Anyhow, since i took the whole unified input idea from Lynn T Harrison's book, i'll share it here in hopes that people can email me suggestions and feedback. The enum translations aren't finished yet and the InputManager is a singleton (i'm on a singleton kick lately don't know why), and obviously the gamepad implementation isn't finished.  Hopefully you can sortof see where i was headed with the 360 implementation...   wel here it is, i guess email me at jhered at yahoo com if you have suggestions.   I am not familiar w ...Show All

  • Visual Basic Vertical label

    I would like to add a vertica label on my from, is there somebody can help me with that thank you very much, works a treat, however i was playing with the angle.... it only works in -90 is there an easy way to rotate 90 degrees the other way, i would of thought 90 or +90 would of done the job but ut never :o( ...Show All

  • .NET Development Sending Mail

    This is my code Dim oMsg As New MailMessage Dim SMTPEngine As SmtpMail oMsg.From = "bshouman@gmail.com".ToString oMsg.To = "bshouman@gmail.com".ToString oMsg.Subject = "test" oMsg.Body = "test" oMsg.Priority = MailPriority.High oMsg.BodyFormat = Mail.MailFormat.Text SmtpMail.SmtpServer.Insert(0, config.SMTPIP) SMTPEngine.Send(oMsg) when im stepping through this code eveything is working fine, but im not receiving any email, i have no firewall, and the smtpIp is working fine on a web application why im not receiving anything Please help if this works in a web app but not a winform app, one thing does come to mind - your anti virus software. Some do block sending emails fro ...Show All

  • Visual C# Application - Properties: An error occurred trying to load the page.

    Hi All, I was doing a tutorial when i noticed that if I right clicked on my application and selected 'properties,' the properties menu gave me a strange error - 'An error occurred trying to load the page. Exception has been thrown by the target of an invocation.' I have taken a screenshot and placed it at http://members.iinet.net.au/~yimr/error.jpg I tried creating a new document and it still gives me the same error except if I try it in Visual Basic Express the properties page works. Does anybody know what is wrong I reinstalled Visual C# but it did not fix the problem Thx! Diamondplane thanks for your help, but I actually tried it with a few different 'new project' templates and it still did ...Show All

  • Visual Studio Express Editions FileNotFoundException - please help

    I use a bitmap file in my application: estimateReport = Image.FromFile("estimateReport.bmp"); The appliation runs OK within my development environment. However, when I publish and deploy the application on another machine, the application can't run because it can't find the above bitmap file. Can someone please tell me how to deploy the bitmap file with the application Your help is highly appreciated! Include it in your solution In the solution explorer Right Click on the Solution Name Add Exisiting Item - Add the bmp file. Right now deployment doesn't know anything about the existence of the file. ...Show All

  • Windows Forms Monetary currency

    Is there a way to format decimals & datagridview cells to particular monetary currencies (yen, euros, pounds, etc..) without having to change the regional locale I can't use the formating specifier as it depends on the regional locale. For example, if my regional locale is set to the United States. My code: s = String.Format("{0:c}", price) would output $5.00. But what happens if I want the currency to be in yen (¥) How can I format each decimal or datagrid view cell to display the monetary currency that I want (as opposed to using my system's regional locale settings) Thanks! You are correct in both of your statements, however you did not look into all of the overloads for string.F ...Show All

  • Visual Studio Custom project type

    What is the best way of implementing custom project type I already looked at the examples IronPython and Myproject! Both project includes Language service, msBuild service etc. I only need to add custom project type. Do I still need to include all the source to my project for adding custom project type Any help or suggestion apprecited. Thanks, Atul Hi Atul, If you don't need in LanguageService and custom MSBuild task - just don't use them :) I used the following scheme to create my package. I have created it from the scratch. I created a new Class Library project and then I investigated the defferences b/w my project file and IronPython sample. When I was trying to find out how the every fea ...Show All

  • SQL Server Regular Expressions in SQL 2005 using C#

    Hi all, i wrote a little function that is basically supposed to give me a match of a regular expression in C#. i tested it out in VS05 and it seems to work fine. It hits the fan when i try it on SQL Query analyzer once deployed. Anyone have any idea why here is the C# class that I deploy to a db using VS05. using System; using System.Data; using System.Data.SqlClient; using System.Data.SqlTypes; using Microsoft.SqlServer.Server; using System.Text.RegularExpressions; public partial class RegExTest { [Microsoft.SqlServer.Server. SqlFunction (IsDeterministic = true , IsPrecise = true )] public static string RegExMatch( string pattern, string matchString) { Regex r1 = ...Show All

  • Software Development for Windows Vista Custom Designer Query

    Hiya I have created a custom activity derived from Sequence. It contains a code, parallel and 2nd code activity. I assume the best way to control the look of the activity is to use custom designers for the child activities. For the code child activites my designer looks like this: public class CodeAfterBranchDesigner : ActivityDesigner { protected override Size OnLayoutSize( ActivityDesignerLayoutEventArgs e) { return new Size (0, 0); } protected override void OnPaint( ActivityDesignerPaintEventArgs e) { GraphicsPath myPath = new GraphicsPath (); Rectangle pathRect = new Rectangle ( this .Location.X, this .Location.Y, 0, 0); myPath.AddRectangle(pathRect); Pen myPen ...Show All

  • Visual Studio 2008 (Pre-release) WindowsFormsHost object's VisualBrush

    I couldn't get the visualbrush of the grid in which I have added object(Windows control) through WindowsFormsHost. This is, unfortunately, by design (AFAIK) due to the interop factors with HWNDs. More on limitations of CrossBow here . HTH, Drew ...Show All

  • .NET Development Changing the IP of a WebReference at run time

    Hopefully a simple question, but I can not find the answer. I have a vb windows application that references a web service, but the end user is supposed to set the IP and port of the web service. Both settings are stored, naturally, as User Settings in the application. From what I see it appears that the URL of the webreference is set in code and can't be changed - is it possible to set it at run time, and if so how Thanks in advance You can also flag your web reference as dynamic (in the properties section of the web reference). The you can change your web service url at runtime. ...Show All

  • Windows Forms All Controls disappear from [Designer] and more...

    Hi all, Currently i have a problem with the designer, below is my case: I have total 2 projects in a Solution just namely A and B . While i'm focusing on B project, and come back to the A project. I found that all controls in one of the form (occasionally is the main form) [design] in that project (A) did not load. I shocked and found out that some of the A form's properties value also being set to blank or default, such as: Form's Text become blank , Load event value become blank , WindowState value that used to be Maximized also become Normal . I checked the A.Designer.cs . Luckily, everything is still the same (i suppose). Tried to run it, and breakpoint it. The program did go through the A.Designer.cs, but those ...Show All

  • Visual Basic Select cells in datagridview{Urgent help}

    Hihi.... I need help on the following problem.. Thanks in advance...ok my problem is.. i need to do a function that allow user to click on the cell of the datagrid and display the information of that row selected into both combo box and textbox.. I managed to do the part where user click on a cell details will be displayed... but how do i retrieve only the information of that row the cell belong to.... is there a way to do it in visual studio 2005 and sql server 2005.. really need help urgently.. thank you..~~ Hi SJWhiteley, Thanks for the help. Yup, i have choosen to use CellMouseClick event... I managed to display the textbox with the item when select a cell.. By using tb_ttsProjNo.Text = ...Show All

  • Visual Basic Power Point and VBExpress

    HI I'm going to do one presentation in power point, I have 10 minutes to finish this presentation. And I would like to create one simple program that  will count time, when I'm click on "Start Show From Beggining" button  or "Shorcut key F5" that must set timer in my appliction enabled. How can i associate my application with Microsoft Power Point Thanks ...Show All

©2008 Software Development Network