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

Software Development Network >> Nick Bowling's Q&A profile

Nick Bowling

Member List

Captain Crabs
Nikolaos Wakem
Richard oupatty
Nico.Kaiser
Kathleen MacMahon
KennyTheGeek
wbradney
curt1
Ryan Swann
tkh
StatlerW
Thomo
Fabio Casadei
Eric Stone
Abercrombie07
blade00007
Shuang Ma - ?爽
sgraber
EvanMinger
Sebastien Binet
Only Title

Nick Bowling's Q&A profile

  • Software Development for Windows Vista WorkflowMonitor in ASP.Net

    Hi All, There is a sample in the \Microsoft SDKs\Windows WorkflowFoundation\Samples\Samples\Applications\WorkflowMonitor , it's so cool! It's a window form application, but I want to display the graphics in a asp.net page. So I did below: changed the Mainform to a Window User Control named MainUserControl. add the line to the default.aspx. <object id="workflowActiveX" height="900" width="1024" classid="http:/workflowWebSite/workflowMonitor/WorkflowMonitor/bin/Debug/ wfmon.dll#WorkflowMonitor.WorkflowUserControl "> </object> Set the permission in the .net ...Show All

  • .NET Development ByVal or ByRef

    Hi, I have a array of objects of a class (written by me) in my program. When i try to do some manupulation i make a function for that within the class and call the function with parameter as ByVal soemthing like private function NameofFunction(byval x as clsMyClass) as boolean ... End function Now, When I test my program it is giving error (logically)  as it changes teh object of my array inspite of that I am just refering to it to read and no change in value. Now Can any one please let me know. Who should i pass the variable (custom class object) so that a function doesn't change them Thanks Hi, Let me try to expla ...Show All

  • Visual Studio Getting Parameter Values - Need Perspective

    Have several server reports (RDLs, not RDLCs) that use report parameters (text boxes, dropdowns, etc). Is it possible to view these reports in web pages using the report viewer control and use the report parameters as they were originally intended From what I've experienced so far, reports behave as if parameter data was not entered. I've tried to extract parameter values, but only know how to find the parameter metadata. Do I need to hide the report parameters and substitute them with visible web controls instead I know how to programmatically set the report parameters, just don't know the best, if not the only way to extract user in ...Show All

  • Windows Forms Solved with examplecode: datagrid question .net 2003

    hi dev's I got a datagrid with a comboboxcolumn normal behavior with a combobox is that , when it's droppeddown then when you moving the up and down keys you go up and down in thge list of the combo. however in the datagrid, when moving up and down when the combobox is dropped down, it goes to the next record in the datagrid The question is can i change that behaviour in a columnstyle Remco  Ok i found a solution ps: whats up with the posteditor no code formating   here is the code 4 the guys and girls looking to solve this problem: RemcoJVG Imports System.Windows.Forms C ...Show All

  • Visual Studio Team System Extracting Value from HTML text

    I have response html as shown below. How can I extract value "INWORKS" from this code other than "Extract Text" method <TD class="npcHeaderLabel"><span id="_ctl3_Npclabel7" class="DataLabel">Issue Type</span></TD> <TD class="npcHeaderData"><span id="_ctl3_QEI_ITY_NAME" class="npcTextView" Required="True">General</span></TD> <TD class="npcHeaderLabel"><span id="_ctl3_Npclabel1" class="DataLabel">Status</span></TD> <TD class="npcHeaderData& ...Show All

  • Visual C# Compiler error ,why

     public class DataEventArgs<T> : EventArgs     {         T data;       public DataEventArgs(T data)         {             if (data == null )             {                 throw new ArgumentNullException("data");             }           & ...Show All

  • Visual Studio Express Editions How to: Multiple tables of a DataSet in an XML-file

    Hi all, I've created a DataSet and use xml-files as my database. The principle is outlined in this article: http://www.devx.com/dotnet/Article/28678 So for every DataTable I have an XML-file containing the data for that table. If the dataset contains a lot of tables I also get a lot of XML-files that way. I've found examples of reading/writing the complete dataset in one file and reading/writing datatables on a per file basis. Now I wonder: Is it possible to store multiple tables of a DataSet in one XML file E.g. Store the large data tables in seperate files and store the small tables in one file All members of the same ...Show All

  • Windows Forms How to Deploy Clickonce in client place.

    Hi to all, I want to know how to deploy click once in client place. i publish the application after that wat i supposed to do. or esle simply copy all the files in the root/clickonceprog/ to the client machine or by giving the publisher url as client address like http://ClientServer/FolderName/.  please give me the right direction. thanx in advance. Regards Amjath There are a number of ways in which you can deploy application to the client machine using ClickOnce like Install from the Web or a Network Share In this case you publish you app to a Web site or n/w share and give client the URL of the w ...Show All

  • Windows Forms where to declare global variables?

    I'm a beginning C# developer (obviously). I need to create an app that's going to have many different screens (forms), and I'll need variables that will be accessible application-wide. So, I shouldn't put them in a form, correct /embarrassed Thanks. Correct, you can put them in a "static" class: public class Settings {     private Settings() {  ...Show All

  • Visual J# ResourceBundle.getBundle("resources.resources"); throws an exception

    When I call: ResourceBundle .getBundle( "resources.resources" ); to get my resources (which are in the dll), I get an ArgumentOutOfRangeException - +  $exception {"Length cannot be less than zero.\r\nParameter name: length"} System.Exception {System.ArgumentOutOfRangeException} What do I need to do thanks - dave Hi David, It should work for your scenario. Basically it will pick up the resources for the CurrentCulture of the thread. If the thread current culture's is jpn (LCID is 1041), it will pick up the resources for jpn. If resources for JPN are not there then it will fall back to the default one. I have tried t ...Show All

  • Visual Studio T-SQL Debugging on VS2005/SQL2005

    Hello, I can't seem to debug an SQL stored procedure using VS .Net's 2005 debugger. When I Step into stored procedure the breakpoint turns to a question mark and  says "The breakpoint will not currently be hit.  Unable to bind SQL breakpoint at this time.  Object containing the breakpoint not loaded". VS2005/SQL2005 are on the same machine running Win2003 Sp1/R2 Thanx for the help ...Show All

  • Visual Studio Express Editions LINK : fatal error LNK1104: cannot open file 'oleaut.lib'

    I am trying to write a simple windowed program. When I build it gets the msg above. I have searched my disk and "sure nuff", no oleaut.lib. There is a oleaut32.lib. I have no idea where or why either is called. Anyone have an idea what's going on this is my first attempt to build anything with Visual c++ Express. The SDK is installed.... Further info: When I use the search function for oleaut, I get zero references. What is this thing anyway   Bingo!.... Let me add my name to the list of the disatisfied with the SDK / VisualC++ Express installation integration. Everyone noes programme ...Show All

  • Visual Studio Express Editions Dummies Books Vs The RTFM Route....

    Hi There I just bought two Books VB 2005 Express Edition For Dummies and VWD 2005 Express Edition for Dummies..... Is This The Way To Go or should I Have Went the RTFM Route Thanks... Cheers Bronco Billy "Beer and Fast Women are Ok... No Cigarettes or Hard Liquor Allowed" Hi Bronco I have been exploring the Help area. So far I am totally pleased. The help Favourites is an awesome feature and more intuitive than I first thought. The way it is laid out is excellant, following a subject is quick and easy, you can follow an example through the help file and switch back to the IDE and play wi ...Show All

  • Visual Studio Computer Shuts down on Install

    Hi, I'm trying to install vs2005 - default install - from Disc 3073 Enu MSDN TE for Softw Dev. This is on a clean machine (formatted HDD + XP PRO + SP2). Every time the computer shuts down (in fact 'turns off' without warning)  at about the same point during installation (near the end of vs2005). I have rebuilt this computer (Acer TM636LCI) from scratch 3 times now (twice enu, once dutch) but it keeps on failing. Please advice! Getting a bit desperate   TIA, Michael Can you take a look at your system and application event logs to see why it shut down   ...Show All

  • SQL Server Remote Connection problem on MS SQL 2000

    Hello, First, I want to say I read all threads similar this thread and I couldn't solve problem. My firewall is always off when I tried to connect remotly to SQL Server. I opened 1433 port from my router's configuration page and forwarded it to 10.0.0.4:1433. When I started SQL Server service and checking "netstat" with "-na" paramters. It shows only one row as "TCP - 0.0.0.0:1433 to 0.0.0.0:0". What "0.0.0.0" means and why foreign addres port is "0". I guess, It should like to be "TCP - 10.0.0.4:1433 to OutsideIp:1433". I removed forwarding from my router and used Windows's Network Connection to forward ports. I opened ...Show All

©2008 Software Development Network