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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by humour

  1. humour

    inserting a null value via strongly typed dataset

    Mansii said -- Have you tried todoadapter.InsertIntoToDo( _ "aaa", _ "bbb", _ "NULL") ------------------------------ No I haven't as I just got a solution from another forum. The magic answer if your using VB.NET is: todoadapter.InsertIntoToDo( _ "aaa", _...
  2. humour

    inserting a null value via strongly typed dataset

    I know its out there.................. the answer - but I have tried and tried and tried to find it using seach and I cannot. Undboutedly someone will point me to the answer in another thread or FAQ. environment: VS 2005, Sql Server Express Language: vb.net I have a strongly typed dataset -...
  3. humour

    OLEDB Recursive code eventually drops relational service

    I forgot to mention I am using 9.6 client and engine.
  4. humour

    OLEDB Recursive code eventually drops relational service

    OLEDB Recursive code eventually drops relational service I think this is what is happening. I use vb.net If I use oledb continuously opening, closing, connecting and destroying the Connection object my app eventually stops working. It seems the relational service stops working. After the app...
  5. humour

    Calculate Soundex

    I searched google and found this: http://www.codeproject.com/cs/algorithms/soundex.asp Its an interesting article, all the code is included. It kind of disses the value of soundex but the code and article are well written nonetheless. Cudos to the author. I would never use it, I have...
  6. humour

    TabIndex on WebUI Panels

    I noticed that when I place a UserControl on a webform like so: <uc1:uCalendar ID="UCalendarIncidentDate" runat="server" /> The TabIndex property isn't available? Why? To get around this problem I have contained the uCalendar control - which is really 3 controls, a TextBox,Button, and the...
  7. humour

    Datagridview Strange Behavior

    Just a shot in the dark... but I often have control updating issues when I fail to have a line like this: Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'Put user code to initialize the page here If Not...
  8. humour

    System.Web.UI.Page passed into a class function

    Dear Newora.... I found the problem. The error: "Object reference not set to an instance of an object. " Was occuring here: "vWebPage.Request.Cookies("jjemployeeid").ToString Why: Because I was looking for a cookie that was created using ASP application not a asp.net application. It turns...
  9. humour

    System.Web.UI.Page passed into a class function

    What I want to do is have a general class function that I can instantiate on any of my intranet pages and have it check for a cookie (which stores my employee id). No cookie found the code will redirect to a page and ask you for it (pretty simple). I do it in ASP but the function is part of an...
  10. humour

    Best place to purchase AutoCad? How much is it?

    Simple question. Someone please point me to the best place where I can get answers to the following questions. 1) What website can explain the different Autocad versions that are available? 2) Where is the best place to order Autocad from? 3) How much will it cost me for 1 license? 3) How...
  11. humour

    Error Loading component - Creating ODBC Client Datasource

    I reinstalled the program but before and after I ran the Pervasive analyzer and deleted all of the current and previous versions. Thanks for your response. I can confirm that BV version 7 (7.3) does install what is required to setup Pervasive ODBC Data sources,
  12. humour

    Error Loading component - Creating ODBC Client Datasource

    As part of the BusinessVision accounting packaging I get a Btrieve database engine and odbc components. ** I have a few problems listed below, underneath my problems I have listed the version #'s I think are relevant. Prob #1 Error: Msgbox Title: Pervasive ODBC Client DSN Setup error: Failed...
  13. humour

    Error loading component while creating odbc datasource

    As part of the BusinessVision accounting packaging I get a Btrieve database engine and odbc components. ** I have a few problems listed below, underneath my problems I have listed the version #'s I think are relevant. Prob #1 Error: Msgbox Title: Pervasive ODBC Client DSN Setup error: Failed...
  14. humour

    Mouse over a smaller image and display a large one?

    re:Mouse over a smaller image and display a large one? Because IE now almost always doesnt display popups (unless the user clicks to allow them). I want to: - Throw away my old web-design which had users click on a smaller image and have a larger image popup in a new browser window... What I...
  15. humour

    Need a simple BAT or (shell) script, newbie question.

    This is what I want. Filename : sol.bat ( or sol.XXX) where xxx is some extension. What the program should do.... 1) Append the date and time sol.bat was executed to a file. 2) Run sol.exe (The solitaire program). ---------------------------------------- Yes I wnat to monitor an employee...

Part and Inventory Search

Back
Top