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

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

Shadi_05

Member List

Steve1999
Evan Hennis
Nfrf
Binu Jeesman
kehsiao
Anthony_W
pdurbha
Jan Drenthen
Markus Fischer
xlordt
Pankaj11
georgeob
Hoodwinked
pchak
GSReddy
Luke2k4
malj
JFoushee
el-chema
Garon Line
Only Title

Shadi_05's Q&A profile

  • Visual Studio Express Editions multilingual support

    Hi, I need to know how to set up a web site por multilingual support. web site has pages contnt text in different languages, but characters on pages are not showning well for pages in languages like chinese, hindi or arabic. could some body help me, Thanks, Check this MSDN library article ... ...Show All

  • Windows Forms Datagridview Update problem

    I have created a datagridview by dragging from a datasource "Users" in Visual Studio 2005. On it I have set a column called "password" to invisible so passwords are not shown, and I have created a button column for resetting the password. In the button click event, I use an InputBox to get a new password and write it to the gridview column. All is okay. I even experimentally set the column as visible and can see that the value is correct from my inputbox. Then I try to update to commit it to the database, and exception is thrown. Please help Exception: An unhandled exception of type 'System.InvalidOperationException' occurred in System.Data.dll Additional information: Update requires a valid UpdateCommand when ...Show All

  • Windows Forms Remove ListItem from ListBox

    Hi friends when i try to remove ListBox item(ListItem) its giving error error : List that this enumerator is bound to has been modified. An enumerator can only be used if the list does not change. i have only ListItem objects in my ListBox and my code as follows foreach ( ListItem removeitem in listBox1.SelectedItems) { listBox1.Items.Remove(removeitem); } and can anybody clear me the difference between ListBox and ListView and is ListItem only for ListView (or) can we add it to ListBox also any help pls, Regards Ranadheer. Dear nobugz thanks for your code. its working fine with my application. it will be great if you clear me why the index is 0 a ...Show All

  • SQL Server Stored Procedure : Create Table with parameter ?

    first of all hi all, my problem is, i want to create a table which name from my parameter what should i do here my code CREATE PROCEDURE ProcedureName -- Add the parameters for the stored procedure here @ype nvarchar ( 15 ) AS BEGIN SET NOCOUNT ON ; CREATE TABLE [dbo] . [@ype] ( [TeklifEM] [bigint] NOT NULL, [Cinsi] [nvarchar] ( 50 ) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, [Adet] [int] NULL, [Birim] [nchar] ( 10 ) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, [BirimFiyat] [money] NULL, [ToplamFiyat] [money] NULL, [TeklifId] [bigint] NULL, CONSTRAINT [PK_ype] PRIMARY KEY CLUSTERED ( [TeklifEM] ASC ) WITH ( IGNORE_DUP_KEY = OFF ) ON [PRIM ...Show All

  • Windows Search Technologies OneNote 2007 Beta

    I have Office 2007 B2TR installed. I recently installed OneNote 2007 B2TR and every time I open OneNote 2007 it crashes. I have tried this on multiple computers and I get the same result. Would you please let me know what I can try to do to make it work or where I should look for more informaton Thank you. This may be a bit weird, but, I am a first year law student and I my computer recently crashed.  In recovering my hard drive, my MIS dept was unable to recover any of my applications, to include the OneNote Beta version that I have been using since August to take class notes.  I am hoping that anyone who has the beta version would be willing to take my file and convert it it .wrd or .pdf fo ...Show All

  • Visual Basic Adding an item in Combox From another Form.

    Hello, I have 2 Forms in my project.. The first form has a Button and a Combobox. The Second form has a Button called Add. So whenever i click the first button on Form1...I call the second form to show. Dim obj As New form2() obj.ShowDialog() Now when i click the Second Form it shud add a item to the Combobox in Form 1. Dim obj2 As New Form1() obj2.ComboBox1.Items.Add("Hello") But here is the problem nothing happens ... i wonder why ... am i missing something... i new to VB.net.. please help Try the following code for your button on form2: Form1.ComboBox.Items.add("Hello") This should add the text to the combo box ...Show All

  • SQL Server Should I use indexes?

    I have a very large table (about 200,000 records), but there are only 2 fields in the table only one populated with data. I need to update the 2nd field with the first field's data. UPDATE Table1 SET field2 = field1 This is taking a really long time to run about 3.5 minutes. Is this normal Can I create an index What can I do to shorten the run time Thanks, Ninel I just can't help but asking what the point is to duplicate column1 into column2 ..unless this is just a simplified description of another 'real' requirement.. just curious =;o) /Kenneth ...Show All

  • Microsoft ISV Community Center Forums Making the templated document the active document

    I have a form which pulls various bits of data from a SQL Server database. Depending on the selections made the ok click adds a certain template (letter, fax etc). If I have no other documents open this is fine, but as soon as I have, once the template bookmarks have been populated, the focus returns to the previous active document. I have tried mydocument.activate with no joy. I am fairly new to VBA, so I may well be missing something very obvious. Any advices greatly received. Many thanks. Ed Impossible to venture a guess without seeing the code and knowing the version of Word involved. <<I have a form which pulls various bits of data from a SQL Server database. Depending on the selectio ...Show All

  • Visual Studio Express Editions Visual Web Dev 2005 Express hangs during uninstall

    I'm trying to uninstall Visual Web Dev 2005 Express Edition via Add/Remove Programs, but it hangs at a given point, been stuck for over an hour. Looking at file d d_vserror80.txt, I see this: [07/05/06,09:19:19] setup.exe: [2] ISetupComponent::Pre/Post/Install() failed in ISetupManager::InstallManagerHelper() with HRESULT -2147023258. [07/05/06,09:19:19] setup.exe: [2] Component error string not specified in ISetupManager::AddToActionResultCollection() [07/05/06,09:19:21] ExpressUI: [2] DepCheck indicates Microsoft Visual Web Developer 2005 Express Edition - ENU is not installed. I have installed on my Win2k3 machine (according to Add/Control Programs): Visual C# 2005 Express Edition - ENU Visual ...Show All

  • Visual Studio Express Editions Selecting the three largest variables from a group of ten

    I need to select the three largest variables from a group of ten, however I need to do it without a hundred ifs, also I need the variables, and not the values. Is there an easy way to do this that I am perhaps missing If so could someone please enlighten me Thanks. here's what i had in mind when i replied to this post... You must use an array or it won't work.  Place each value in the array in order of the item.  The item is the index.  You will not sort the array so the index will still correspond to the value. 1- Create 3 variables named high1, high2 and high3.  Initialize each one to 0. 2- Inside a For loop, compare the value of high1 with the value of each of the array values. 3- If the array val ...Show All

  • SharePoint Products and Technologies Image displayed based on content type

    This is what I want to do and I want to know the best way to do it. I have defined a custom list A with six custom content types. I want to be able to link that list based on its content type with another list B that contains 2 fields (content type name and the url to an image of the content type). I do not want to have to select the image when creating the list item in list A because I have already selected to create an item of that specific content type. Additionally I do not really want the image url stored in the list A list item because I want the ability to change the url to the image for the item and then the view will change for all the items of that content type. Further I would like to be able to add another content type for list ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Impossible to deploy Managed DirectX Application

    I've developed a DirectX 9 app. using dec 2006 update and so far, I've been unable to deploy it to a second machine. This is a windowed app. created with managed DirectX and C# in VS.NET 2003. These are the steps I've followed trying to deploy it: * Make sure that the framework (v1.1 is installed). * Install the redist Directx that came with my installation of the SDK on the target PC (WinXP Pro SP2). * Make sure that DirectX3D is supported and enabled using dxdiag. * Create a deployment project in VS.NET, that automatically includes the following dependencies: Microsoft.DirectX.dll, Microsoft.DirectX,Direct3D.dll, Microsoft.DirectX.Direct3DX.dll. * Install the setup project on the target PC. Results: I just get th ...Show All

  • Visual Studio Express Editions Making a textbox into an array and reading from each point in the array

    I'm trying to build a name generator, that takes a letter from one point in an array, (Which originally comes from a textbox), and changes that letter to some other character. So for instance, if i put the name "Sam" in textbox one and clicked the "Generate" button, the out put, (Which has random keyboard typings of each letter, like S as "Ess" or "$") would go to textbox 2. So basically i want to build a name generator for The "Leet" or "L33t" Language. What i need to know is: 1.How to assign the Data of Textbox1 to a String array 2. How to read from each point in this array and 3. How to set the output to go to a certain point in an array for textbox2. Any help would be greatly ...Show All

  • Visual C# What is with all of the files for a simple program?

    I posted this in the IDE section but got no reply so I am trying it here. I am just learning C# and made a solution for a command line program. I would like to know what the heck all of these output files are for and can I somehow force them not to make subdirectories. I was able to remove the bin directory but not the obj\Debug etc. directory. Also don't understand the Test.vshost.exe file and the duplicated Test.exe and Test.pdb files. \---Test | Test.sln | \---Test | Program.cs - Main Program | Test.csproj - Project | +---bin | \---Debug | Test.exe - Executable | Test.pdb - program database for debugging | Test.vshost.exe - WHAT IS THIS FOR | +---obj | | Test. ...Show All

  • SQL Server Top 10 with ties

    I have the following tale that appears like this: IMAGE Its show the top 10 company, with the top 5 sub companies underneath in a table where I use the filter TOPN = 10 . My problem comes in when I have two company that exist in the top 10 with the same value, in this case $0.00 it shows more than 10. I understand that using the top = 10 in sql reporting services is suppose to function like this, but want to only show 10. My SP looks like this: SELECT SicDescription, ISNULL(Company, 'OTHER') AS Company, AccountMV, AccountFeely,sicid,relationshipid as 'rnumber' from snapsraw WHERE (Branchstate = @state) AND sicdescription is not null AND (monthend = @date) Any help would be greatly appreciated, I heard of some people saying use the ...Show All

©2008 Software Development Network