Search results for query: *

  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

    Help with list box

    I don't understand how to concatenate in these fields i'm working with, I have a list box and would like to add multiple data to the field instead of the columns field below, I'll list the code, where would I concatenate? This loads the Data List when the button search is clicked Sub...
  3. R

    Help with list box

    How to concatenate So by concatenating, I looked this up :) I'm an idiot just using the & ?
  4. 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)...
  5. R

    Help with list box

    Well I'm not sure that I can use a listview because I am working in asp, but I'm thinking about a Datalist but I have never used one before, when i'm going to concatenate, Am I going to do that in a stored procedure or in .net itself?
  6. 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...
  7. 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...
  8. R

    Help with search button

    that's what I had before except for the while loop, Thanks anyway! like the input
  9. R

    Help with search button

    not reason a way
  10. R

    Help with search button

    can you think if any reason to pass a value to these index's if their null when being read iN?
  11. R

    Help with search button

    I think when it calls from the database, the reader.GetSTring(index) cannot be null, think this is where the error is coming from
  12. R

    Help with search button

    okay yes I see it , Morning time and My brains a little slow, But I still get this error? Data is Null. This method or property cannot be called on Null values, Which to me doesn't make sense because it should work based on the code!
  13. R

    Help with search button

    with the statement you provided it gives me some hints to some new coding, but I want to read in the current data, and if it is null then change it to "", not just set all the data to "" right away, Is there a way to do this?
  14. R

    Help with search button

    I used this to search, Is there an easier way to check if there are nulls to change them to a value in a database cause I used the long if statement way? CREATE PROCEDURE dbo.cablepair @cablepair int AS select * from pairs where cablepair = @cablepair GO lbltest.Text = "" Dim conn As New...
  15. R

    Help With Paging

    Figured this one out, I kept on allowing for custom paging and just needed to set allowpaging to true, Allow paging needed to be true,
  16. R

    Saving to a Database

    I created a Stored Procedure to save data, and wrote the comand in aspx here is some code so people can look at it, Maybe you could improve upon it. It works though whathappened = "Data was Saved" Dim conn As New SqlConnection(ConfigurationSettings.AppSettings("strDBConn")) Try conn.Open()...
  17. R

    How do I log Ips?

    I figured this one out, thanks Though Dim myTime Dim myDate Dim struser Dim strIP Dim whathappened As String myTime = DateTime.Now.AddSeconds(15).ToString("hh:mm:ss") myDate = DateTime.Today.Date.ToShortDateString strIP = Request.ServerVariables("REMOTE_HOST") struser =...
  18. R

    Datagrid Paging

    Hey Kim how did you get your datagrid to page, Cause I am stuck here with mine, I have a previous question in the forum to ask for help but no one is supplying any help, Can you Show me some code to how you got your paging to work??
  19. 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...
  20. 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?
Back
Top