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 Chriss Miller 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: bbartlin
  • Content: Threads
  • Order by date
  1. bbartlin

    How to make website viewable to web

    HI. I have a website with a webservice that I cant get to be viewed from any computer other than the IIS server it resides on. A few things I have done... Added a host header Added a (A)Name in DNS Configured my wireless router to push any calls to the correct port to my computers ip address...
  2. bbartlin

    making web service available to internet

    I have created an empty website and added a webservice. I can use the webservice correctly on the server it was created on, however, I need to be able to hit it from other servers (not in a network). How do I make it available to the internet? I've published the website in VS.Net2005. I'm...
  3. bbartlin

    display web based email in web app

    i would like to display web based email inside of a web app that i have built. Are there any web parts or dlls that would allow me to expose hotmail or yahoo account emails in my own page?
  4. bbartlin

    datagrid empty

    Can anyone tell me why my datagrid has no rows? The query is definitely bringing back data because I can MsgBox the rst!field1 SQL = "SELECT field1, field2 FROM table" With rst .CursorLocation = adUseClient .Open SQL, cn, adOpenStatic, adLockBatchOptimistic Set...
  5. bbartlin

    call web.config something else

    Can you call web.config something else within an asp.net application. We need to keep two asp.net applications in the same deployment directory, but need to have seperate web.config files for each. I dont see anywhere where you can change the name of web.config when creating the application.
  6. bbartlin

    .csv first line skipped

    I am reading in a .csv in C#. I don't have headers, so I need to read the first line. I say HDR=NO in the connection string and it still skips the first line. Any ideas on what I'm doing wrong? Here is my connection string... string strConnString = "Driver={Microsoft Text Driver (*.txt...
  7. bbartlin

    Receive Function status

    Does anyone know how you can programmatically check if a receive function is enabled? I’m using C#.
  8. bbartlin

    File or assembly name not found

    I'm getting an error..."File or assembly name DllName, or one of its dependencies, was not found." I don't get this when I run the C# app in VisualStudio.net. I only get it when I install the .msi and run the exe. Any ideas?
  9. bbartlin

    remote sql connection

    I have a connection string in an app that will be installed on a server that doesn't have sql server. It needs to connect to another machine in the domain. Is there a way to do this? Is there a remote server paramater or something to use with the ConnectionString? Any help will be...
  10. bbartlin

    Checkbox in Datagrid not staying unchecked

    I have a datagrid with a simple dataGridBoolColumn that I set up in the grids DataGridColumnStyle Collection Editor. When I run the app, all the checkboxes are checked as they should be (all the data in the table is set to 1 which is the True value). When I uncheck a box and move focus to the...
  11. bbartlin

    SQL Stored Procedures within a .NET build

    I have a C# program that uses the following code to compile stored procedures for later use. private void createproc(string spName, System.Data.SqlClient.SqlConnection dataConnection) { SqlCommand dataCommand = new SqlCommand(); dataCommand.Connection = dataConnection; string FILE_NAME =...

Part and Inventory Search

Back
Top