Search:

Type: Posts; User: manofsteel00

Page 1 of 6 1 2 3 4

Search: Search took 0.07 seconds.

  1. Re: Formal parameter was defined as OUTPUT but the actual parameter not declared OUTP

    This works correctly now. Below are the code fragments.

    Since I wanted to pass a parameter to the stored procedure in MSSQL for verification purposes, and since the stored procedure was set up to...
  2. Re: Formal parameter was defined as OUTPUT but the actual parameter not declared OUTP

    Having updated the VB code to include the other parameters, I am still receiving the same error message at cmd.Execute.

    Below is the update VB code with the additional parameters being passed:

    ...
  3. Re: Formal parameter was defined as OUTPUT but the actual parameter not declared OUTP

    Well, again, I do not know MSSQL syntax very well, but when I do not pass a parameter, then I still receive the same error.
  4. Re: Formal parameter was defined as OUTPUT but the actual parameter not declared OUTP

    Can you tell me what you mean by "the OP isn't creating the parameters in code"? Does OP mean Output Parameter?

    The error message that I am getting is "Formal parameter '@sql' was defined as...
  5. Re: Formal parameter was defined as OUTPUT but the actual parameter not declared OUTP

    Thanks for the great replies! I did not code the MSSQL statements, but I can tell you that techgnome's most recent statements concerning it are correct. The code is meant to be used dynamically.
    ...
  6. [RESOLVED] Formal parameter was defined as OUTPUT but the actual parameter not declared OUTPUT.

    Hello,

    I am trying to call a stored procedure in MSSQL from VB6; however, I am getting an error message: "Formal parameter was defined as OUTPUT but the actual parameter not declared OUTPUT."

    I...
  7. Replies
    5
    Views
    1,267

    Re: VBCE Error

    Hello, I was able to find an installation CD for embedded Visual Basic 3.0, and the SDK for the Symbol 2800 PocketPC. I have everything working EXCEPT the ScanControls. Symbol created two...
  8. Replies
    5
    Views
    1,267

    Re: VBCE Error

    Thanks Si! I've verified that I'm running eVB as an administrator. So I guess the best alternative would be to reinstall; however, I have lost the install CD. Do you know where I could buy another...
  9. Replies
    5
    Views
    1,267

    VBCE Error

    Hello all! I have a question for you. Upon opening my embedded Visual Basic 3.0 program, that has been working correctly for 3+ years, for pocketPC I receive the following error message:
    ...
  10. Re: Add New Row in MS Word form with Text Form Fields and Drop-Down Form Fields

    bump
  11. Add New Row in MS Word form with Text Form Fields and Drop-Down Form Fields

    Hello,

    I have a question that seems easy, but I am having a dificult time with it. I know some VB, but completely new to VBA. And I have to admit it seems completely foreign to me.

    The...
  12. Re: Programmatically Alter Beam Connection Settings on Windows CE 3.0 with eVB 3.0

    bump
  13. Re: Programmatically Alter Beam Connection Settings on Windows CE 3.0 with eVB 3.0

    Hey, the beam (connection) settings allows the device to "receive all incoming beams and select discoverable mode". The default value is checked as it is a check box; however, none of the programs...
  14. Programmatically Alter Beam Connection Settings on Windows CE 3.0 with eVB 3.0

    I have been maintaining eVB 3.0 code for a Symbol PPT 2800 PocketPC, which has Windows CE 3.0 on it. The code creates a folder and places certain items, such as: moving and hiding the games folder,...
  15. Re: Program Not Able to See File on PocketPC

    Well it seems I answered my own question this time. There was a function call to the CeRapiInit function that was in the old code, which needed to be included in the new code as well. This function...
  16. Re: Program Not Able to See File on PocketPC

    On second thought, I did add a reference to a DLL file called ceutil.dll to call the CEGetDeviceId() function. There is a reference to a DLL called CERAPI that the CeFindFirstFile() function is a...
  17. [RESOLVED] Program Not Able to See File on PocketPC

    I am maintaining code that is used to traverse through a directory on a Pcocket PC handheld scanner, and detect if there is a file available to be uploaded. The function below is the code that...
  18. Re: Overflow: 'Cint': Simple Cint Question?

    OK, thanks all. I thought Cint() was casting the text value as an integer so that I could test if it was numeric. I have since changed my input values to be doubles and am now using Cdbl() instead...
  19. [RESOLVED] Overflow: 'Cint': Simple Cint Question?

    If I recieve nonnumeric input on the following lines of below:


    strTempBoxQty = Mid(Trim(Scan7.Text), 2, Len(Scan7.Text) - 1)

    ...
  20. Re: Can't add a reference to the specified file

    Thanks to all those who commented, but I was successfully able to do this with the following code:



    Private Declare Function CeGetDeviceId Lib "C:\WINNT\system32\ceutil.dll" () As Boolean

    If...
  21. Re: Can't add a reference to the specified file

    I'm now getting "Error 453 - Can't find DLL entry point GetDeviceID in C:\WINNT\System32\ceutil.dll". Could it be that the GetDeviceID function does not exist in the ceutil.dll file? Is there a way...
  22. Re: Can't add a reference to the specified file

    Thanks Si, you rock (as usual). Teh function I want to declare is called getDeviceID(void); now I've never used DLLs in a VB program like this. Once I add the following line; I there anything else...
  23. [RESOLVED] Can't add a reference to the specified file

    I am having a problem trying to reference the CEUtil.dll file in my VB6 application. When I try to reference the DLL, I get the following error message: "Can't add a reference to the specified...
  24. Replies
    2
    Views
    722

    Re: Easiest Question Ever

    I knew it was a type problem all along! Thanks for your help!!
  25. Replies
    2
    Views
    722

    Easiest Question Ever

    The code below should print out the multiplication table from 1 to 9. The for loops are fine; however, the logic on the Do until loop is the part causing the problem. Supposedly it will exit the do...
  26. Re: Populate/Edit Outlook 2003 Custom Form from Access 2003

    1. create your custom outlook form
    2. publish the form to your Organizational library
    3. inside access use a outlook object to create an instance of the form
    4. if you create custom fields for...
  27. Re: Populate Outlook 2003 Custom Form from Access 2003

    1. create your custom outlook form
    2. publish the form to your Organizational library
    3. inside access use a outlook object to create an instance of the form
    4. if you create custom fields for...
  28. VBScript to delete Outlook 2003 Read Email

    I have been looking for some guidance on how to delete a read email in Outlook 2003 using VBScript. Basically I am sending a form for a user to fill out, and I would like to delete the email once...
  29. [RESOLVED] Populate/Edit Outlook 2003 Custom Form from Access 2003

    BACKGROUND
    I have an Access 2003 database that contains information on the location of other Access 2003 databases on our servers and the size of those databases. I am using VBA to open a custom...
  30. [RESOLVED] Populate Outlook 2003 Custom Form from Access 2003

    BACKGROUND
    I have an Access 2003 database that contains information on the location of other Access 2003 databases on our servers and the size of those databases. I am using VBA to open a custom...
  31. Replies
    2
    Views
    384

    Re: Help with traversing through data

    Has anyone had a similiar problem like this one before? If so please let me know. Thank you.
  32. Replies
    2
    Views
    384

    Help with traversing through data

    I'm having trouble with determining the best way to loop though a CSV file and break it into relevant segments.

    For example:
    The first line should read like the following:
    Column A,Column...
  33. Code Stopped Working after Adding two Radio Buttons

    This webpage is for an intranet ticketing system. My company is implementing Kaizen so we need to keep track of Kaizen tickets. In order to do this I added two radio buttons: one for yes and one...
  34. Re: Any Suggestions for Making this More Efficient?

    It didn't turn out quite like I wanted it to, so to clarify: Column A is the 004-005, 35, 010-034 and Column B is 5,6,5.
  35. Any Suggestions for Making this More Efficient?

    I'd like to see if anyone has any suggestions on making the following function faster or more efficient. This code segment reads data from a CVS file, breaks it up and writes the relevant data to a...
  36. Re: Unhandled exception of type 'System.Security.SecurityException' occurred in mscorlib

    Yeah, that's actually one of the things I have already tried. I just looked again, and it is still giving me that error
  37. Re: Unhandled exception of type 'System.Security.SecurityException' occurred in mscorlib

    The executable is on a Network drive that I am an Administrator on. And the bold line of the code is where the error is thrown. Thank you for your time and help.
  38. Unhandled exception of type 'System.Security.SecurityException' occurred in mscorlib

    I am getting the following error message when trying to run a program over the network:



    "An unhandled exception of type 'System.Security.SecurityException' occurred in mscorlib.dll"
    ...
  39. Replies
    4
    Views
    468

    Re: Nested SQL Query

    The following code actually gives me the appropriate information EXCEPT if a product is not listed in the TEST table it will not be inserted to the MAIN table. In other words, there are some items...
  40. Replies
    4
    Views
    468

    Re: Nested SQL Query

    The PICKSL table does not have the SLOT field; it has everything but the slot field. I would like to create a query that pulls the SLOT field from the TEST table and the rest of the information from...
Results 1 to 40 of 202
Page 1 of 6 1 2 3 4



Click Here to Expand Forum to Full Width