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

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

imanish11111

Member List

erikkl2000
Atlantaazfinest
ChristianBG
Jerryl101
Antonio Calderon
Chips_in
Chas T
prodonjs
LouArnold
Whoisit
JRMcFetridge
Daroedawg
Diane Landen
Donald Burr
K. Murli Krishna
MunishGupta
cosmmm
Buk usu
Anand Prakash
Hans Hunger
Only Title

imanish11111's Q&A profile

  • Visual Studio Express Editions splitting a sentence into word per word in array with a twist...

    Hi everyone this is my first post. I'm fairly new to programming. I can't find answer to my problem from the book I purchased on mastering VB express edition so I thought I'd ask here. and I have this; dim array() as string array(0) = "human hair found everywhere" array(1) = " I really love pringles" 'I can do this on the first element dim wordSplit() as string = split(array(0), " ") msgbox(wordSplit(1)) 'this would display "hair" msgbox(wordSplit(2)) 'this would display "found" 'the next is where the problem occurs 'how can I do the same thing to the second element 'I tried these but they won't work ' dim wordSplit() as string = split(array(1), " ") ...Show All

  • Visual Studio Express Editions Accessing Dataset from two forms

    There is most likely something simple I have missed but I can not get this to work. I have a Dataset containing several tables. One of the tables, "Table1" has a Datagridview on "Form1". Unfortunately, none of the data from "Table1" is "available" on "Form2". I have not been able to use a datagridview of this table on "Form2" nor been able to even do a .Count via code. Everytime it returns nothing. Any suggests on what might be the cause Brian ahmedilyas, Thanks for your reply. Your suggestions would work but I tried ReneeC's suggestion which worked like a charm. Again thank you for your help. Brian ...Show All

  • Visual C# can any body help me in reversing strings

    this fuction help me to convert the arabic words to hexa .. and it doing the job 90% because it convert it in reverse   this means that the true hexa for example is (062F0645) but the function returns it like this (0645062F) and this makes each word come in reverse order   for example ... I love you becomes uoy evol I   how can fix that     public string ArabicHex( byte [] b) { string temp,s="",h=""; int i=0; while ((i <= b.GetUpperBound(0))) { temp= "00"+b .ToString("x2"); h = temp.Substring(temp.Length-2); if (h == "000D") { h = ""; } s = h + s; i += 1; } return s; }   thanks in advance ...Show All

  • Smart Device Development Losing Databinding with ResultSetViews

    I am programming in C# for the .net compact framework 2.0. I am binding controls on the screen to my SqlCe database using ResultSetViews. Everything works fine, as long as there are rows in the table when I create a ResultSet. If I create a ResultSet when there are no rows in the table, and then later add rows to the table, and after that set up the databindings, the bindings won't work (Controls who's Text property is bound display no text at all). Do I need to do something to update the resultSetViews This is (sort of) how I am doing it: cmndDB = new SqlCeCommand("SELECT * FROM MyTable", dbConn); SqlCeResultSet rs = cmndDB.ExecuteResultSet(); ResultSetView rv = rs.ResultSetView; ... cmndDB.CommandText = ...Show All

  • .NET Development KeyedCollection Support Two-Way DataBinding?

    I want my business object collections to inherit from a generic collection that supports access to its members by key and/or numeric index. It appears that KeyedCollection meets this requirement but it is my understanding that the only the BindingList<> generic supports two-way databinding Is this true Or does the KeyedCollection type support two-way databinding as well I realize that I could probably implement the interfaces myself but I would rather have that functionality inherited if possible Thanks for any assistance. Mark You can use the BindingSource component to perform two-way databinding with a KeyedCollection. Once you've created your derived KeyedCollection, make sure you've ...Show All

  • Visual Studio PowerToys

    One of the best powertoys for XP is SyncToy Are there plans to port this tool to vista ...Show All

  • Community Chat Zune Subscription

    I've been scrounging around online and thought I might be able to get a definitive answer here. Currently, I have Napster-to-go with my Dell DJ. The DJ is on it's way out the door, and I'm looking at getting a Zune. Will this Zune subscription thing for 15 bucks a month allow me to transfer music to the player itself, or is it simply to let you listen to music on your computer In other words, will there be something like napster-to-go that works with the Zune TIA! I have been using Zune since my kids gave me one for Xmas, and it is the iTunes killer. The subscription is a bargain. I have been downloading and listening to literally hundreds of songs I would NEVER pay for on iTunes, and have really been ex ...Show All

  • Community Chat How to collect File Usage/Activity Statistics?

    Hey I am on a project to centralise several geographically dispersed file servers, and I need to collect some stats on file usage/activity at these sites. I need to know how often documents/files on these servers are opened , and how often documents (new or pre-existing) are saved , so that I can make some estimates of the bandwidth that these site servers will consume if centralised. I have been playing with turning on Auditing for the relevant folders, which logs events to the Security Log. While I think I can collect stats relating to documents being opened using these logs, getting to the stats about documents/files being saved or updated is more problematic as the events thrown in these cases don't appear to offer the sort of da ...Show All

  • Windows Forms how to find in dataGridView

    I have fill a dataGrid with records using following code now i want to search a record and change color of whole line System.Data. DataSet ds = new System.Data. DataSet (); System.Data.SqlClient. SqlDataAdapter ad = new System.Data.SqlClient. SqlDataAdapter (Query, ConnectionToDatabase); ad.Fill(ds, DataMemeberName); DataGridName.DataSource = ds; DataGridName.DataMember = DataMemeberName; use filter. DataGrid.DefaultView.RowFilter = "FirstName like 'myname'"; Then u can Change Color if you want but this won't show all the rows .! ...Show All

  • Visual Studio Team System Version control API - basic recipes

    I'm working on writing a simple client using the version control API and I'm having trouble with a couple of basic concepts related to server names, local paths and server paths. I'm hoping someone can fill in the gaps with a few recipes - I've looked at some of the samples on various blogs, but haven't found solutions to these basic issues: 1. Given a local path, determine the name of a TFS server that has a mapping for that path (if such a server exists). The code from the example on Buck's blog ( http://blogs.msdn.com/buckh/archive/2005/10/26/485458.aspx ) doesn't seem to work - it never finds a server name. 2. Given a local path, determine the exact name of the server path that maps to it. 3. Given a server path, determine the ...Show All

  • SQL Server sysprocesses versus Dynamic Management Views

    I am using SQL Server 2005. As I understand it, the table sysprocesses has been deprecated and we are supposed to use Dynamic Management Views (DMVs) instead. I need to be able to determine which sessions are connected to which databases on a server. I can get this from sysprocesses.dbid, but I can't find it in the DMVs. I put together this query: select session_id , dbid from sys.dm_exec_connections cross apply sys.dm_exec_sql_text ( most_recent_sql_handle ) There is a column in sys.dm_exec_sql_text() called dbid, but it is null most of the time because the function shows actively executing queries. Also, there is a column in sysprocesses called cmd. This does not appear to be in any of the DMVs. Thanks, R ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. How do I cancel my subscription to XNA?

    Okay, I purchased XNA from the Xbox Live Marketplace thinking that the launcher thats under memberships was all I needed. Now, I think it was all I needed, but I can't connect to anything to make anything. So, I want to cancel the subscription, but I can't seem to find any links or anything to cancel. Well, it says "Note that your subscription will automatically renew to a 4-month subscription at the then current price, unless you change your renewal or cancel before your subscription ends. For pricing details and information about changing or canceling your subscription, go to http://msdn.com/xna/creators". I went to http://msdn.com/xna/creators and can't find where to cancel at. ...Show All

  • SQL Server How To Install SQL Server 2005 XE on Win Vista

    Hi, I don't know, how I can install the SQL Server 2005 XE (Express Edition) on Windows Vista RTM Ultimate, I have a problem... I don't know what happend, I tried to connect to the Database and the Studio Magnament threw: TITLE: Connect to Server ------------------------------ Cannot connect to 1\SQLEXPRESS. ------------------------------ ADDITIONAL INFORMATION: Error mientras se establecia la conexion con el servidor. Al conectar con SQL Server 2005, el error se puede producir porque la configuracion predeterminada de SQL Server no admite conexiones remotas. (provider: Interfaces de red SQL, error: 26 - Error al buscar el servidor o instancia especificado) (Microsoft SQL Server, Error: -1) For help, click: http://go. ...Show All

  • SQL Server DT_TEXT not supported while importing from an XML file?

    I have an XML file that contains a field that has over 8000 characters in it. I cannot use a (n)varchar for it, I must use a Text for it (although as a last resort I could split the string into several (n)varchar columns). I want to set the external column of the XML column to a DT_TEXT and I receive and error message that states : Error at Import XFFD Data [xffd [1]]: The SSIS Data Flow Task data type "DT_TEXT" on the external metadata column "reviewText" (32411) is not supported for the component "xffd" (1). I've tried converting the nvarchar into a text stream with the use of a Data Conversion Transform, but I think the Validating steps are truncating the field. HELP. I've been beating my head against this ...Show All

  • Smart Device Development Windows CE Emulation with USB-support from host system

    I need to emulate a Windows CE 5 image from Platform Builder, but I need to access a webcam, connected through USB on the host system. Is this possible, and if so - how A second question is, can I connect my Visual Studio 2005 to this device, deploying .Net-applications for debugging purpose.. Thanks in advice.. What are the alternatives, if I have to develop an application for a CE-based device To get a eBox or something to test it on // Benne ...Show All

©2008 Software Development Network