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 SkipVought 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: blweb
  • Order by date
  1. blweb

    NeoTools ActiveX

    Does anyone have experience with NeoTools in the vb.net environment? I'm trying to read HL7 from a file in a scanned folder. I cannot for some reason get the controls to interact together to allow me to see what HL7 messages are in the files.
  2. blweb

    Waiting on Stored Procedures

    Use a trigger or something of that sort in SQL and leave the application out of the picture all together if it needs to go off at a specific time. If you need the app to start this SP, then you will need to create a thread and call it cause you are going to be expending the system process...
  3. blweb

    InputBox ...

    I think we need a bit more information here. Are you trying to get rid of Form1 when you hit the button and it loads Form2? If so then throw "Unload Me" after Form2.show. That will stop the code in Form1 from running. Otherwise you can hide the form or leave it sit while Form2 is running. If you...
  4. blweb

    OLE control sizing

    can anyone even give me a guess on this?
  5. blweb

    Table Timeout Problems

    Here's a list of facts. ASE 12.5 Windows 2000 pro (machine) I have a table that times out every 1 of 3 times I do a select all statement and 3 of 3 times when I do a select where PatientID statement on it. Primary Key for the table is not TreatmentID. Anyone have an idea of how to approach...
  6. blweb

    Return ON ERROR behaviour to default

    Ok, Let's see if I can't cover all basises here. If you are using error handling where you are doing On Error Goto Error_Handler later down the code you want to do custom error handling you can create another section and make the same call as above only after goto adressing the custom...
  7. blweb

    OLE control sizing

    I am trying to control the size of the excel sheet that comes up from the OLE object in VB6. I have put the control in a frame so that it doesn't autosize across the entire form. When I tell it to zoom or stretch to the size of the ole control, the width and height set themselves right, but...
  8. blweb

    excel ole sizing

    I am trying to control the size of the excel sheet that comes up from the OLE object in VB6. I have put the control in a frame so that it doesn't autosize across the entire form. When I tell it to zoom or stretch to the size of the ole control, the width and height set themselves right, but...
  9. blweb

    Parameter problems when trying to call a Stored procedure using ADO

    Forgot. More specifically here's what's wrong. Set prmDatabase = datCmd1.CreateParameter("p_Database", adVarChar, adParamInput, 200) You're missing one parameter. It should look like this. Set prmDatabase = datCmd1.CreateParameter("p_Database", adVarChar, adParamInput, <length of string>...
  10. blweb

    Parameter problems when trying to call a Stored procedure using ADO

    ToeJam, It has to deal with how you are setting up your parameter. Set objCmd = New ADODB.Command With objCmd .ActiveConnection = PROJ_DB .CommandType = adCmdStoredProc .CommandText = "sel_from_tbl" Set objParm = .CreateParameter("@Parm1", adVarChar...
  11. blweb

    MSDE Password...

    I pulled this one from www.connectionstrings.com. "Driver={SQL Server};Server=Aron1;Database=pubs;Trusted_Connection=yes;" then all you'll have to do is write your open statement as follows. .open, <UID>, <PW> If that doesn't work then referr to my first 2 questions I posted. Cheers...
  12. blweb

    MSDE Password...

    If you try a different UID and password what does it give you? If it lets you in, then MSDE is looking at the UID and password for SA incorrectly. Does the machine have Query Analyser or something equivalent on it? If so you can try logging on with it to make sure the UID and PW for SA works...
  13. blweb

    ListView column width adjust control

    mkefeli, To accomplish this you can either store the loaded column widths or keep them in the ini you were thinking about then use a For Each loop to check the widths on exiting the form. For Example... Dim oItem As ListItem For Each oItem In ListView1.ListItems if...
  14. blweb

    Treeview Search

    deulyd, In these instances I use the Nodes collection in a For Each loop and a For Each to go through the collection. You do not loose much time by doing it this way. for example. If I have a collection named g_Col Then I would work the situation as follows. Dim oObj as <name of class in the...
  15. blweb

    ADO Connecting to SyBase

    Swi, Thanks for the response. I modeled the connection strings above from www.connectionstrings.com giving me the results above. I found it as a great resource, but no luck. As for http://www.able-consulting.com/ADO_Conn.htm, it says that I need to create an .IDS file. Only problem is that...
  16. blweb

    ADO Connecting to SyBase

    I am developing a program that connects to Sybase. Is there a certain driver that I need to allos the connection? My ODBC connection tells me there is no default driver. g_sConnStg = "DRIVER={SYBASE ASE ODBC Driver};DB=master;UID=sa;PWD=;NetworkAddress=BWSYB,5000;" Set PROJ_DB...
  17. blweb

    Moving a Database

    I am faced with a problem that I cannot seem to find the right resolution to. I am attempting to move a Sybase database to a new instance of Sybase on another machine. I do not know what OS is on the original machine. I do know it's accessable by standard windows networking. The new instance of...
  18. blweb

    Unable to start the server

    Fixed with a complete reinstall. 1)run the uninstall from Add/Remove programs in control panel. 2)Reboot 3)run the uninstall from Add/Remove programs again to make sure the links are all removed. 4)Delete/Rename the Sybase folder. 5)Run the install again. I tried not doing steps 3 and 4...
  19. blweb

    Unable to start the server

    I'm trying to create a Sybase Dev ASE 12_5 server on a Windows 2000 machine. When I try to start the server through the server tools it gives me a error saying "Process is running but unable to log in." Checking the task manager and the process list the sqlsrvr.exe is running. I installed the...

Part and Inventory Search

Back
Top