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 strongm 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: *

  1. alex5935

    numbers driving me mad

    you can try cdouble(val) or cint(val) I am not so sure, but it is might work.
  2. alex5935

    LINK NOT WORKING

    try with no quotes
  3. alex5935

    how to bring save as dialog box in asp.net

    Hello is anyone know how to bring a save file as dialog box in ASP.net?
  4. alex5935

    includes

    Hello everyone! Is anyone know a way to search whether one include contain the other include.
  5. alex5935

    Add Delete Select logic in a Repeater

    I am not sure if that what you need but you can possibly add delete button to repeater like this <ItemTemplate> <tr><td><%# DataBinder.Eval(Container.DataItem, "Model") %></td><td><asp:Button Text="push" CommandArgument='<%#DataBinder.Eval(Container.DataItem, "ID") %>'...
  6. alex5935

    RDLC parameter passing

    I am adding parameter to my report in the design view and at the run time I am setting it's value code below: paramList.Add( new ReportParameter("ReportYear", "2003", false)); this.reportViewer1.ServerReport.SetParameters(paramList); //...
  7. alex5935

    Form_load event issue

    I am new to windows forms and trying to use form_load event. See code bellow. private void Form1_Load(Object sender, System.EventArgs e) { MessageBox.Show("TEST"); } When the window's form is showing up, nothing is happening. I would appreciate your suggestions.
  8. alex5935

    Use Microsoft reports inside visual studio express

    I am trying create rdlc reports microsoft reports in Visual Studio Express and can't find any templates when going to add new item. Any suggestions appreciate.
  9. alex5935

    Help with Query in ASP

    I am not sure if you have to do all in one join query, but you can get desired output with two query and two loops. sql="Select * from PU_TEAMS" rs.execute(sql) do while not rs.eof 'set teamid pu_teamsid=rs("id") print Team Name print Description sql="select * from Contacts where...
  10. alex5935

    ADO recordset asp

    Thanks, I used this in the past. I have decided to get all the variables from the recordset in the asp variables like this name=rs("name") lname=rs("lname") this will avoid error since I will not have to access it through rs object of ADO
  11. alex5935

    ADO recordset asp

    query="Select firstname, lastname from users" ' if I am assigning lastname before firstname error will be 'produce and no data will be assigned lastname=rs("lastname") fistname=rs("fistname") I don't have an exact source code now will get it later thanks
  12. alex5935

    Connecting to sql server 2005 DB through asp

    set cnn = server.createobject("ADODB.Connection") cnn.open "Provider=SQLOLEDB; Data Source=mydb/sqlexpress;UID=;PWD=;DATABASE= " set comm=server.createobject("ADODB.Command") This works for me.
  13. alex5935

    ADO recordset asp

    I am having an issue with data access through the record set. When I am getting value from execution of the sql query with asp execute statement. The order of the selected data columns in the query is matters. For example if my query “select firstname, lastname from users”, and I will try...

Part and Inventory Search

Back
Top