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

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

venkatakrishna

Member List

Babe21
Anab
Christian Damborg
thomas_d_gray
Luis Esteban Valencia Munoz
KevinDoyle
acydeK
Michael Paxton
mmmmmm
rahman39
vr8ce
Jeff Guenthner
Jack Dawson
Bryan Morgan
Gluber
JohnDaldry
vpeh
Jason Meketa
Bob - GP
Rits
Only Title

venkatakrishna's Q&A profile

  • Software Development for Windows Vista How to build xoml activity with code beside?

    Hi, I have a customed activity and it will be used in xoml only workflows which can be used without build.I found a sample given by Vihang and followed it. I created a type for this activity in a project named ActivityCode. namespace ActivityCode {     [Designer(typeof(HumanOperationDesigner), typeof(IDesigner))]     [ActivityValidator(typeof(HumanOperationValidator))]     public partial class HumanOperation : SequenceActivity    {       ……     } } And then I created a xoml only activity in another project named WebActivity. <ns0: ...Show All

  • Windows Forms Drawing a control over custom control's boundary

    Hi, I am creating a custom Bread Crumb-type control, and am running into a little bit of a problem when trying to add an intellisense-type functionality to it. The control is pretty much a textbox, but I want a list box to display below it when the user types something in, similar to how VS.NET does it. However, since the listbox's boundary is actually outside the boundary of my control, it cuts it off and I don't see it. Is there any way to "override" this and make Windows draw it regardless Thanks, Yaron The only way I know of getting around this is to create a bordeless form with the list box that pops u ...Show All

  • Visual Studio Express Editions toolbar for dataset (how do i make one?)

    i checked out the beginner videos and they were really useful. i added a dataset and when i dragged the table in datagridview onto the working area, a data grid pops up with a nice toolbar on top with the usual functions like adding, deleting and saving. i thought i didn't need the toolbar so i deleted it. now that i want one, how do i add one i tried dragging another datagridview onto the working area, and a data grid shows up WITHOUT a toolbar any help Maybe this will work (If I understand correctly what you're trying to do) Go into the ButtonClick event of the button that you want to to fire th ...Show All

  • Visual Studio Local work copies and IIS

    Hi all.. new to VSS so please bear with.. OK I go into VSS thru the .NET 2003 IDE. I select the File/Source Control/Open from source Control . select the project I want to work on... now I have not checked anything out as of yet... correct me if I am wrong at this point. When I select the folder from VSS containing the project/solution I need to modify, IIS creates a new virtual folder named from whatever the folder in VSS is. At this point I am just looking at the project files , not checking anything out yet. If I hit the "Save Button", where does the local working file copies go Are they the files in IIS or doe ...Show All

  • Visual Studio Express Editions Newbie Question about Textboxes

    Hi, I'm new to visual basic, and I am trying to use a combobox with 2 items, and when I select one of them I want to be able to have it read a registry key and then output the result to a textbox.    This is the code I have so far. Currently, when I select an option in combobox1, it reads a registry key and then displays a msgbox with the result. I would like it to be displayed in textbox1 instead.    Picture of form design ------------------------------------------------------------------------------------------------------------------ Public Class options Private Sub Ca ...Show All

  • Visual C# Need help with RAS.

    for some reason I continually get an invalid structure size when I call RasDial. here is a little code snippet I would really appreciate it if someone could give me a hand with this, I'm stumped. Here is the structure that keeps giving me the error: [StructLayoutAttribute(LayoutKind.Sequential,CharSet=CharSet.Auto)] internal class RASDIALPARAMS { public int dwSize = 1060;// = Marshal.SizeOf(typeof(RASDIALPARAMS)); //The win32 api expects Fixed structure sizes so you need to //specify the size using MarshalAs [MarshalAs(UnmanagedType.ByValTStr, SizeConst=(int)RAS_MaxEntryName + 1)] public string szEntryName = null; ...Show All

  • SQL Server One dataflow for sevral Oracle Instances ?

    Hi, I designed a dataflow which extracts, transforms and load (the main goals of an ETL .... ) data from an Oracle db to an Sql Server 2005 db. The issue is that I would like to run this dataflow on several Oracle instances in a row. This intances are not on the same Oracle Servers. Is there a way to set only one data source for all these intances and to use a loop to execute the dataflow for each . Regards Ayzan You could place the Data Flow inside a For Each Loop. Select the enumerator best suited to the list of servers you have, and obviously pass this out through a variable(s) so that you can u ...Show All

  • Visual C++ Error converting double to unsigned __int64

    I'm seeing a problem in converting a double to an unsigned __int64. If the double is greater than the maximum for a signed __int64, the conversion returns the wrong value. For example: { double d; unsigned __int64 num = 0xa000000000000000; printf("unsigned __int64 = %#I64x\n",num); d = (double)num; printf("To double = %e\n",d); num = (unsigned __int64)d; printf("From double = %#I64x\n\n",num); } Produces: unsigned __int64 = 0xa000000000000000 // Correct To double = 1.152922e+019 // Correct From double = 0x8000000000000000 // WRONG Is there a fix for th ...Show All

  • Visual Studio How do you Use Advantage StreamlineSQL ODBC with CR.NET

    I've created a VS 2003 ASP.NET application that displays crystal reports. I've got it set up so that it is able to display any Report that is using a SQL Server ODBC.  But just recently I've been asked to have a Report which accesses the database though a Advantage StreamlineSQL ODBC and it's not working. a SQL ODBC asks for ODBC name, Servername, database, and login information. StreamineSQL asks for "ODBC name", "table type" (foxpro), and "Database or Data Dictionary Path" (u:\servername\path\) This report works fine using the Crystal Reports 11 application.  But when I try to put it through the ASP.NET application it asks for lo ...Show All

  • Visual C# Class Designer in Express?

    I'm a developer by profession, but it looks to me like Visual C# Express has enough functionality for the little things I want to work on at home ;-) However, I was reading the 'Product Activity Enhancements' page at http://msdn.microsoft.com/vcsharp/2005/overview/productivity/ and I can't find the Class Designer functionality as depicted (where there's a grid of the class details and a toolbox with 'Class', 'Inherit' etc. Can anyone confirm that this is not available or going to be in Express. I couldn't find it ;-) FYI, Here is a link to the product overview for the 2005 products, mayby this will ...Show All

  • Windows Forms how to limit number of instances of a form being opened?

    I have a btnAddNew on my frmMain which opens frmAddNew for adding new service record: What can I do to make sure the no matter how many times the btnAddNew is clicked, the frmAddNew will only have one instance opened. this is the code under btnAddNew_Click: //open up frmAddNew frmAddNew frmAddNew1 = new frmAddNew(); frmAddNew1.Show(); Also, I have a btnPendingServices, which opens frmPendingServices, I want to make sure user can only open no more than 3 instances of frmPendingServices. the code under btnPendingServices_Click is: //open up frmPSV frmPSV frmPSV1 = new frmPSV(); frmPSV1.Show(); Pl ...Show All

  • .NET Development What steps will be need to move a beta project into the final version

    I am wondering if it would be safe to install a solution written in the beta and when the final .net framework comes out what would I have to do to update the installs. Will the autoupdate features of one-click download the updated framework or will the app have to be uninstalled and setup rerun again.     You will need to recompile the application using the final version of the software. Based on changes that are made from the Beta to final version, you may need to make a few code based changes as well - although Microsoft has promised that this would be minimal. Beta 2 comes with a Go Live! Li ...Show All

  • Windows Forms How do I get the active item in a listview?

    I'm trying to make a method where I doubleclick on a listview item, and a button should then be added on a panel with the listview item's text Thanks for the answers. I did it this way; ListViewItem activeItem = new ListViewItem(); activeItem = listView1.SelectedItems[0]; MessageBox.Show(activeItem.Text); This only writes yout the first element in the list of selected ...Show All

  • .NET Development Network-problem

    How can I solve this problem Request for the permission of type 'System.Net.SocketPermission, System, Version =2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed. It comes when I try to connect my client with my server! http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=167113&SiteID=1 This post has relevant information that you may want to read. ...Show All

  • Visual Studio Team System Unable to remove project/files from TFVC

    Hi, I have been playing around with VS2005 and Team System. I have created a new project based on the MSF Agile template and added a C# project to source control. Now I want to delete some files or even the complete project from source control but when I right-click on the project in the source explorer the "Delete" menu item is grayed out. I managed to remove the entire project (WSS, reports, ...) from TFS by using the TFSDeleteproject command line tool. I am team foundation administrator so I should have no problem doing everything on the server. Thanks, Jay Hello Jay, When you ran ...Show All

©2008 Software Development Network