Software Development Network Logo
  • Windows Vista
  • .NET Development
  • VS Team System
  • Visual FoxPro
  • VS Express Editions
  • Smart Device
  • Windows Forms
  • Visual C++
  • Visual J#
  • Game Technologies
  • Visual C#
  • Architecture
  • Windows Live
  • Microsoft ISV
  • Visual Basic

Software Development Network >> Jonathan Pickard's Q&A profile

Jonathan Pickard

Member List

Kirk Haselden
sticksnap
iama.NETer
sql_n00b
avenue
LIQI
matttypething
Rajeev Ranjan
Arjan Ligthart
Darwin Wright
redwyre
daleUSA
bbsfor
M. R. Miller
Justin Robbins
Joseph Kasende
ModemGeek
sledge
jholden
Anonymousandmad
Only Title

Jonathan Pickard's Q&A profile

  • Visual C# Creating a Process and passing in a string?

    Hello, I am trying to use our 3rd party fax software FaxPress. It requires this line of text to be called during a command line. Our old VB 6 app is doing this but using a shell command. I was told this could be done using the Process class in C#. Here is what I have: /// <summary> /// Faxes attachments to destination /// </summary> /// <param name="output">Output directory for FaxPress</param> /// <param name="subject">Subject Line</param> /// <param name="faxPress">Fax system to use. TACCFAX1*</param> /// <param ...Show All

  • Visual J# J# limits

    Hi, I just saw this from Andrew Binstock article (http://www.devx.com/SummitDays/Article/6918) ---------------------------------------------------------------------------------------------- the J# does not support applets, the Java Native Interface (JNI), Raw Native Interface (RNI), or remote method invocation (RMI). J# is intended strictly for stand-alone client-side software ----------------------------------------------------------------------------------------------- could anyone tell me if this is true I've seen there is no direct support for swing ( I think there are some implementations out there to be included in our projects) but ...Show All

  • Windows Forms Where is sqlexpr32.exe?

    I have built a C# application that I'd like to distribute on CD with all prerequisites included on the CD so that the end user doesn't have to download any of the redistributables. They include .NET framework 2.0, Windows Installer 3.1, and SQL Server 2005 Express Edition. When I initially tried to publish with the "Download prerequisites from the same location as my application" setting, I was presented with errors such as: Error 5 The install location for prerequisites has not been set to 'component vendor's web site' and the file 'SqlExpress\sqlexpr32.exe' in item 'SQL Server 2005 Express Edition' can not be located on disk. ...Show All

  • Smart Device Development Non-graphical application showing a dialog box

    I've created a C# Pocket PC non-graphical application designed to run in the background forever.  Let's call it ShowReminder. Occasionally it needs to display some information to the user in a dialog box. To make the forms functionality available, I have simply added a using to my code: using System.Windows.Forms;   The application runs fine - exactly how you would expect it to.  The user presses OK to dismiss the dialog and the application carries on running in the background. However, I encounter a problem when running a second C# CE application on the same device at the same time, this time a Windows application ...Show All

  • Microsoft ISV Community Center Forums pass parameter to stored procedure

    Hello, Can someone please show me an example of how to pass a parameter to a stored procedure I have a crystal report that uses the stored procudure. I can call the report with this: Set s = CreateObject("InternetExplorer.application") s.Visible = True     s.Navigate " h ttp://exch server/scr reports/Se rvice/Main tenance/ma intenanceI nvoice.rpt " ' prompt0=" & JobStatus.Job & "&prompt1=" & CStr(Now)      Any help would be great! Per the support engineer: I write some sample code, please forward it to your customer ============= Sub SingletonSp()  &n ...Show All

  • Visual J# using swing package in J# Browser Control

    When I just use awt package, my program runs well. But when I change a awt control Label to swing control JLabel, nothing is displayed and I got "A exception java.lang.securityException occurred in the J# Browser Control." message. Can Anyone help me (I have added the reference to VJSSupUILib ,and my security policy setting is "Area","Local Intranet","Everything".) When I use strong name in my security policy setting, the swing controls can be displayed, but when I click in a JTextField, I got "System.Security.SecurityException". regards Hi, ...Show All

  • .NET Development unable to access SQL server from web app

    Hello, i just changed authentication mode from "windows" to "forms" so that users use a login form, and now i cant get access to DB. I have created a new database user as (mycomputername)\ASPNET, but it doesnt seem to work.Please help... When i run the application i get error: System.Data.SqlClient.SqlException: Login failed for user '(mycomputername)\ASPNET'. Source Error:    Line 91:         Try. Line 92:         myConn.Open() Line 93:         Dim rdrUsers As SqlClient.SqlDataReader Line 94:   & ...Show All

  • Visual Studio Team System Context across multiple web tests.

    It appears that if I create a context that it only lasts to the end of the web test. Is there a way to create a context in WebTest1.webtest, then use it in webtest2.webtest, etc. If so do I have to do an ordered test for this to work Thanks, Tom It is true that the web test context is scoped to an individual web test. Depending on your requirements, you may be able to use an environment variable to have a context value span multiple web tests. See the following post regarding use of an envioronment variable to override a context parameter. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=266377&SiteID= ...Show All

  • Visual Basic Error updating data base "Column mapping from source column failed because the data cloumn is a computed column

    I am relatively new to programming, thus I can't always find a way to correct my problem. I would greatly appreciate any help on this matter. I am creating a windows form in VB.net which will read in data from an access database file.  I have created a custom column named AVG that will compute the batting averages of players.  When I save the file, I get the following error: " Column mapping from SourceColumn 'AVG' failed because the DataColumn is a computed column." The Expression works beacuse the datatable displays the proper calculations, it just won't save them.  When I enter new information the calculation ...Show All

  • .NET Development XmlValidatingReader / default namespace

    hi, small code app i made to simulate my problem : just paste it in a class and run as console app: using System; using System.Xml; using System.Xml.Schema; using System.IO; namespace ConsoleAppXSDTestApp { /// <summary> /// Summary description for Class1. /// </summary> class Class1 { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main(string[] args) { try { string sXSD = "<xs:schema xmlns:xs=\" http://www.w3.org/2001/XMLSchema\ " targetNamespace=\" ...Show All

  • Visual Basic Color Dialog

    Hi, I am new so please forgive me.  How do i set up a color dialog to change a form's color Hi, On your toolbar drag a color Dialog control to your form. After that place the code on where you want your color dialog to show:             colorDialog1.ShowDialog(this);             this.BackColor = colorDialog1.Color; cheers, Paul June A. Domag ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. NullReferenceException

    I keep getting NullReferenceException when I create a spirte. It only happens when I close the application, but strangely not the first time I run the application, only after that. I must not be disposing of the texture properly. Can anyone help Here is some of my code:         private void OnDeviceLost(object sender, EventArgs e)         {             if (Tile.sprite != null)             {           &nbs ...Show All

  • Windows Search Technologies sending query via page other than msn.com

    Hey guys, I was wondering if anyone could help me. I'd like to include a search form for WDS on my browser homepage and be able to submit the query from within that page, I'd like to see the results in the WDS. This works fine for msn.com (select desktop tab) but I cant seem to be able to get the code so I can use it with ANY page. any thoughts on this    wow - 250+ views and no one with an answer          ...Show All

  • Visual Studio Can i use the DSL Diagram components in other application?

    hello all. the DSL diagram components is so cool,and beautiful, in the DSL installed dir ,i see there are some assemblies , Microsoft.VisualStudio.Modeling.Sdk.Diagrams.dll Microsoft.VisualStudio.Modeling.Sdk.Diagrams.GraphObject.dll .... and so on, Can i use these DSL Diagram components in my other application building Visio-like works. thanks a lot. Hi Matt So you are welcome to use these libraries in your custom package. The DocView class is part of our package implementation, but you can use the design surface in your package by just reusing the DiagramView class which is a WinForms control. However ...Show All

  • Windows Forms Max Size of a Form

    Hello friends, i am using VS.Net 2003. I need a Auto scrolling in a form, so that i have change the AutoScroll property to True. But i can't change the size of the form larger than the available screen. Please help me. Thanks in advance. Yuvaraj How AutoScroll works is that the size of the "virtual form" (i.e. the one that you are going to scroll around) is determined by the controls in the form and the AutoScrollMinSize, whichever is the larger. Look at the control furthest down in your form, and the control furthest right. If they can fit inside the form without any scrolling, ...Show All

©2008 Software Development Network