CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Leon Kennedy

Page 1 of 4 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    2
    Views
    992

    Re: Word App: To generate the word doc

    In the event that the string "Hey Zack Nick and Sharon" is in one field (you didn't specify), you could bring the string into a string variable and then use the Replace function to replace the space...
  2. Replies
    10
    Views
    1,372

    Re: Data File Encryption

    After thinking on this for a while, I did one last google search to see if I could come up with something. And I found what I think is going to work.

    I came across a site called...
  3. Thread: Problem!

    by Leon Kennedy
    Replies
    10
    Views
    5,982

    Re: Problem!

    Your post is perfectly clear: You want someone to do your work (or, more likely, your homework) for you.

    Have you tried doing this yourself yet? If so, can you share your code and what you think...
  4. Replies
    10
    Views
    1,372

    Re: Data File Encryption

    I looked at the links, but that's not what I'm after. The instructions given there are to encrypt and decrypt runtime, which is not what I want. While I have to decode/decrypt during runtime (when...
  5. Replies
    10
    Views
    1,372

    Re: Data File Encryption

    So, I actually have access to a computer that has UltraEdit on it, and I was able to take the text files and encode them as Base64. I then saved them with a custom extension, so if someone were to...
  6. Replies
    10
    Views
    1,372

    Re: Data File Encryption

    The files will be read-only, so I don't have to worry about encrypting during a write routine. I just need them encrypted to start with, and then decrypted when being read.

    EDIT: I attempted to...
  7. Replies
    10
    Views
    1,372

    [RESOLVED] Data File Encryption

    Ok, so this may seem like a simple thread, but I haven't been able to find the answer. So I'm asking the community at large to see if I can get somewhere with this.

    I am writing an application...
  8. Re: MSFlexGrid Not Highlighting Row

    And...resolved. I used a loop in the Grid_Click event to wipe out any current highlighted cells, and then set the selected row/cell back color. Drove me nuts all day, but I got it.
  9. [RESOLVED] MSFlexGrid Not Highlighting Row

    I have an MSFlexGrid that I am manipulating in code, and everything works except for the highlighting of the row. I can set the row, and update other labels on the form based on the selected row,...
  10. Replies
    10
    Views
    1,715

    Re: Change Autonumber Seed

    Sometimes I'm a little too close to the problem. I used DataMiser's suggestion (that I should have seen on my own) to copy tblTempSkills1 to tblTempSkills and drop tblTempSkills1. Works like a...
  11. Replies
    10
    Views
    1,715

    Re: Change Autonumber Seed

    Ok, so I've decided to drop and recreate the table. Or, more accurately, copy the table structure into a new table, drop the original table, and then rename the new table. The problem I'm having is...
  12. Replies
    10
    Views
    1,715

    Re: Change Autonumber Seed

    I thought about doing that, but if there's a way to do it without dropping the table I'd like to explore that. If I don't get any answers in the next 24-48 hours, I'll just drop and recreate.
  13. Replies
    10
    Views
    1,715

    [RESOLVED] Change Autonumber Seed

    I have an application that I'm writing that makes calls to an access database. I have an ado connection set up, and and I can update and add and delete to all tables in the database. The problem is...
  14. Replies
    8
    Views
    3,131

    Re: SSTab Child Controls Do Not Hide

    I just read through the link Hannes posted, and it's an interesting article. I still don't understand why the tab control wasn't pushing things off to the right by 5000 pixels, but I guess I don't...
  15. Replies
    8
    Views
    3,131

    Re: SSTab Child Controls Do Not Hide

    Yeah, I've never seen that either. I tried re-creating everything on the form from scratch, and the problem persisted. I tried using a different form with a different SSTab control and a simple...
  16. Replies
    8
    Views
    3,131

    SSTab Child Controls Do Not Hide

    I have a VB6 application that I'm writing, and I'm having a bit of an issue with the SSTab control. Specifically with the .TabVisible property and the child controls on a specific tab.

    I have 11...
  17. Replies
    2
    Views
    2,520

    VB6 Reload Application

    I am writing an application for (of all things) a character generator for an RPG that I am intimately familiar with. I can handle almost anything that is being thrown at me with this application,...
  18. Access 2003/Sharepoint Linked List Read Only Error

    I am new to creating Sharepoint Lists, so it's entirely possible that the issue here lies with me. But as I'm out of answers at this point, I have to look to the community for help.

    I created a...
  19. Replies
    4
    Views
    1,172

    Re: Run Time Error'91'

    I'm going to guess that the text of combo1 is null, which will throw an error when you attempt to call it as you are. But as DM said, you need to provide much more information in order for us to...
  20. Replies
    2
    Views
    1,069

    Re: mySQL: parameters for a procedure

    I'm not real familiar with mySQL, but you might want to take a look at your CREATE PROCEDURE and your SELECT statements.

    In CREATE PROCEDURE, you create the statement to add an item, but I can't...
  21. Re: SQL Reporting Services Multiple Data Sources

    Well, this is resolved. Sort of.

    I found out that if the databases reside on the same server, you can leave the "Initial Catalogue" in the connection string blank, and then you only have to sign...
  22. SQL Reporting Services Multiple Data Sources

    I didn't get much help with the last SSRS question I asked, so I'm not holding my breath here. However, I can't find an answer to this question, so I have to ask.

    I have a report in SQL Server...
  23. SQL Server Reporting Services Multiple Linked Matrices

    I'm new to Reporting services, so if this is a noob question please forgive me. Also, I'm not sure where else to place this question, so if it belongs somewhere else please forgive me.

    I am...
  24. Replies
    0
    Views
    689

    SQL Server Reporting Services

    I am new to Reporting Services, so I apologize if this is a noob question.

    I am designing a report that will return several data points, grouped by Validation, Contract, Reporting Year, and...
  25. Replies
    0
    Views
    847

    Access Aggregation and Concatenation

    I have a table that has a memo field in it that is truncating when I query it and drop it into a report. The table I'm querying has 2 fields:

    Item (Memo)
    Type (Text)

    I have a query that is...
Results 1 to 25 of 100
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured