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

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

Jphillips59

Member List

Emrei
jo123
Hi_GC
nedol
André Alves
Thomas Schleu
Yui_Ikari
Marco Linders
IvanLieb
lhe
onesqlguy
Demid
rKarthik
Bob Watson
Lzitro
SisMng
ivanL
testvoid
daxu
rejoin2me
Only Title

Jphillips59's Q&A profile

  • Visual Studio Tools for Office COM ADDIN NOT INSTALLING IN SOME PC'S

    Hi all i have developed COM addin for outlook, it is working fine in my PC and other few PC's , but in some pc's is not working. i have created button on tool bar, but button is also not visible in some, pls can any one help me regarding this. Chand. Chand, Here are some things you will want to check: 0) Is .NET Runtime (correct verions) installed on each machine 1) Is VSTO runtime installed on each machine 2) Are PIAs installed on each machine 3) Is the supported version of Office installed on each machine 4) Is .NET security configured properly on each machine What setup mechanism did you use to ...Show All

  • Visual Studio Team System Data binding in load test

    I have a web test, which has binded fields to a datasource. I added the web test into a load test. How can we control the number of iterations for the web test and how its execution depends on the data from the data source. In testrunconfig I have selected Fixed run count to 1 still in the load test I see web test that fail becouse they are using different rows from the datasource. How are the data binding iterations controlled for a web test Thanks, Martin Kulov http://www.codeattest.com/blogs/martin Martin, Unfortunately you can not just specify the number of iterations for a web test under load. Checkout this post an ...Show All

  • .NET Development Update connect not working..

    Hi all, I am trying to save changes to a dataset in an MSDE database. First I get data from an Interbase database and fill in a dataset with it via a DataAdapter. next I use a dummy edit to mark them and changed. Next I popullate another dataset with data from my MSDE database using another DataAdapter. Then I merge the Interbase DataSet into the MSDE DataSet then do an update...... System . Data . Odbc . OdbcDataAdapter adapter = new System . Data . Odbc . OdbcDataAdapter (); adapter . SelectCommand = new System . Data . Odbc . OdbcCommand ( mystring , conn ); DataSet myDataSet = new DataSet (); adapter ...Show All

  • .NET Development dropdownlists and & dataview binding question

    I have the follwing code that populates multiple dropdowns with the same values: DataTable dt = new DataTable (); DataColumn dc1 = new DataColumn ( "list_value" ); DataColumn dc2 = new DataColumn ( "list_text" ); dt.Columns.Add(dc1); dt.Columns.Add(dc2); DataRow dr; dr = dt.NewRow(); dr[0] = 0; dr[1] = "No" ; dt.Rows.Add(dr); dr = dt.NewRow(); dr[0] = 1; dr[1] = "Yes" ; dt.Rows.Add(dr); dr = dt.NewRow(); dr[0] = 2; dr[1] = "Not Applicable" ; dt.Rows.Add(dr); DataView dv = new DataView (dt); this .ddlEquipRecvComplete.DataSource = dv; this .ddlEquipRecvComplete.DisplayMember = "list_ ...Show All

  • Windows Forms Deploying .NET 2.0 Application to Network?

    I am trying to deploy a .NET 2.0 Application to the network. However, I have run into the Runtime Security Policy problem. The whole point of deploying to the network instead of to each user's machine was to decrease the amount of work involved in the initial deployment and any future deployments. I want to make the deployment process as easy as possible without leaving gaping security holes. I was wondering what the general consensus is on the best way to do this Is it easier to simply just deploy to each user's machine with an auto-update feature built into the application Or would it be better in the long run to digitally ...Show All

  • Visual Basic Setting walpaper

    Hello, i was wondering if there is a easy way to set the walpaper in vb on windows xp and windows 2000 to a bmp or a jpg or well any other type of image supported by windows i know there a lots of resourses about seting the wallpaper to a bmp but if anyone know of away to set it to a jpg i would be very greatful Thanks I'm not sure if this is what you're looking for, but you can change the file format of any picture as follows: img.Save(picturesPath, System.Drawing.Imaging.ImageFormat.Jpeg) Hope that helps, Yun ...Show All

  • Visual Studio Team System Can I record unit tests?

    Hi, all. This is probably very basic and, possibly, obvious. But, I'm just a newbie and don't know much about it. :) I am trying to use VS 2005 Team Test Edition to automate some of the testing we do. So far, I'm just investigating what it's capable of and how we can use it. What I can see so far is that web tests are not going to work for our application, since we have a lot of client side logic involved. I'm looking at unit tests and not quite sure how to use them. Is there any way I can "record" a unit test (similar to the way web tests get recorded) May be, I'm looking in the wrong dirrection all together. If that's ...Show All

  • Visual J# litlle problem

    Helllo, I want to create the simple program, but i don't know how to do one thing: i have 2 texbox , label and button in textboxs you type numbers, and the answer appears in label. And all it should be programmed on button click. But i need that, if my number is smaller thatn 18 and bigger than 25 then label set text , f.e. " it good" or smtg, and i have these groups: 18.5 < rez < 24.9 25 < rez < 29.9 30 < rez < 39.9 40 < rez < 70 rez is that ansver, and on each other must be different text, that i want to set but i don't how to do that, i had tried to make 4 if functions but then works just last. write me how to do t ...Show All

  • Windows Forms How to show wait cursor (hourglass) in DataGridView

    My master/detail grids take a long time to load (several seconds).  I want the mouse cursor to change to an hourglass after the user clicks on the master grid (when detail grid's data is loading).   How to do this   Thanks This is a great question. Basically you will want to use the RowLeave event and set the cursor to the WaitCursor. Then all you need to do is figure out when to set the cursor back to the default. The easiest way to do this is to use BeginInvoke since BeginInvoke will run the code at the next message pump. Here is what my first crack at this looked like: privat ...Show All

  • Visual Studio Team System Help with the Custom Checkin Policy Example from the Extensibility Kit

    Hey! I'm running TFS Beta3 Refresh,and using the latest version of the extensibility kit. I am not able to see my custom policy, when I try and add it to the Check in Policy page.  I see the three that are installed with it, but I do not see mine.  My assembly is called MyExtensibilityClass.dll, and is located at c:\policies.  In the registry, I have added a string to the Checkin Polices key.  The string name is MyExtensibilityClass and the data for the string is c:\policies\MyExtensibilityClass.dll.  But my policy is still not showing up where i can add it.  can anyone give me some words of wisdo ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. C++ Compiler

    I'm using Borland C++ 5 compiler but can't seem to get the tutorials to compile and run through there. Sofar i've installed the DirectX SDK and installed Tutorial 00. But when i go to run, it tries to compile but gives me errors. I just noticed that the folder contains visual c++ files. Does that mean that I need Visual C++ to run this tutorial If my Borland C++ 5 won't run it at all will Borland C++ Builder 4 run it ...Show All

  • SQL Server Two Digit Year Format - Loading Data

    I have run into something really annoying. If I run the following SQL into SQL Server via SSMS it will load "31-DEC-49" as 2049-12-31. INSERT INTO Stg_StockProductCostPrice VALUES (0,9999,0.99,'15-NOV-75','31-DEC-49') But if I have the same data in a file and load it via SSIS it is loading into the database as 1949-12-31, instead of 2049-12-31. I know there is a property called "Two Digit Year Cutoff" against the server. It is defaulted to 2049. Is there anything similar within SSIS Thanks Sutha SSIS uses the Windows settings. http://wiki.sqlis.com/default.aspx/SQLI ...Show All

  • SQL Server Error: 'table that is required for a join cannot be reached'

    Hello all, I'm running into an odd error when trying to process a newly created dimension, I've looked at the 2 postings with a similar error, but they don't appear to pertain. Here is the error: Error 1 Errors in the high-level relational engine. The 'dbo_Company_Address' table that is required for a join cannot be reached based on the relationships in the data source view. Error 2 Errors in the OLAP storage engine: An error occurred while the dimension, with the ID of 'Company', Name of 'Company-Location' was being processed. Error 3 Errors in the OLAP storage engine: An error occurred while the 'Company' attribute of the 'Comp ...Show All

  • SQL Server Vis. Studio.Net 2K3 + BI Reports

    Hi All, Having a problem installing the BI side of things into Visual Studio. I've installed it onto my laptop fine, but trying to get the BI reports to install on my desktop is turning into a nightmare. I've made sure all the Pre-Req's are there, .NET Framework, Local IIS, etc, but what ever I do, I cant get the BI reports to appear, even with doing an uninstall and full install. Does anyone have any suggestions Cheers Steve Hi, I have VS2003 .NET, I have had a play with Yukon, but it was on a virtual machine... Looks like I may have to resort to using the Laptop. Cheers ...Show All

  • Visual Studio How to identify non-ad hoc reports before launching Report Builder?

    Since Report Builder can only be used for reports created with Report Builder and not those created with Report Designer, how can I identify via the exposed API how the report was created I want to prevent the user from attempting to launch Report Builder on reports that it can't edit. Thanks, Terry ...Show All

©2008 Software Development Network