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

Software Development Network >> ron nash's Q&A profile

ron nash

Member List

DoctorWho
ims.com
kinpin9
SimonOng
bkana
tigreye007
Ron L
R2ks
PedroCGD
Giugio
mmoprg
Mbauser
Jonas.S
infomax
Burney
XMLViking
Alexey Rokhin
DVD_SH
mfewtrell
sagittarian
Only Title

ron nash's Q&A profile

  • SQL Server Custom Semi-Transparent bar charts?

    I know that SSRS 2005 has a built-in semi-transparent color chart palette, but I'd like to define my own custom color semi-transparent palette. Brian Welker's blog ( https://blogs.msdn.com/bwelcker/archive/2005/05/20/420349.aspx) has a terrific post on how to create your own custom color palette, but it generates solid colors. How can it be tweaked to create semi-transparent colors Is there another function that needs to be created to define the transparency of the color palette Thanks in advance, Pete Transparency is more than possible with ANY system palette or custom palette. The trick (work-around whatever) lies in modifying the 'alpha' component of the colour for each series in the chart AFT ...Show All

  • Smart Device Development Webrowser and drawing lines

    Hi, I have a project that includes a webbrowser. I pull up a map (image) from a site and display it. This is on a windows mobile 2003 se box. I would like to draw crosshairs (or two lines) on the screen and cannot seem to associate the drawn lines with the browser or bring the drawn lines to the front of the screen. I cannot seem to do it. Help Thanks Rob It's not possble to draw on a top of the WebBrowser control. What you can do though is to create a custom control that draws image of the map and then crosshairs on a top. You will also need to write code to get the html using System.Net.WebRequest class, parse the html to find the url for the image and download it for drawing in your custom co ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Game Component Design Guidelines?

    Anyone have any suggestions, tips, experiences, etc regarding designing and developing Game Components With the move of the GraphicsComponent to a service (which makes sense), one of my questions is remains: what makes a good Game Component In pre beta 1, other Game Components that were hinted at were a Camera and Fps Counter. In beta 2, would these still be Game Components, or be left at system-level Is the choice as simple as whether or not your would-be-component has an Update method that takes a single GameTime parameter Same goes for IDrawable, if a Draw method with a single GameTime parameter is sufficient, should this be a Drawable Game Component Is it a never-ending debate such as the guidelines for designing Interfaces ...Show All

  • Windows Forms iTunes-esque rows

    hi all, does .net provide any control that allows each row to be either white or light grey like iTunes. It helps row readibility so you would want something like this: dataGridViewCellStyle1.BackColor = System.Drawing.Color.LightGray; this.dataGridView1.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; ...Show All

  • Visual Studio Team System Error 0x80501001

    Hi All, Continuing to develop my rules and fighting with fxcop in all new rule, I have other new questions: 1) I am trying to get a specific object inside a method like: Public Sub Ins( ByVal oBoletimImplantacao As BoletimImplantacao)   Dim db As Database   Dim command As DBCommandWrapper   Dim dr As IDataReader   Dim sqlCommand As String .... End Sub I have 'Ins' methods inside my assemblies and I need to verify if there is a variable as 'DBCommandWrapper' that is a company own class. How to know if there is this specific variable 2) How can I see inside the assemblies its imports I have methods with the imports below: Imports Microsoft.Practices.Enterprise ...Show All

  • .NET Development PROBLEM WITH SPECIAL CHARACTERS

    question...i have a string value in a textbox inputted by the user that contains ' character... and i think that's the reason why i am receiving an error...my procedure is like this "INSERT INTO TABLE(REMARKS) VALUES(' " & TEXTBOX1.TEXT & " ')" please tell me what to do so that my sql statement would accept strings with special characters like the word ADD'L I believe you also need to specify type and size of the parameter. Your parameter instantiation should look like (check size) Dim theParam as new SqlParameter("@param1", SqlType.VarChar, 20) theParam.Value=Me.TextBox1.Text theSQLCommand.Parameters.Add(theParam) ....... ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Audio Analysis

    Hi, Is there an easy way to gain access to final sound buffers using the XNA framework What I'm aiming to achieve is an oscilloscope style wave display of the currently played audio. Is this at all possible Cheers, 71M You can read streams...and try to analyze that. But, believe me you don't wanna do this unless you are creating some "sound/music based" app. http://en.wikipedia.org/wiki/Pulse-code_modulation . ...Show All

  • Visual Studio 2008 (Pre-release) X509Identity is Internal?

    Hi, i want to write a custom authorization policy that sets a custom IPrinicpal on Thread.CurrentPrincipal. I do something like this if (identity is WindowsIdentity) { ... } When certificates are used for client authentication, the identity generated by WCF is a X509Identity. But this class is internal - so i cannot use "is". Is this intentional or a bug How do I check for X509Identity To support CLR legacy authorization, WCF had to map SecurityToken to IIdentity. There is an explicit/natural map for WindowsToken and CLR's WindowsIdentity. For other tokens, they are pretty much GenericIdentity which doesn’t add much value to IIdentity itself. As far as PrincipalPermission and Thread.CurrentPrincipal are con ...Show All

  • Windows Forms Identifying selections in ListBox multi selections

    How do you identify the several items selected in a multi select ListBox Perhaps some code that would do the intended purpose of the following: for(int i=0;i<numListedItems;i++) { if(myListBox.Items is selected) // does anyone have a line of code to do this } Try something like this: Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click For Each item As String In ListBox1.SelectedItems Debug.Print(item) Next End Sub ...Show All

  • .NET Development Thread Safety

    Hi! If I put a structure/object that only contains readonly instance fields into the ASP.NET 2.0 application Cache, is that structure/object be thread-safe for concurrent accessed by multiple client requests Thanks! ...Show All

  • .NET Development mouseUp event of vertical scroll bar

    Hi all, Plz tell me hos get MouseUp event of vertical scroll bar of browser in javascript. the onscroll doesnt fire until the user stops scrolling, effectively the same as mouseup.  It also works for the middle mouse wheel that many users use to scroll, which a specific mouseup event on the scrollbar wouldn't detect.  I found a little html on the net that illustrates this point.  If you still think you need the mouseup event please elaborate on why you feel you need to do it that way. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <head> <title></title> <script language="JavaScript" type="text/javascript"> <!-- var zxcTO; function Scroll(){ clearTimeout(zxcTO); z ...Show All

  • .NET Development WMI redist?

    is their a redist version of WMI, i have a bootstrapper setup to install framework and i want to do it with WMI as well, but i want the componets to be included in my package for a CD, or for one convienient download in a self extracting zip. There is a WMI redistributable components MSI available for download at http://www.microsoft.com/downloads/details.aspx FamilyID=013bb284-3946-44a9-ac3c-bf2a569eaa72&DisplayLang=en . I'm not sure if this is exactly what you're referring to though, so can you take a look and let us know if this meets your needs Thanks! Aaron ...Show All

  • .NET Development Release bin doesn't run outside VS2005

    Hi, I have a pretty big project C# under VS2005. I work on it from 2 years, and from 1 year on VS2005. Since middle f this month, the release binary is not working anymore outside VS2005. I can still run my project from VS2005 in both Debug and Release mode. If I start the project outside VS, running directly \bin\myapp.exe then I have the usual dialog box (SmartCabNet has encountered a problem and needs to close ... blabla) In the Event Viewer\Application I can see: Faulting application smartcabnet.exe, version 1.0.0.5, stamp 459285ff, faulting module kernel32.dll, version 5.1.2600.2945, stamp 44ab9a84, debug 0, fault address 0x00012a5b. If I run \debug\myapp.exe then all is working fine. Note that the crash occurs wh ...Show All

  • .NET Development Problem generating Convert.ToString + dataRow using codeDom

    Hi, Yes struggling with the codeDom but getting there, Could somebody help with these ones Person.Name = Convert.ToString(myRow["Name"]); THanks a lot as usual   Thanks for your usual help on codeDom. I use to write in vb but the market wants c# programmers and I therefore started to write in c#. I dont mind which language I use.I must change my name Thanks again     ...Show All

  • Visual FoxPro Using grid

    I have a grid in my program that display an information in sorted and the moment I click any data within the first colum of my grid it automatically display all information in the corresponding objects within the form. What i want to do next is, if ever the focus within the grid and i type the first letter of the record which i want to find it would highlight the record that starts with the character i enter within the grid and follows the 2nd, 3rd and so on. until such time i can right away view the record which i want to find. Thanks... thanks to you guys but i dont want to use another object like textboxes or label just to accept data i typed. What i want is, the moment my form is running and ...Show All

©2008 Software Development Network