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

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

RPKJBP

Member List

mig16
_Stoic
rahulsk1947
ManjuVijay
bxchan
InquiringMinds
W Wong
kopo
Jboul
ManjuVijay
Nima_Don
moonriver
J. Bennett
mblas
nyforever
jag108
bobo224
Dave Jenkins
Pranav Sanghadia
SQLChamp
Only Title

RPKJBP's Q&A profile

  • Visual Studio Team System Folder structure creation in VSTS source control

    Hi Can someone let me know how do I upload an empty folder structure for my projects in VSTS source control. I read somewhere that I need to create blank solutions and then add them to source control to have the desired folder structure.. is the true Is there a easy way as we have in traditional VSS setup just go add folders where n whenever I want Plz help.. I'm really looking hard for this. In Source Control Explorer, there is the "New Folder" button. This will let you add individual folders. You can also click on the "Add Files" button and then select a folder. Though it may look like it will only add the files under the directory tree, all folders should be added as wel ...Show All

  • Software Development for Windows Vista Deploying Workflow applications

    Greetings!! I have created a sequential workflow console application which prints HelloWorld. To the same project I added a setup project and created a msi. Now when I try and run the msi to deploy the console application, even though the msi says that it has completed installtion, i can see no deployed files/folders. Can anyone suggest any good sites where I can view information about deploying workflow applications. I know how to deploy workflow as a webservice. However this is a console app. Any comments/suggestions will be helpful. Thanks, Lalit. Make sure you add the output of your console application to the installer's files to be deployed. You may also need to add the content if y ...Show All

  • Visual Studio Express Editions Threading Question

    I want to call 4 instances of the same class at the same time in background threads, Im struggling to get the threading code to work. Keep getting message error messages about signatures & delegates. Can anyone help with the code to start the threads.. The code below is how i can call them up in a normal way. Thanks Dim ChangeBet As New AmendOrigionalBet ChangeBet.AmendLayBetUnder2(BetIDs, Selection, BetStake, NewStakes, NewOdds) At coding time Im trying to start the threads with code like this... Dim serverObject As New AmendOrigionalBet Dim InstanceCaller As New Thread( _ New ThreadStart( AddressOf serverObject.AmendLayBetUnder2)) ' Start the thread. ...Show All

  • Windows Forms MouseMove in a form

    I'm trying to get the location of the mouse pointer so that i can check whether or not it is within an mdi child, i declared the event handler in the form with this code: private void frmMain_MouseMove(object sender, MouseEventArgs e) { bool hit = MDIchild.CheckHit(new Point(e.X,e.Y)); if(hit) MDIchild.createObject(); } CheckHit function within MDIchild public bool CheckHit(point p) { if(this.Bounds.Contains(p)) return true; return false; } the problem is that the event never triggers so I don't even know if CheckHit works... I've tried setting breakpoints but they never pause execution, I've tried a label that shows the current mouse pointer location none works... I did get the code to work when I changed the event to a panel but obvio ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Alien Cow Abduction XNA - demo

    Be kind please! This was originally going to be just a sidescrolling background, as I was having problems figuring out how to work the gui. However, it evolved into this game demo of Alien Cow Abduction Features: sprites, keyboard movement (arrows, space, escape to exit) scrolling background, missile , collision detection b/w missile and cow (simple collision detection.... kinda works) text on the screen too much hard coding! :) anyways.. check the remarks on the file for more links and info. screen shot Project in RAR variables for speed can be changes in the : hero, missile ,cow and planet class ( sidescroller rotation) Any comments would be great.. -Ray UPDATE - 9-5-06 I just learned about ...Show All

  • SQL Server Replicate column to subscriber - even it if is unchanged in UPDATE statement

    Set publisher database table column to 1. Replicate table to subscriber (column is also 1 on subscriber once it is replicated). Set subscriber database column to 2. Update publisher database column to 1 (even though it is already 1). Change is NOT replicated to subscriber (it stays at 2). This means that replication is comparing the insert statement to its current value in the database. Is there any way to change this behavior We want the the column to replicate to the subscriber. Peng, What a great stored procedure! It turns out that the command that is sent to the distributor for replication only contains the fields that change. For instance: Table has the fo ...Show All

  • Visual Studio Team System Team Explorer won't remember my password

    When I first installed Team Explorer (with Visual Studio 2005) it remembered my password.   They make us change our passwords every three days (I'm exaggerating a little).   Once I changed my password, it began prompting me for a username and password every time I started Visual Studio.   There was no "remember my password" checkbox visible in the dialog.   I was forced to reinstall Visual Studio a while back, and after doing so, Team Explorer once again saved my password.   But, yesterday was password change day, and now I'm back to re-entering my username and password every time I start Visual Studio.   What's the deal Where can I find the windows key ring app ...Show All

  • .NET Development OracleException - PLS-00561: character set mismatch on value for parameter

    Hello, I'm currently working on a .NET v1.1 application which utilises the Enterprise Library application blocks (specifically the DAAB) with Oracle. When creating stored procedures that take integer values (IN NUMBER) i have no issues, but when creating a stored procedure that takes a string (IN VARCHAR2) i'm receiving an Oracle exception. I've been scratching my head from searches... Oracle Client Version 8.1.7 (With NLS_LANG set to UTF8 and American WE8I...) .NET v1.1 .NET v1.1 Enterprise Library June 2005 The example Oracle stored procedure is as follows <code> PROCEDURE test_vchar_in ( vchartest IN VARCHAR2) IS BEGIN NULL; END test_vchar_in; </code> I call the stored procedure in c ...Show All

  • Windows Forms GridView and always visible headers

    I have a gridview that has many rows, it's a fixed size and will scroll vertically when the number of entries are too large for the area allotted to it. Is there a way to force the headers to remain at the top regardless of how far down the view you scroll The only other solution I can think of is putting my own labels in, but then I lose the sorting features . Thanks in advance. your assumptions were correct It's not happening for me. the headers go away when scrolling down. Are you using div's at all or any other html stylings ...Show All

  • Windows Forms TreeView Levels - Not going deep enough

    Hello all I'm suffering a little with the TreeView control. My problem is I'm wanting to create a dynamic category list that company survey's will be filed into. My database has a table for categories; each with an ID, Name and ParentID (ParentID is null if its a root Category / Node). Also each survey has a category ID it should be filed into. When the categories are pulled from the database I test to see if its got a ParentID, if it doesn't I want to add it as a root node, otherwise I want to find the node it should be a child of at add it to that. There in lies my problem. I can't get the TreeView to find any nodes past layer 1(i.e. Root->SubCategory). I have tried the Nodes.Find method but can't search lower ...Show All

  • Windows Live Developer Forums How to package emoticons into installation package?

    Is that possible and how to package a bunch of emoticons into a single packaged installation file Appearantly not... If you want to add multiple emoticons all at once, I think there is a Messenger Plus! Live Script to do that. The information about emoticon packages is not public, so you would probably have to figure that out for yourself. ...Show All

  • Smart Device Development TAPI usage

    Hi All Forgive me if this is a silly question – I’m a bit of a novice in this area. I’m trying to write a TAPI monitor that will respond to TAPI events generated by the standard Phone application in a Pocket PC device. All I want to do is build up call statistics so I want to log calls of a specific type, eg international, 0800 etc. I was hoping to use TAPI as a basis of the call monitor – using lineInitializeEx to install a callback function to respond to events. I tried this – with no real success. I basically extracted the callback function from the CeDialer example. The callback didn’t seem to trigger when I placed a call. Can I use TAPI this way or ...Show All

  • Windows Forms Why he Dont Dispaly any Data ??

    hello to all..... i'm make this Application To bind Two Tables Orders and orderDetails the Problem "he don't display any data on the Form" Imports System.Data Imports System.Data.SqlClient Public Class Form1 Private strOrders As String = "SELECT OrderID,CustomerID,EmployeeID,OrderDate ,RequiredDate ,ShippedDate,ShipVia,Freight,ShipName,ShipAddress ,ShipCity,ShipRegion,ShipPostalCode,ShipCountry FROM Orders" Private strOrderDetails As String = "SELECT OrderID,ProductID,UnitPrice,Quantity,Discount FROM [Order Details]" Private WithEvents OrdersBindingSource As New BindingSource Private WithEvents OrderDetailsBindingSource As New BindingSource #Region "About DataGridView" Sub CustomizeDataGr ...Show All

  • Visual Studio ASP.NET crystal report parameter not set properly

    Hi, I am working or crystal reports in Visual Studio 2005. I have created a report file .rpt in the windos application. Then I am trying to use the same rpt file in asp.net. It conatis a parameter @mpo, which is required by a stored procedure. I have used the following code to set the parameter. But at runtime it's asking me the parameter again. If I disable the prompting of the parameter from the reportviewer tasks, it gives message saying the parameter is missing. Not sure what is wrong with the code Please help. - Abhijit To set the parameter in page_load I have added following code If (IsPostBack = False ) Then Me .CrystalReportViewer1.ReportSource = "CrystalReport1.rpt" Dim pFiel ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. A Simple grid component

    I created this self contained grid and figured someone may find it a useful starting point. [ code language="C++" ] using System; using System.Collections.Generic; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Audio; using Microsoft.Xna.Framework.Components; using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Input; using Microsoft.Xna.Framework.Storage; namespace XNAEngine {     public class SOGrid : Microsoft.Xna.Framework.GameComponent     {         // This is how you would add camera control to the grid component         /*private myCameraComponent camera;         pub ...Show All

©2008 Software Development Network