Search results for query: *

  • Users: RPBLEA
  • Content: Threads
  • Order by date
  1. R

    Incorporating NEt Send INto VB

    OKay I'm having some problems here, I'm trying to create a visual interface for Net Send, I'm using it in house for a small company, very small, But I wanted to incorporate the features of it, instead of building some type of socket instant Messenger, Now I'm able to send messages via the user...
  2. R

    Datalist

    I'm having trouble loading data into a Data LIst, I've never done it before and have no idea how to do it, I'm thinking it is very similiar to a DataGrid, Can someone take a look at my code and see what's wrong? Stored Procedure CREATE procedure dbo.searchtest @searchword as varchar(15)...
  3. R

    Help with list box

    Is it possible when working with ASP, to read data into a list box via a stored procedure, and list an entire row of the dataabase? I have created a search field which is a text in asp I have created a button which calls on the search field and reads from a stored procedure, The List box...
  4. R

    Help With Button Click

    Okay I got it set to when a button is Link button is clicked, A Datagrid Visibility is set to True, Then I have the Text on the button change to Hide Datagrid How do I set an if statement up or somehow set it up so that when it's clicked the first time, the datagrid is set to true, and the...
  5. R

    User Logon Information - Tough Question requires whiz

    I'm running a database that records cable information on a major network. I'm running a gui interface in the .net aspx web form, I'm running the page in aspx and was wondering is it possible to record the user logon name that is accessing and making changes to the gui interface through aspx...
  6. R

    How do I log Ips?

    IN asp I would I am attempting to Log an IP address and then write it to a database table? I now the element to call the IP is Request.ServerVariables("REMOTE_ADDR") but how do I initiate this and convert it to a string variable or someone read this into a database table, Anyone have any ideas?
  7. R

    Help With Paging

    I have a datagrid, Now How Do I get the paging to work I'm reading it in from a database, I've set the default property on the paging, But no numbers or buttons will show up to change pages, ANy Help Here's what I have to show you what kind of code i've implemented PrivateSub Page_Load(ByVal...
  8. R

    Data Log Need some Ideas

    Okay I have one submit form, I think i'm going to have a stored procedure call what changes I have made in that form Then I want to call that table into another form and present that data in a a record log state fashion Can this be done another way easier way, how do i Get the Date, and...
  9. R

    Trouble With DataGrid

    I have this data Grid Set Up but It doesn't scroll through the database? I 've been looking through tutorials and it seems that it is the right code? Can someone see if they see a problem, Cause I cant and their is Private Sub Page_Load(ByVal sender As System.Object, ByVal e As...
  10. R

    Saving to a Database

    I kno wyou can use DataREaderAdapter Which I have been to read data, now what's the deal with Saving Data? txtnotes.Text = reader.GetString(12) Can you use the dataReader to save data also?
  11. R

    Is it possible to add to a parameter?

    OKay I have this stored procedure which looks like this CREATE procedure dbo.tenrows @tenrows as int as SELECT * FROM pairs WHERE (orderkey < @tenrows) GO Now I want @tenrows to equal 10, But I was thinking I could do this somehow in .Net, For example a command button in...
  12. R

    Save Button?

    OKay I have a save button, I have input from text boxes and read from a database in An ASPx Page, I'm runnin the .NEt Package, How Do I create a save button, Via STored Procedures or can I just run code from sql inside the button, I'm new at this and do not know how to do it, Can anyone piece...
  13. R

    Seriously stuck in Asp Guys, HELP me

    Okay I set up a the SQL connection SQL Adapter, and DataSet, But I can't get anything from my data to show up in my ASP page, This is what I have trying to get data to show up in a text field or at least label but just gives me erros, Can anyone, Help , T his is what IH ave in the page load...
  14. R

    Help with accessing database?

    OKay I want to read the database into some text boxes, each row going into a different text box, Can' t figure out how to do this for the life of me, Here's some t hing that I found on google but am having no luck what so ever, beeen stuck on it for 3 hours now, any Input appreciated, thanks...
  15. R

    Help with search button

    I'm writing some code in Vb.net I'm using aspx and I have a button the webpage called next and back, How Do I search through the database, I haven't found any code googling and have no clue how to search through records, here is the piece of code where I read through the data. I need help with...
  16. R

    Question About Access and SQL

    Okay I need some help on where to start, I need to create a program that reads a table from Microsoft Access and then Convert it into SQL syntax, I need to display it in a VB.net form the verify the tables in access and then send it to a brand new SQL database, Can anyone recommend any great...
Back
Top