Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MikeeOK on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: choudhmh
  • Content: Threads
  • Order by date
  1. choudhmh

    SQL Select Problem

    Hi Guys I have two table tblTelephoneCallPlans which has fileds TelephoneCallPlansID, TelephoneSuppliersID and TelephoneCallPlanName. tblTelephoneSuppliers has fields tblTelephoneSuppliersID and TelephoneSupplierName. I'm trying to us the select procedure to select the the...
  2. choudhmh

    open a pop up window from a datagrid

    Hi Guys, Using the script below i'm trying to open a pop up window: <asp:TemplateColumn> <ItemTemplate> <a id="description" target="_newwindow" href="<%# "details.aspx?bcstid=" & DataBinder.Eval(Container.DataItem, "BoilerCoverSupplierTariffID") %>"> Full Description </a> </ItemTemplate>...
  3. choudhmh

    Open a pop-up window

    Hi Guys, Using the script below i'm trying to open a pop up window: <asp:TemplateColumn> <ItemTemplate> <a id="description" target="_newwindow" href="<%# "details.aspx?bcstid=" & DataBinder.Eval(Container.DataItem, "BoilerCoverSupplierTariffID") %>"> Full Description </a>...
  4. choudhmh

    Validation

    Hi Guys, I have this textBox encryption field which is related to the database. The database shows only interger should be inptted on that textbox. How would i write an asp.net validation script, so only intergers are entered and if alphabetc text or alphanumeric text are entered it shows an...
  5. choudhmh

    spliting address

    I have develop ths script where it fills addresses up. function FillAddress(Address, type) { //debugger ; if ( Address == '0' || Address == 'none' ) { if (type=='bill') { document.frmAddressDetails.txtbilladdress1.value = ''...
  6. choudhmh

    Programme a back button

    A web browser with a back button neesd to be inserted. I've added the back button, but now when a redirect the button, i want all the values that was inserted in the form to retrive. At the moment it redirecty to the last browser, but none of the values which were inserted on the form satys. The...
  7. choudhmh

    Retrive data from the database on to a web page

    Iam doing a bit of database testing. I have four web pages, the first three web pages by a click of a button stores values from the form to the database and redirect the page to the next page. On the fouth page i want to retrive some of the data onto the forms which has been stored in the...
  8. choudhmh

    Re-write a code

    Hi Guys, I have this varaiable where it displays a set of record as stated from a web config file. The web configf file states the maximun record it could display. I want to show all the result on that page instead of limiting it. This is how it is declared in the aspx page: Dim...
  9. choudhmh

    Passing Data between two forms

    I have two forms, in both forms there are a listView panel. In the first panel data on the listView are retrive via openFolderBrowser dialogue using a button attribute. All the files are shown on that listView through this action. Now i want to pass the value (all the files ) from listView Form1...
  10. choudhmh

    Organizing Text in listView

    I have this listView inside there through a click of a button openBrowser command takes place where it displays all the files from that browser into the listView panel. Now i need to organize the file inside the listView as the folder containes lots of files, they are spread all over the...
  11. choudhmh

    changing attributes of textBox

    Hi Guys, I have this textBox where its being used to insert password numbers. At present when someone tabs in any numbers on the fields the numbers can be visisble. I want when a user tabs a number in, instead of the numbers being visible i wnat the textBoxes to show this astrick (*), so no...
  12. choudhmh

    SQL Query

    i have two database table, from one table i am selecting all fields to be displayed on a form. From another database i'm trying to display just one field. Both database use delegation to relate to each other. Instead of writting another sql query out i was hoping will it be possible to merge the...
  13. choudhmh

    inserting images from database

    Hi experts, I am retriving information from the database, to this form. The form shows all the information from the database i request for. I have this field in the database where the values inserted are 1 and 0. Instead of retriving 1 and 0 to the form, i want to insert images. For value 1...
  14. choudhmh

    passing string values

    I have two forms, Form1 and Form2. In Form1 there are two textBoxes, when i enter data on the textBoxexand press enter, form2 opens. In form2 i have two label, i want the data from the textBoxex in form1 to show up in the labels in form2. Any idea how i would go about showing the values of the...
  15. choudhmh

    Opening another tabPage

    Hi Experts, I have two Forms, Form1 and Form2. In Form1 i have two textBoxes which i made public. From form2 iam trying to use the attributes of text from the texboxes to authenticate users through remote database and by a click of a button open another tabpage on from2. All the tabpages are on...
  16. choudhmh

    Calling an Event from Another Form

    Hello Experts! I have two form, form1 and form2. I'm trying to call an event from form1 into form2, but keep on getting an error. I've made that event from private to public in form1, but still it does not function. Also when the event is recognised by the comppiler, it should open an tabPage...

Part and Inventory Search

Back
Top