Search results for query: *

  1. vks.gautam1

    required field validator and drop down list problem

    1) required field validator-- Im using this control on my page to submit data & no textbox should be blank..It's working.. But the problem is now that when i want to "search" a content and it needs only one textbox field to be filled but now it's gives message not to keep blank other text...
  2. vks.gautam1

    Question Ms access query

    I have two tables. A) Test1 B) USSD_MASTER Field in Test1 a) Mob b) Name Field in USSD_MASTER a) Mob b) date c) Name Test1 table have unique values. But USSD_MASTER table have many duplicate values.. now when i am making queries it is giving many duplicate values. " select distinct...
  3. vks.gautam1

    Crystal Report 11...how to?

    Well i downloaded crystal report separately fron vb.net. well now i am right clicking on my project & not getting option of crystal report to add in project
  4. vks.gautam1

    Background Image in ASP.NET

    in HTML there is Background in body tag to set picture in entire body of Document. <body background=.........> Now how can do i this in ASP.NET 2
  5. vks.gautam1

    Data saved in database through oledbcommand problem

    cmd = New OleDbCommand("insert into userinfo(FirstName,LastName,UserName,Password,SequrityQuestion,Answer,Address) values(@FirstName,@LastName,@username,@password,@SequrityQuestion,@Answer,@Address)", cn) With cmd.Parameters .Add("@FirstName", OleDbType.VarChar).Value...
  6. vks.gautam1

    Import data from Text file to Msaccess Database

    Here im import data from Text file to Msaccess Database. Data structure in Notepad is 22-Jan-09|919876165328|9878216613| im storing this data in string & then split that & store to a array variable. if i give cmd parameter " .Add("@Date", OleDbType.date).Value = data(0)" then this give...
  7. vks.gautam1

    Add Data from Listbox to dataTable

    i want to send data from list box to datagridview. so first i tried to fill dataTable.then add that to dataset. then add data to datagridview. Is this right way It is giving error=column required valid data type Dim ds As New DataSet dim i as integer Dim table As New...
  8. vks.gautam1

    Source code or Design View

    What i want to know. Which is best way to do work in Asp.Net. Example---Should i create TextBox in source code or put it from toolbox to page in design view.:)
  9. vks.gautam1

    How to create Stored procedure in Ms Access

    This Stored procedure is created in sql Server. I want to create Stored procedure in Ms Access. How to do it. Should i write stored procedure in Query in msaccess same as this. I tried but it not worked. Create procedure[dbo].[Proc_Export] @empid varchar(5) as select * from emp where...
  10. vks.gautam1

    Relation between Data Tables

    Here i have two Tables --- " Mef_Info " , "Mef_Detail. Pack_no is same field in both tables i fill both the tables in Datatables. & want to fill datagridview. but it is not working. But getting this error- contactswitchdeadlock was detected. " The CLR has been unable to transition from COM...
  11. vks.gautam1

    Double dimensional array in class

    Double dimensional array in class -------------------------------------------------------------------------------- Here i want to that user enter marks of 2 students. I want to show the sum of marks of both the students seperately in list box. Form on button click Public Class frmSum...
  12. vks.gautam1

    Radio Buttion

    im using 3Radio Buttons on a form. Wt i want if user doesn't select any of radio button.It will give message & exit from code. If Not Rb1.Checked Or Rb2.Checked Or Rb3.Checked Then MsgBox("Pls select One Cluster ") Exit Sub End If is there any other way to exit...
  13. vks.gautam1

    Join two tables

    Select jal.* from jal inner join ussd_master on jal.mob_no=ussd_master.mob_no where ussd_master.act_date> #10/1/2008 #; Here i got result where mobile numbers which are activated after 10/1/2008 (mm,dd,yyyy) . How can i write a query where i get number which are in this given result. One...
  14. vks.gautam1

    Query Help

    Im Using vb.net & msacces. wt i want to upload data in Datgridview. But not latest. select * from Table name where KtDate<Date KTDT is column name contaning diffrent dates How can i select that data which is two months back of current date. i tried this also select * from tablename where...
  15. vks.gautam1

    Database connectivity

    VB.NET As im trying to connect msaccess database which have a password This my oledbconnection DIM cn as oledbconnection cn=new oledbconnection("provider=microsoft.jet.oledb.4.0;data source=Path of file ;User Id=Admin;Password=Password of your database;") when im trying to search it is...
  16. vks.gautam1

    Auto Number in Text Box.

    I am making a project in which if emp 001 issaved .after this EMP ID textbox should display 002 automatically . i think first i have to make connection with sql server database & then with table store in Dataset. after that wt should i do. Pls explain me in detail. How can do this in vb.net 2005
  17. vks.gautam1

    Search text in database

    I am developing a VB project in which i want to search a value .& a text In database i set Mobile_no Field Text property . now i want to search a no. select * from table_name where mobile_no= ' " & textbox1.text & " ' But im not finding no. i want to search a string in SQL SERVER 2005...
  18. vks.gautam1

    Sql statement problem

    I am developing a VB project in which i want to search a value .& a text In database i set Mobile_no Field Text property . now i want to search a no. select * from table_name where mobile_no= ' " & textbox1.text & " ' But im not finding no. Second i want to search a string how to write a...
  19. vks.gautam1

    Export data to Excel

    How can we export data to excel ?
  20. vks.gautam1

    Text Box Event Problem

    :) sub Textbox1_keypress() if char.isletter(e.keychar) then msgbox("You Must Enter Numeric values ") e.handled=True end if end sub Text Box will accept only Numeric values due to if condition & keypress event. What is this.? e.keychar & e.handled=True Pls describe in Simple Manner
Back
Top