Search:

Type: Posts; User: Tegan

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    3,153

    Simple RC2 String Encryption

    I'm looking for an example of RC2 Encryption in VB.NET.
    For the life of me I can't find a simple non-bloated example.
    I just need to take a string and encrypt it using a key which is also a string....
  2. Re: RegEx External Stylesheet & Download it

    Are you able to confirm that your code works?

    I tried it and got no matches.

    If I pass it -
    <link rel="stylesheet" type="text/css" href="folder/ie6.css">

    of without quotes on

    <link...
  3. Re: RegEx External Stylesheet & Download it

    Thanks for the reply. I can't seem to get that pattern to work for me correctly. Here is my code:



    Sub check4ExternalStyleSheet(ByVal html As String)
    Dim reader As New...
  4. [RESOLVED] RegEx External Stylesheet & Download it

    I need some guidance because I want to regex out a external style sheet in an html doc.


    First question:
    Example:


    <LINK href="http://test.com/style.css" rel="stylesheet" type="text/css">
  5. Replies
    1
    Views
    401

    Put Images in Directory from Table

    I have a directory full of images (logos to be exact) and I want to place them in a nicely in a table.

    Can I use PHP code to retrieve each image file in the directory and put it in a HTML table...
  6. Replies
    1
    Views
    535

    Correct Way to Pass Parameters to .NET Exe

    I have a VB.NET GUI app called "myApp.exe" that I would love to pass one parameter to.

    For instance I would like to execute the app like this
    "C:\myApp.exe -id 123456789"

    Where and What code...
  7. Re: Rename files with no extension to .txt - RESOLVED

    Thanks I got it to work correctly now:



    Imports System.IO
    Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click...
  8. [RESOLVED] Rename files with no extension to .txt

    Dim Files As String() = IO.Directory.GetFiles(f.SelectedPath + "\", "*.*", IO.SearchOption.AllDirectories)
    Dim fil As String
    For Each fil In Files
    If fil.IndexOf(".") =...
  9. Re: [2005] IFRAME - Replacing HTML of Iframe Dynamtically

    Thanks I finally resolved it.



    <script type="text/javascript">
    function iframeTxt()
    {

    var testFrame = document.getElementById("viewer");
    ...
  10. Re: [2005] IFRAME - Replacing HTML of Iframe Dynamtically

    I know that, but how would I send the contents of the textbox containing the source to Doc.Write.
  11. Re: [2005] IFRAME - Replacing HTML of Iframe Dynamtically

    Can I get an example on how to implement this? I'm frustrating myself right now.
  12. Re: [2005] IFRAME - Replacing HTML of Iframe Dynamtically

    <%@ Page Language="VB" AutoEventWireup="false" ValidateRequest="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"...
  13. Re: [2005] IFRAME - Replacing HTML of Iframe Dynamtically

    Protected Sub Accept_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Accept.Click

    document.getelementbyid("iframeID").innerHTML = txt

    End Sub


    How would I put the...
  14. Re: [2005] IFRAME - Replacing HTML of Iframe Dynamtically

    Anybody have any ideas on how to accomplish this.

    I have an IFRAME.

    I have a textbox.

    I want to be able to write HTML CODE to the textbox and have it display in the IFRAME when the user...
  15. [RESOLVED] [2005] IFRAME - Replacing HTML of Iframe Dynamtically

    I have an iframe in a asp page loading with src="about:blank".
    I have a multiline textbox. I want to put html code in this textbox, Press submit, and have the iframe load this new html.
    ...
  16. Replies
    6
    Views
    726

    Still have one issue - RegEx Simple Help

    Now I just need an efficient way to loop through an html file and grab this location and place it in a variable.
  17. Replies
    6
    Views
    726

    Re: RegEx Simple Help

    Okay I got it accomplished using this code:


    Dim t As String
    Dim y As String()
    t = "<link href=""http://www.domain.com/style.css"" rel=""stylesheet"" type=""text/css""...
  18. Replies
    6
    Views
    726

    Re: RegEx Simple Help

    i can't seem to get the part out of it I want.

    here is the code:



    dim y as string()

    t = "<link href=""http://www.domain.com/style.css"" rel=""stylesheet"" type=""text/css"" media=""all""...
  19. Replies
    6
    Views
    726

    Re: RegEx Simple Help

    how is that specific to <link href="cssfile.css">?

    i only want to regex <link href> statement not (href=)'s
  20. Replies
    6
    Views
    726

    [RESOLVED] RegEx Simple Help

    I'm trying to grab the url of a css file with regex.

    <link href="http://www.domain.com/style.css" rel="stylesheet" type="text/css">

    Can anybody assist me.
  21. Replies
    1
    Views
    505

    Parse HTML and CSS

    Say i had a html with css file I wanted to parse below:



    <style type="text/css">
    body {
    font-size: 11px;
    }
    </style>
  22. Replies
    0
    Views
    519

    [2005] Need Direction

    I would appreciate any direction this group could offer me.

    I would like to develop a small utility. This utility would be tailored to people who send emails with html and css. It would allow the...
  23. [2005] Sheet of Barcodes in Word from Access Database

    I'm developing an inventory management system for a small business. Most of their inventory is marked with barcodes by the manufacturer; however, a small percentage of them are not.

    I have talked...
  24. Re: [RESOLVED] Excel in Web Browser Control - Select sheet problem

    Thank you.
  25. [RESOLVED] Excel in Web Browser Control - Select sheet problem

    I have an excel file loaded into a web browser control in a windows form.
    I want to make my own navigation buttons instead of using excels. I want a forward button and a back button like IE to move...
  26. Thread: parsing this xml

    by Tegan
    Replies
    1
    Views
    606

    parsing this xml

    I need assistance in parsing the following xml.

    I'm loading the document using this code:

    Dim xdoc As New XmlDocument
    xdoc.Load("gmail.xml")

    For Each nod As XmlNode In...
  27. Thread: Atom Feed Gmail

    by Tegan
    Replies
    0
    Views
    954

    Atom Feed Gmail

    Can anybody get a atom feed of a gmail account to work in VB.

    I have been converting the C# sharp code that is over at
    http://www.codeproject.com/dotnet/GMailReader.asp

    Here is what I have so...
  28. Replies
    4
    Views
    851

    Re: Quicky: Structure - data member reference

    No that is not what I was looking for. Thank you for your effort.

    A structure has data members. For instance the Rec structure has a firstname data member and a lastname data member.

    I'm in the...
  29. Replies
    4
    Views
    851

    Quicky: Structure - data member reference

    Can I declare a variable to be a data member in a structure.

    For instance say I have a simple structure array.

    Public Structure Rec
    Dim firstName As String
    Dim lastName As...
  30. Replies
    10
    Views
    1,125

    Re: Using a structure in a class defined object

    I have the following code. I wanted my structure to hold data as an array.

    I call my class New method from my main classes form_load using

    Dim phoneData As New records.Rec(firstname,...
  31. Replies
    10
    Views
    1,125

    Re: Using a structure in a class defined object

    Thank you. I am new to OOP so this is a awesome concept so far.

    Could I get a quick example on get/set accessors? BTW I am searching over the forums right now.
  32. Replies
    10
    Views
    1,125

    Using a structure in a class defined object

    Could anyone point me in the right direction here.

    I would like to load my data into an object (defined by a class), that accepts data to fit in a structure.

    Here is my code for my class called...
  33. Replies
    2
    Views
    2,308

    Re: Simulate a console terminal with a RichTextBox

    You could set your richtextbox visible to false and PrintRTF its contents to a picturebox.
  34. Replies
    3
    Views
    429

    Re: Moving between records simply

    ADO would be nice however I don't have the time to start learning it now. I'm only storing 3 pieces of information in a type array.
  35. Replies
    3
    Views
    429

    Moving between records simply

    I have been trying to code an efficient way to move between name, address and phone numbers. Similar to a very simple rollodex example.

    I would appreciate some coding help with this. I can move...
  36. Replies
    2
    Views
    5,590

    Re: Move/Resize/Drag Transparent RichText WOW

    How could I forget thats most important thing!

    Anyway here they are.
  37. Replies
    11
    Views
    1,010

    Re: Transparent Area on User Control

    I finally got it working perfect.

    I posted it in the code bank.

    http://www.vbforums.com/showthread.php?t=378997
  38. Replies
    2
    Views
    5,590

    Move/Resize/Drag Transparent RichText WOW

    http://www.basic-ware.com/Screenshots/example.gif

    Have you ever wanted to produce an interactive application that allows the user to move/resize/drag objects such as Rich Text at run-time?

    Well...
  39. Replies
    11
    Views
    1,010

    Re: Transparent Area on User Control

    Thanks for your effort. I made some very significant headway on my issue last night. To actually acomplish this in VB for the purpose I'm using it for is very complex.

    Here is an screen capture...
  40. Replies
    21
    Views
    1,137

    Re: Happy New Year (early I know)

    I would like to thank everyone at VBForums and wish all a very productive and lucrative 2006!
Results 1 to 40 of 109
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width