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

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

Buddhist

Member List

AsifHameed1
Scott E Johnson
Dee-roc
Trophus
shxvacika
Kenny1815
Scott Tachiki
triguns
Ather.
AlanKohl
badsheepy
netpicker9
saurabh1531
PitbullPT
Chris McLeod
Striker711
Rafael Mores
SorcererXIII
The Admiral
Duncan Faulkner
Only Title

Buddhist's Q&A profile

  • .NET Development Using System.Net.Mail class to send mail.

    Hi, I was coding a class to send mail via SMTP, but I found that in Framework 2.0 you have System.Net.Mail to do that task. The classes works fine to send mail on a server that does not require authentication. Unfortunatelly, I can't get it to work on a base64 encrypted server. The process of logging in that type of server is easy, so I expect an bool attribute, let's say, "IsAuthRequired", but it does not exists. From what I've read on MSDN documentation, the way to do that is to have UseDefaultCredentials to false, and Credentials must not be null. The problem is that my code do have both these requeriments, but I still can't run it on SMTP auth servers. I've sniffed the packets sent from my app, and t didn't try to au ...Show All

  • Software Development for Windows Vista Documented procedure for Creating Managed Cards

    Hello, Can someone point me to some formal documentation defining the process for creating managed cards I have seen some sample apps posted but most of these seem to have been created by part of the MS Cardspace team. There may be several items that are assumed to be common knowledge that may not be obvious to someone who is not part of the product team. Thanks in advance. The cardspace documentation is 17 months old without a single update!!!! I've been strugling with my Cardspace + smartcard configuration for more than 6 months now. We are performing free testing for MS, but we do not even get up to date documentation or support from the developers I start to regret my choice for implemen ...Show All

  • .NET Development Help with error message

    ive built an hello world example Web Service locally whichworks find. Ive rented out some .net2 asp webspace to serve my appliation. right click in property solution explorer and click on publish website. I then go througth the motions and my files are uploaded. Now when i browse to my service in internet explorer i get the following error: Parser Error Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. Parser Error Message: Could not create type 'Service'. Source Error: Line 1: <%@ WebService Language="C#" CodeBehind="~/App_Code/Service.cs& ...Show All

  • .NET Development reading directories and uploading without system.io

    Hey all. I just purcahsed a shared hosting account with goDaddy only to find they have the system.io namespace blocked for security reasons. I create custom Content Management Systems for my clients and need the ability to upload files and read the contents of directories. How can I do this without using System.IO I figured FTP could be a way, but I couldn't find a lot of examples ut there using ftp with c# to upload files or read directories. It doesn't have to be FTP, it can be any other way, but does anyone know how Thanks Yea - I always use exception handling. I just tried uploading (had to make the folder writable like you said) and it worked. SO GLAD their support was wrong. Do you suggest someo ...Show All

  • SQL Server Parent Child relationship column hint?

    I've got a dilemma which I hope someone has a solution to. Let's say we're building a data mining model to predict aircraft reliability. In the training table we've got a column (among many others) with a unique aircraft ID, and then a column for the type (737,747) and then a column for the series (100,200,300). I.E. A 737-800 series would be "737" and "800". There is in essence a parent-child relationship between these 2 columns. 737's should share a common set of reliability factors, and then those factors might be further defined by the series number (for instance, the 737 might have very reliable radar except for the 500 series). The series is analogous to what model year a car is. What I want to make sure d ...Show All

  • Visual Studio 2008 (Pre-release) Does LINQ appliable to SQL server 2000

    As many of our customer is using SQL Server 2000, can we upgrade our application to use LINQ Thanks. ...Show All

  • Visual Studio 2008 (Pre-release) TabItems & Binding at runtime

    I am attempting to create tabs based on how many records are returned by an ObservableCollection. When I set a break point I can see the ObjectInstances of AssetTabitems with the correct data within myTabData. The problem is I don't know the correct way to access those instances, here is what I am attempting in the red highlighted area. public void PopulateAssetTabs(string TabName) { ObjectDataProvider myTabData = new ObjectDataProvider (); myTabData.ObjectType = Type.GetType("Asset_Manager.AppData.TabListDB" ); myTabData.ConstructorParameters.Add(TabName); Binding bind2obj = new Binding (); bind2obj.Source = myTabData; foreach (AssetTabItems myItems in myTabData.Data) { // Cre ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Game Programming is very Hard

    I've been reading DirectX sdk tutorials and MDX tutorials and things like that, and it seems VERY VERY VERY hard. Will this new XNA studio and the documentation simplify this All these vectors and whatnot is very complicated and I'm having trouble understanding seemingly basic concepts in game programming in 3d. Geek Squad wrote: I've been reading DirectX sdk tutorials and MDX tutorials and things like that, and it seems VERY VERY VERY hard. Will this new XNA studio and the documentation simplify this All these vectors and whatnot is very complicated and I'm having trouble understanding seemingly basic concepts in game programming in 3d. Yup. I do recall saying that pretty clearly on the DirectX 101 forums: http://f ...Show All

  • Software Development for Windows Vista Vista DVD Maker

    Having trouble using the DVD maker software, as soon as I select burn get a 'run out of memory' message. Anyone come across this and know how to fix. The machine has 2GB ram and no other applications are running. im afraid these are the incorrect forums to post your technical query. Best place to ask would be the appropriate communities: www.microsoft.com/communities Thanks! ...Show All

  • Visual Studio Express Editions Global EventHandlers

    I am trying to create eventhandlers NOT SPECIFIC to any form or panel or frame. For example, an eventhandler for mousedown would be activated everytime the mousedown is performed anywhere on the screen, not just only to the build application. I could nt find anything on this anywhere. Please comment. Is it even possible You should be able to intercept and respond to most windows messages, for those that are not specific to a given window or windows control, usually you can intercept the message from the desktop level, for more information on the windows messaging API see: http://msdn.microsoft.com/library/default.asp url=/library/en-us/winui/winui/windowsuserinterface/windowing/messagesandmessageque ...Show All

  • Software Development for Windows Vista Communication with external applications

    Hello, I've been trying the hands-on labs and now I'm developing a simple workflow myself, but I don't really know how to communicate between an external application and the local workflow. I know that lab05 deals with a similar topic but I've found that the communication was only between a LOCAL application and the workflow but not with an external application. Now I'm trying to follow the expense reporting application in lab01 (resources folder) and I try to see how it communicates with the workflow. I've seen it uses .NET Remoting to create an instance of the remote class, but I don't get to understand well what it does because the same project has together the remoteservices class and the localservices class. Please can someon ...Show All

  • SQL Server Text Mining Available?

    Hi there, I have read about SQL Server Integration Services and that they also provide Text Mining service. I have looked at one of the tutorials but it seems that the thing that I want is not there. I want the following: I want to develop a domain-specific knowledgable system that reads some unstructured data related to the domain. Then, when I query it will provide the most candidate results from these documents ranked by the most appropriate to the least (if the answer is there). Please let me know if you beleive that I still can use SQL Server integration Services to implement this scenario. Otherwise, if you have any other resourse, like SDK, that can help me please let me know as well. Regards I have not tried t ...Show All

  • Visual Studio 2008 (Pre-release) Making an asynchronous call from a .Net 2.0 client(asmx) to a WCF method

    hi All, I have a WCF method that does a time intensive operation. However the method does not have a return type. I have a .Net 2.0 client(asmx) that I generated using WSDL. Now since the WCF method call is a time intensive operation, I want to make the call to the method asynchronously from my ASP.Net application in a "Fire and Forget" Fashion so as to not block the client application. To achieve this I placed the "One-Way" attribute to "True" on the particular WCF method. However when the call is made from the client ASP.Net page to the WCF method through the .Net 2.0 proxy(generated by WSDL) results in an error as shown below "Additional information: Client found response content type of ', ...Show All

  • Visual Studio Express Editions TextChange event in TextBox

    I've got these 9 textboxes - When the text is changed it has this code DONEXTSTEP() And it does that Private Sub. How can that next Sub know what textbox sent it Hi, TextBox's TextChanged event has a sender parameter. This parameter tells you which control raised the event. To use it, first cast it to the TextBox type: Private Sub TextBox_TextChanged( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged, TextBox2.TextChanged, TextBox3.TextChanged Dim textBox As TextBox = DirectCast (sender, TextBox) DoNextStep(textBox) End Sub Andrej ...Show All

  • Windows Forms textbox border color

    hi I am using following code to chnage textbox border color private void Form1_Paint( object sender, System.Windows.Forms.PaintEventArgs e) { foreach (Control acontrol in this .Controls) { if (acontrol is TextBox) { e.Graphics.DrawRectangle( new Pen(Color.DarkGreen), new Rectangle(acontrol.Bounds.X,acontrol.Bounds.Y,acontrol.Bounds.Width,acontrol.Bounds.Height)); e.Graphics.Dispose(); } } } but its changing color of bottom & right edge why "again one que Is it right way to set border color of textbox " depends on what you are trying to achieve... you may be better off creating your own custom control that inherits a textbox and ...Show All

©2008 Software Development Network