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

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

PareshGheewala

Member List

Melvinsb
Marlin7
MNDANG
Ljhopkins
BilalShouman
Liam64
mjt
MSP.Saami
RajLakamana
Derek Smyth
R.Tutus
AndyPham
r_daneel
Olga99
Vijay Chegu
Akshay Saini
Mario Antunovic
rayms
Helen999888
Raulsassaa
Only Title

PareshGheewala's Q&A profile

  • Visual C# How do I rename the administrator on a given machine via c#(System.Management?)

    I've found a few bread crumbs, but i have not as of yet figured this out.. here's what i know. You're supposed to be able to do it using WMI via win32_useraccount.Rename, You can call WMI stuff in c# via System.Management. What I need is how to tie those two pieces of information togther to allow me to make the changes. Can anyone help Give me a few more breadcrumbs to follow Thanks,  Eric-   I figured out how to do this using renuser.exe... it's pretty simple the hardest part is finding a copy of renuser.exe. I found it on the Korean verison of the english site that everyone links to. http://www.ntfaq.co.kr/download/renuser.zip Eric- ...Show All

  • Windows Forms Combo Box problem

    Hi There, I have simple form which has 2 combo boxes. Both combo boxed display list of account numbers from the database. Now the problem is......... when I change the account number in one combo box, account number in the othe combo box is changed automatically to same account number which I select in the 1st one. Here is the simple code : -------------------------------------------------------------------------------------------------------------------------------------------- using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using MySql.Data; using System.Threading; using System.Configuration; namespace Ac ...Show All

  • SQL Server Delte from 3 table in one procedure

    HI I have 3 table in table 1 i have a ID i use in table 2 and in table 2 i have a ID i use en table 3 In table one i have a datetime field What i want is to delete all from this 3 table when the datetime value are more than one hour old. I can delete old from the table one by: delete from tableName where datettimeField < dateadd ( hour , - 1 , getdate ()) But how do i delete all the records from table 2 and table 3 off course where the ID in table one are the same as in table 2 and the ID in table 2 are the same as in table3 Hope someone can help LN Hi Thank again I have done it in the rules for the diagram But i have another problem with the same delete This is allr ...Show All

  • .NET Development how can I start with "isa server" and "active directory"???

    Hi everybody: I'm new in isa server and i want to restrict Active directory users in the following cases. download size , time of connection , upload size , ...... Is there any one to help me how i can start ...Show All

  • Visual Studio Team System Stronger indication of solution filtering in pending changes needed

    This has caused developers at our site to either checkin too few or too many changes, as the indication wasn't strong enough as to indicate what file set was displayed in the pending changes. Right now the indication is a tiny 1 pixel line drawn around a tiny icon. Perhaps a big world icon to the right when not filtering and the solution icon when filtered. My team has had some confusion over this as well. I like your idea of an alternative icon for when not filtering by solution. A behavior similar to the "folder view" / "flat view" toolbar buttons possibly, or the combo box style selection for large icon/small icon/detail view, etc in the results pane of Windows Explorer. ...Show All

  • Visual Studio Express Editions Depth of Features

    I am going through a book on VB that uses visual studio 2003, using visual basic 2005 express edition. But it seems that in express edtion the user is unable to create a solution within which multiple projects can reside. There is no option in templates to create a solution in express edition, is this right or am I doing something wrong TIA You cannot create a solution from scratch (I believe), but you can add multiple projects and 'create' a solution. you can see some additional overall differences between versions (Express, Standard, Pro, etc.) here: http://msdn.microsoft.com/vstudio/products/compare/default.aspx     ...Show All

  • Internet Explorer Development IE7 icon Problem

    Firstly, let's clear up the icon definitions. Favicons are those that are downloaded from the linked website and show the websites logo or whatever. The icons that we are all concerned with here in this fourm that are in error are the windows icons. These icons along with an array of others are usually contained in system dll files. Indexes into these files are kept track of in the registry and in the shortcut or favorite itself under properties. For example if the dll has 256 icons and windows calls the dll as shell.dll, 255 the 255 is the index into the icon file. In this case the last one (base 0). The problem here is with IE7. The registry entries under HKEY_CLASSES_ROOT (url and internetshortcut) appear correct. I ...Show All

  • .NET Development Another Beginner - Sending html email using System.net.mail

    I need to send a html email whose body is contained in an external file.  I have sucessfully used the code below to send a simple message but the intended application would send a much larger message body and I would like to keep the message body in a separate file so that  it doesn't clutter up the master page I am designing and make it easier to edit using another application.   protected void mailSubmit_Click( object sender, EventArgs e) { MailMessage mailMsg = new MailMessage (); if (mailAddress.Text != "" ) { mailMsg.To.Add(mailAddress.Text); mailAddress.Text = "" ; } mailMsg.Subject = "Email Signup" ; mailMsg.Body = "<h1>Hello, World!</h1>" ; mailMs ...Show All

  • Windows Forms Binding array into datagrid column

    Dear All, I have a dynamic array generated. So what I want to do is to keep the array as part of a grid column. I cant afford to put each of the array value as individual row as this list will be a long one. So I am doing grouping and keeping the all the ID into an array and later I want to store this array as column value. So how can I store an array as a datagrid column Data cannot be stored in a DataGrid. Data is stored in a datasource to which the DataGrid is bound. Can you provide some more details of your implementation, like what data you are displaying in the DataGrid and how you are getting it there ...Show All

  • Visual Studio Express Editions Loop Sql, display data

    I had the flowwing code, trying to dsiplay all the email to this format ( "Test@testing.com, Test2@testing.com,etc ) in a textbox How do i do that Using EmailConn As New SqlConnection Using EmailCmd As New SqlCommand( "SELECT Email FROM Participants WHERE (SchoolName = @Email)" ) Dim Email As String = EventCmb.SelectedItem.ToString() EmailConn.ConnectionString = "Data Source=.\SQLEXPRESS;AttachDbFilename='C:\Documents and Settings\HP\My Documents\Visual Studio 2005\WebSites\FYP2\App_Data\Event.mdf';Integrated Security=True;Connect Timeout=30;User Instance=True" Try EmailConn.Open() Using rdr As SqlDataReader = EmailCmd.ExecuteReader() While rdr.Read() EmailCm ...Show All

  • Commerce Server MOSS2007 integration with Commerce server 2007

    I am working over the integration of MOSS2007 with Commerce server 2007 beta. But I am facing a lot of problems. Can you suggest me a working example that may lead me from scratch towards end while using commerce server adapter. I am desperately in need of such example as I have searched out a lot over web but couldn’t find any working example in which commerce server adapter has been used Libra08, I assume that what you want if something that for example would be polling information (xml) from MOSS (Windows Sharepoint Services 3.0) by using Biztalk and then bringing that data in to Commerce Server 2007 (let's say the Orders System). Is that correct regards, Enrique Lima ...Show All

  • SQL Server unable to create Integration services project

    Hi, I've installed with success Visual Studio 2005 team edition for software developers and SQL SQL Server standard edition, but when I've created a new IS project and click on "No Data flow tasks have beed added to this package. click here to add a new DataFlow task" I receive the following message : Registration information about the Data Flow task could not be retrieved. Confirm that this task is installed properly on the computer. Could not enumerate the registered tasks. (Microsoft.DataTransformationServices.Design) Does someone experience this before is there any work around Thank you for your help Silly question - but where did you uninstall/remove SSIS from I don't see it seperately in add/re ...Show All

  • SQL Server Can we use DTS to import PDF and MP3 into SQL Server 200 table?

    I've got a situation in whcih I have to import PDF and MP3 files into SQL Server 2000 table. Thanks, YL http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.sqlserver.dts ...Show All

  • Visual Basic COM and vb.net IPC

    i am trying to get a VB6 application to interact with a VB.NET application. how can i get the VB6 progrm to open and interact (call subs and functions) with the VB.NET program. i would prefer not to use a DLL for the VB.Net program as it is used as a stand-alone application as well, and it is a HUGE pain to maintain both dll and exe versions of the same exact program (not to mention installing both on a users computer). i would love to have some way to communicate with the VB.Net program similar to how Excel or Word is used in VB6: set objVar = createObject("Excel.Application") but instead have: set netVar = createObject("my.net.exe") does anyone know how to do this thanks ...Show All

  • Smart Device Development Help with Timeline/ Measuring time between 2 DateTime's in milliseconds

    Hi, im creating a music application for Pocket PC. Link here: http://www.ableton.com/forum/viewtopic.php t=50295&start=0 I wish to measure a time intival between 2 DateTimes's So im using code below: DateTime start = DateTime.Now // wait some time Datetime stop = DateTime.Now TimeSpan span = stop - start; MessageBox.Show(span.totalMilliseconds.toString()); Problem is it's returning whole seconds like 1400 1500 1600 and not a double like 1405.1234 like it says in the api docs. Anyone have any ideas how do i measure time in compact framework in total milliseconds Thanks for your time. Paul. Use System.Environment.TickCount or P/Invoke ...Show All

©2008 Software Development Network