Search:

Type: Posts; User: DaveWunderlich

Search: Search took 0.05 seconds.

  1. Replies
    8
    Views
    576

    plenderj, Thank you for the article. The...

    plenderj,

    Thank you for the article. The information on PVCS was very helpful. It was also good confirming that it's not just us doing something wrong with Visual SourceSafe when we experience...
  2. Replies
    8
    Views
    576

    Source Code Control

    This question is for people who work in larger IT shops. We have had several problems with Visual SourceSafe and are looking for a more reliable tool to replace it. We have narrowed our choices to...
  3. Interacting with Startmenu shortcuts

    I want to run an old dos-based app (It's called Metaview) that requires several memory properties to be set in the shortcut. So I either need to find a way to reference that shortcut and open the...
  4. Setting shortcut properties and calling from VB

    We currently use an old DOS-Based language called Metaview at our company and are trying to find a way to get it to interact with VB. In order to run Metaview, we need to set the memory properties...
  5. Setting shortcut properties and calling from VB

    We currently use an old DOS-Based language called Metaview at our company and are trying to find a way to get it to interact with VB. In order to run Metaview, we need to set the memory properties...
  6. Replies
    3
    Views
    742

    Place the code above the line in your...

    Place the code above the line in your declarations section, and add the line in the click event to your command button click event.

    Private Declare Function SendMessage Lib "user32" Alias...
  7. Replies
    1
    Views
    3,316

    vbTrue vs. TRUE

    I'm just curious. Is there any benefit to using vbTrue/vbFalse instead of TRUE/FALSE?
  8. Replies
    1
    Views
    441

    PrintForm method

    I am trying to use the printForm method on a screen that contains a flexgrid (MSFlexgrid 6.0). When it prints, the grid just shows up as a black rectangle. Is there a way to solve this?
  9. Replies
    2
    Views
    471

    Yep, the runtime is installed. Everything else...

    Yep, the runtime is installed. Everything else in the application works fine.
  10. Replies
    2
    Views
    471

    Crystal Reports

    My VB application populates a MS Access 97 table and then opens a Crystal report which uses the data in this table. If I run it from a machine with VB installed on it, everything works fine. If I...
  11. Replies
    2
    Views
    389

    Use a control array for your command buttons and...

    Use a control array for your command buttons and put the
    following code in your click event:

    Private Sub Command1_Click(Index As Integer)
    Dim i As Integer
    For i = 0 To Command1.Count -...
  12. Replies
    6
    Views
    568

    I set the Reportfilename prior to the code sample...

    I set the Reportfilename prior to the code sample I gave you. I have a select case clause to determine which report was selected.

    I did verify that this property is set correctly when I get to...
  13. Replies
    6
    Views
    568

    I tried that and I still get the same error. ...

    I tried that and I still get the same error.

    Here is my code:

    With CrystlReport1
    .DataFiles(0) = "C:\Salary.mdb"
    .WindowState = crptMaximized
    .Destination =...
  14. Replies
    6
    Views
    568

    Serge, Thank you for replying to my question. ...

    Serge,

    Thank you for replying to my question. When I try using your suggestion, it does the same thing. I checked the last error string and it says "Cannot open SQL server". Do you know how I...
  15. Replies
    6
    Views
    568

    Crystal Report

    I have created a crystal report: "C:\Salary.rpt".

    The data for this report comes from an MS Access 97 database: "C:\SAReportTable.mdb"

    When I go into Crystal and preview the report it looks...
  16. Replies
    2
    Views
    448

    Crystal Reports - UGHHH!!!

    This is a long shot, but there seem to be a lot of knowledgable people here, so I figure it's worth a shot. I have a VB App that calls a stored procedure which populates a Global Temporary Table in...
  17. Replies
    2
    Views
    430

    code:---------------------------------------------...

    code:--------------------------------------------------------------------------------
    Dim rst as ADODB.Recordset
    Set rst = ExistingRst

    rst.Fields.[...]
    rst.Fields(0).[...]



    In the first...
  18. Replies
    8
    Views
    659

    SourceSafe

    There have been several times when I made updates to my code and checked it in using Visual SourceSafe. When I do a "Get Latest Version", my updates are not there. Like an idiot, I trusted that...
  19. Replies
    0
    Views
    354

    Pulling values from Excel

    I would like to take a value stored in a specific cell of an excel spreadsheet, save it as a .gif and export it to another location so it can be displayed on a web page. Can somebody give me a code...
  20. Replies
    1
    Views
    457

    Printing

    Oh great VB gurus.

    We have a very in depth VB question about printing. Is there any way to get a print stream into a NT Print Queue inside of a VB module. What we have is an NT Server (ec-pjm)...
  21. Replies
    5
    Views
    408

    IntelliSense

    I don't have it available for anything, not even for forms, or command buttons. I've seen it happen a few times in the past, but I would always get it back when I exited VB and restarted it. That's...
  22. Replies
    5
    Views
    408

    Losing IntelliSense

    When I open one of my VB applications, there is no IntelliSense. I only have this problem with one specific app. Does anyone have any ideas as to what may be causing this or more importantly how I...
  23. Replies
    2
    Views
    295

    Frame Control Question

    Does anyone know of any way to determine if a control is in a frame at runtime?

    Example, I have a form with a frame called Frame. The form has two buttons, Button1 and Button2. Button1 is in the...
  24. Replies
    1
    Views
    367

    Data Access question

    I am trying to get a better understanding of data access and am wondering what's the difference between a Data Environment and a Data Link? Do you choose one or the other when setting up a...
  25. Replies
    1
    Views
    393

    I am trying to open a text file and read through...

    I am trying to open a text file and read through each line. If the line begins with the specified string, I want to change it to read something different. I am able to open it and read each line...
  26. Replies
    0
    Views
    340

    The IT department I work in has about 350 people...

    The IT department I work in has about 350 people in it and we are trying to determine the best way to set up our SourceSafe environment to manage our source code. We are thinking it would be best to...
  27. Replies
    3
    Views
    391

    I am trying to use the DIR function to loop...

    I am trying to use the DIR function to loop through all of the VBP files in a specified folder and read the project properties of each one. The looping part is not a problem, but I can't figure out...
  28. Replies
    1
    Views
    454

    Being relatively new to this, I am not sure this...

    Being relatively new to this, I am not sure this will work, but could you set the KeyPreview property of the form to true, and then in the Keypress event check the active control property and the...
  29. Replies
    3
    Views
    395

    I am trying to figure out a way to have VB...

    I am trying to figure out a way to have VB determine what type of monitor the user has and dynamically set the screen resolution. Can anyone help me out with this?
  30. Replies
    1
    Views
    409

    One of the programmers I support only has 3...

    One of the programmers I support only has 3 add-ins listed in the Add-In manager. Can someone tell me how to get the rest of them to show up?

    Thanks
  31. Replies
    7
    Views
    617

    One other thing I noticed in your code. You are...

    One other thing I noticed in your code. You are using the IsMissing Function on a string data type. This will not work properly. IsMissing only works on variants. I can't quite figure that one...
  32. Replies
    3
    Views
    666

    If you want to avoid using global variables, you...

    If you want to avoid using global variables, you can create a subroutine in Form2 that you can call from form1 and pass the variables to like this:

    Form1 Code:
    .....
    Call...
  33. Replies
    11
    Views
    897

    geoff_xrx, Never mind my last post. I just...

    geoff_xrx,

    Never mind my last post. I just had a type-o. It works perfectly!!

    Thank you very much.
  34. Replies
    11
    Views
    897

    geoff_xrx, Thank you for the code sample. It...

    geoff_xrx,

    Thank you for the code sample. It is real close to working. When I go into debug mode, it is updating tmp with the new value of 'xxxxx', but for some reason, the actual file is not...
  35. Replies
    11
    Views
    897

    Sorry I wasn't specific in my question. Could...

    Sorry I wasn't specific in my question. Could somebody please show me how to open a binary file (let's call it Test.dat), look for a specified string (let's say "Testa"), and replace this string...
  36. Replies
    0
    Views
    455

    Help We are attempting to create an ActiveX...

    Help
    We are attempting to create an ActiveX control that will take a userid and password (that are provided in base64) and authenticate to the server without the login screen popping up. We have...
  37. Is it possible to create an exe in Visual Basic...

    Is it possible to create an exe in Visual Basic that allows you to pass parameters as well? If so, can somebody please give me some sample code for determining the values of these parameters from...
  38. Replies
    1
    Views
    612

    I work in a company with about 350 people in...

    I work in a company with about 350 people in IT,and about 3,000 PCs. We currently use VB 6.0, and have not taken any of the service releases for it. I would like to get us up to date by taking SP4....
Results 1 to 38 of 38



Click Here to Expand Forum to Full Width