Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #4K
~28.7K People Reached
Member Avatar for Yogesh Sharma

I m new to the MS Access, I m prone to the SQL Server Only. Can u plz explain the difference b/w[B][COLOR="Red"] Datasheet View & Design View[/COLOR][/B]. I have some idea,pls check it whether me right pr wrong. In design view,we have to specify by own datatypes & column names. …

Member Avatar for hihihihi
0
18K
Member Avatar for Yogesh Sharma

hey frnds, Firstly I pick the records from the databse into the DataGridView, Then I want that If we made changes to the records in the GridView & Click on Update Button, Changes are Reflected into the Datbase .Plz do reply back the ..

Member Avatar for Venkatesh_6
0
6K
Member Avatar for Yogesh Sharma

Hey frns I want to record the time that the application takes. I want that when i click on Start Button in label time starts from 00:00:00, & when we click on cancel button time resets to zero. I include system.diagnostics.stopwatch I just know start,stop & Reset methods are there.But …

Member Avatar for Naushad Malik
0
125
Member Avatar for Yogesh Sharma

Can Somebody plz tell me how to give the form ,a footer & header. I want to write in Heaer-REPORT FIRST But i m not getting how to type the text in Header & Footer, plz reply. Bydefault the user is able to resize the form,I also want that the …

Member Avatar for boblarson
1
146
Member Avatar for sonia sardana

Creating a Class Library -------------------------------------------------------------------------------- 1) Choose File NewProject 2) Select ClassLibrary from the project templetes. 3) Suppose I rename it to ClassLibrary. 4) Add Code inside the block code. I write Public Class assembly Public Function add(ByVal x As Integer, ByVal y As Integer) Return x + y End …

Member Avatar for henry032
-1
551
Member Avatar for Yogesh Sharma

I have two pictureBoxes & two Panels. On PictureBox1_Click, I want that Panel2 is Fadeout & Panel2 is Fadein. & on vice-versa on PictureBox2_Click. I write the foll. code-- But with that code form is also fade in & fade out. [code] Private Sub PictureBox1_Click(ByVal sender As System.Object, ByVal e …

0
80
Member Avatar for sonia sardana

I have two buttons Play & Full Screen. If u click on Play Button,Movie starts..Movie Starts within 15-20 Seconds.....When u clik on Full Screen Button.,Media Player is Maximised. I want the if the media player is maximised,& when we click on ESC Button, Media player is minimsed.......But I m nota …

Member Avatar for sonia sardana
0
463
Member Avatar for Yogesh Sharma

Hello frnds, i add the languages in combobox on form load,I want that suppose i select Hindi from the combobox, All the Projects text is converted to hindi...& so on. Can somebody help me,as i have no idea!!!!!!

0
63
Member Avatar for Yogesh Sharma

Suppose mine textfile contains the foll. records-- Sunday, July 13, 20086:29:55 PM^^1^^ritu Sunday, July 13, 20086:29:55 PM^^2^^ritu Sunday, July 13, 20086:29:55 PM^^3^^ritu Sunday, July 13, 20086:29:55 PM^^4^^ritu Sunday, July 13, 20086:29:55 PM^^5^^ritu Ion Form_Load,I want that in Combobox only date is picked. My code is as follows- Private Sub Form1_Load(ByVal …

Member Avatar for anoopkh
0
96
Member Avatar for Yogesh Sharma

hey frnds i want to know that how to add Textbox entry into the dataGridView. Suppose I have DataGridView with two Columns- First Column--name Second Column--marks. On the Form-- I have a Combobox ,Two Textboxes ,Button,Gridview. User select roll from combobox,Suppoes he Select Rol number 1 ,I want that on …

0
74
Member Avatar for Yogesh Sharma

Hey frnd tell me that in Vb to scan a registry we define our own function. In Vb.Net to scan a registry we define our own function or using the inbuilt function,it can also be done?? Plz give me some steps from where to start??????????? I m not getting it,how …

0
68
Member Avatar for Yogesh Sharma

I try the foll. code--- protected void Button1_Click(object sender, EventArgs e) { int i; for (i = 0; i <= ListBox1.Items.Count - 1; i++) { ListBox1.Items.Remove(ListBox1.SelectedValue.ToString()); } } But it's not working.

Member Avatar for Jx_Man
0
249
Member Avatar for Yogesh Sharma

I have three labels & three textboxes on the form, I bind the data to the textboxes using DATA FORM WIZARD & Binding Navigator to naviagte thru the records. Suppose if i do any changes, I also want to update in the database. I drag one button on the form …

Member Avatar for pillusaoji
0
83
Member Avatar for Yogesh Sharma

Hey frnds, I know about Ctype?? Please forward me what is Directcast,Cz i hace faced this question in Interview.Difference B/w the aboce two???/

Member Avatar for Jx_Man
0
314
Member Avatar for Yogesh Sharma

What is @@rowcount and with small code snippet explain the usage? Is the foll. code is rite-- Create procedure get_emp_count ( @emp_id int) As Select * from emp where emp_id =@emp_id If @@rowcount = 0 Begin Select 'no rows with emp_id= ' Select @emp_id End . Can u pls explain …

Member Avatar for rayofhope
0
128
Member Avatar for Yogesh Sharma

I know only three differneces. [B]1)[/B] ADO wroks on Connected architecture, while ADO.Net on DisConnected Architecture. [B]2)[/B]ADO is used to create Client Side Cursors while ADo.net create both client as well as server. [B]3)[/B]In ADO,data is converted before transmitted whike in ADO.Net no transformation takes place. IF FRNDS U KNOW …

0
77
Member Avatar for Yogesh Sharma

steps i Follow- 1) Go to Control panel-->Admintrative Tools-->Double -click Data sources(ODBC)-->click Add button-->I choose SQL server(last option), Is it right or wrong option for connecting to SQL 2000.Then a new screen appears Create a New dataSource-->in name textbox,we can write anyname--Right or wrong. suppose i enter sonia, & my …

Member Avatar for choudhuryshouvi
0
860
Member Avatar for Yogesh Sharma

In Vb we can connect to all the databases like SQL 2000/SQL 2005,Oracle,Access. Out of the given databses we can connect to which databases. Secondly,told me dat if I want to connect to SQL-any version(2000/2005), To connect to the database i go to Control Panel-->Admintrative Tools-->Data sources(ODBC)-->ODBC Data source Administrator …

Member Avatar for choudhuryshouvi
0
140
Member Avatar for Yogesh Sharma

[code=sql]CREATE TABLE Persons ( FirstName VARCHAR, [Last Name] Text, Gender int, [Date Of Birth] DateTime, MaritalStatus Integer, IsMarried Bit, PersonalIncome Money, HouseholdIncome Currency );[/code] Can u plz tell me where I have to write this Query in MS-Access to craete the Table.

Member Avatar for jenny@okcinvest
0
98
Member Avatar for Yogesh Sharma

[B]FIRST EXAMPLE--[/B]CREATE FUNCTION dbo.myFunction() RETURNS INT AS BEGIN DECLARE @myInt INT SET @myInt = 1 RETURN @myInt END select dbo.myFunction() as 'Simple Number' This Function is not returning any value,Error is coming [B]Cannot find either column "dbo" or the user-defined function or aggregate "dbo.myFunction", or the name is ambiguous.[/B] [B][COLOR="Red"] …

Member Avatar for Yogesh Sharma
0
139
Member Avatar for clueless101

I am to create a form with 2 text boxes to receive numbers as input and 1 command button that displays a message box containing the larger of the two numbers. To do so, I need to write code in the Click event of the command to call a user-defined …

Member Avatar for Yogesh Sharma
0
118
Member Avatar for Yogesh Sharma

HI, I have made a menu with two menu Items Colors Size. Colors will further have the submenu Items--> FillColor Exit FillColor will further have-->Red,Green,Blue Size --> Small , Large If i write the foll. code--> [B]Private Sub Form_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single) …

Member Avatar for choudhuryshouvi
0
195
Member Avatar for Yogesh Sharma

Is Debug Window same as Code Window?? Code window--where we write the code. Debug window--????

Member Avatar for cometburn
0
87
Member Avatar for Yogesh Sharma

I know how to connect to crystal Report Feature in Vb.net? Is there cryatal Report Feature in ASP.net also? If yes,steps are the sane as in Vb.net? If not, Plz Send me the step by step Procedure.

0
60