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 bkrike 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. DotNetBlocks

    Cookies and Web Service

    Is this even possible? I am trying to create a web service that will allow interaction with our classic asp and asp.net applications. This service will act as an access point for reading and setting cookies that will be shared between the applications. I have tried using HTTPContext from...
  2. DotNetBlocks

    Problem reading ASP.net cookie

    Hello, Does anyone have a javascript example of reading a subcookie created in asp.net? Here is how I am creating my cookie. Dim Cookie As New HttpCookie("temp") Cookie.Values.Add("Name","Value") Page.Response.Cookies.Add(Cookie) Babloome Personal Blog...
  3. DotNetBlocks

    Problem Printing to network printer via VB 2005

    Hello, Does anyone have an example of specifying the paper source and color settings when trying to print files in vb 2005? Here is my current print function, but I need to be able to select the paper source and color settings. Any help is much appreciated. Babloome Dim pathToExecutable...
  4. DotNetBlocks

    Problem with switch statment

    Hello, I am new to C#, but I have exp in VB.net. I am having an issue with a case/switch statment in C#, and can not seem to figure out why. Every case statment receives the following error: "A constant value is expected" Shouldn't this always resolve to True or False? (determine < 0) = T...
  5. DotNetBlocks

    Creating dns records and binding in VB.net

    Hello, Does anyone have an example of creating a dns record and binding it in Microsoft DNS? Babloome
  6. DotNetBlocks

    Is VB.net on the decline?

    Hello, I have been noticing that the demand for VB.net has been on a decline lately. Is anyone else experiencing this as well? From what I have seen all the new jobs require C#. Babloome
  7. DotNetBlocks

    SQL Express 2005 Database Connection Problem

    Hello, I am new to sqlexpress 2005, and i am having a connection problem when i upload my database file to my web host. My connection works fine locally on all of my asp/vb.net pages. Where am i going wrong? I am using VS 2005. My connection string: Dim con As String = "Data...
  8. DotNetBlocks

    Problems receiving email from Gmail

    Has any one seen these errors before. I can not find any information to solve them. The messages are what gmail sends back to users when they email us. Technical details of temporary failure: TEMP_FAILURE: SMTP Error (state 13): 451 Could not load DRD for domain (dentalplans.com) rcpt...
  9. DotNetBlocks

    Problem with transaction Logging and Inserts

    Hello, I am having a problem inserting data in to a shared hosting MS SQL becuase of space. When ever i try and import data from my local machine to the hosted SQL server the transaction logs get so full that they kill my space before my import has completed. Is there any way i can turn off...
  10. DotNetBlocks

    Temp Table Indexs

    Is it possible to add an index to a temp table? Here is my query: select id, name from #tmpNetworks where id = 28 and netplan=33 I would like to put an index on id and netplan. Thanks
  11. DotNetBlocks

    Problem with Identiy Sort Query

    Hello, How can i add an identity colum to a query so that it will be related to the sort order? Example: select * from tempTable order by feild1 desc, feild1
  12. DotNetBlocks

    Problems with Script Engine Exception

    Hello, Within the last 30 days we started geting the error listed below on our windows 2003 server. As far as i know nothing has been changed on the server and when i restart the box, it comes back fine. The files that we do have are really, really basic, as well. Application Event Log Error...
  13. DotNetBlocks

    HttpContext.Current.RewritePath 404 Error

    Hello, I am realy stuck. I am having a problem with the HttpContext.Current.RewritePath in "Global_BeginRequest". When i try and call a file i always get a 404, but i know thefile is there becuse if i switch to server.tranfer or response.redirect it works perfectly. Plus my path is relative to...
  14. DotNetBlocks

    Excel and VB.net

    Hello, Is there a way to create an excel file on the fly, with macros dynamicly created based on criteria? Thanks, Babloome
  15. DotNetBlocks

    multiple select problem

    Hello, I am still a beginner a javascript. What event do i use if a user selects more than one item in a dropdown list or combo box? I tried onchange and it did not work for the multiple select, but it does work for the single select. I am using IE on XP Pro. Thanks Babloome
  16. DotNetBlocks

    Good Newbie site

    Hello, is there any good newbie sites for some one to start learning ruby? Babloome
  17. DotNetBlocks

    Randomizing datarow location when merging datatables

    Hello, How can I merge 3 data.datatables so that all the datarows are mixed up together? Example: table 1 tr1 tr2 tr3 tr4 tr5 table2 te1 te2 te3 te4 te5 table 3 tb1 tb2 tb3 tb4 Result: ---------- merged table te5 tb1 tr3 tr5 te2 tb4 tb3 tr1 te3 te1 tb2 tr2 tr4 tb3 tb5 Babloome
  18. DotNetBlocks

    Ado.net Excel locking problem

    Hello, I am having a problem with ado.net and excel. When an upate is run, it executes fine, but i the actual updates do not take place untill i recompile the project. Plus, if i try an open the file again to do a select statment, it will not open. Does any one have hany sugestions? 'VS...
  19. DotNetBlocks

    Vb.net ScreenDocking

    Hello, How can i set an exe so that it is perminaly docked at the top of the screen and can never be hidden. I am trying to do some thing like a news ticker in vb.net 2005.
  20. DotNetBlocks

    datasets and datagrid

    Is it possible to bind a dataset with multiple tables to datagrid and bind controls to diffent tables within the dataset? I am using vs 2003.

Part and Inventory Search

Back
Top