Search:

Type: Posts; User: nmadd

Page 1 of 13 1 2 3 4

Search: Search took 0.92 seconds.

  1. Replies
    1
    Views
    584

    NullReferenceException

    Scratch that. My question has evolved into something different. I'll probably be posting again later.
  2. Replies
    5
    Views
    1,694

    Re: redirect non-www to www

    If that works for you, you can convert here: http://www.developerfusion.com/tools/convert/csharp-to-vb/
  3. Replies
    5
    Views
    1,694

    Re: redirect non-www to www

    Here are some helpful links.

    Redirection: http://forums.asp.net/t/1437999.aspx
    IsSecureConnection: http://msdn.microsoft.com/en-us/library/system.web.httprequest.issecureconnection.aspx
  4. Replies
    3
    Views
    901

    VS 2010 Re: Regular expression help

    This seems to work:

    http://www.somedomain.com/(\w+)/?

    Then check group 1 of your match. http://msdn.microsoft.com/en-us/library/system.text.regularexpressions.match.groups.aspx
  5. Replies
    5
    Views
    4,511

    Re: Oracle schema vs. SQL Server database

    Thanks for the additional reply.

    We use both SQL Server and Oracle at my work and I think I'm having trouble learning both at the same time and understanding all the terminology.

    I just read...
  6. Replies
    5
    Views
    4,511

    Re: Oracle schema vs. SQL Server database

    Am I then wrong in saying that it seems more common to have multiple SQL Server databases running on the same server? While it seems much less common to have multiple Oracle databases running on the...
  7. Replies
    5
    Views
    4,511

    Oracle schema vs. SQL Server database

    Are these two things very similar in nature? I'm a bit confused as in my studies I'm comparing a SQL Server "database" to an Oracle "database" and I'm thinking I should be comparing a SQL Server...
  8. Re: [SQL Server] Aggregates in WHERE clause

    That seemed to do the trick. Thanks!

    And, yes, it is 2005. :D
  9. Re: [SQL Server] Using CTE to reuse aliases

    Cool. I just wanted to make sure that this was a valid approach without any big performance problems if I need to reuse some calculations more than once.

    Thanks Gary!
  10. [RESOLVED] [SQL Server] Aggregates in WHERE clause

    SQL Server 9.0.3068

    So, I know I cannot put aggregates in a WHERE clause and this is giving me some trouble with what I think should be a simple query. My goal is to display the sum of sales for...
  11. [RESOLVED] [SQL Server] Using CTE to reuse aliases

    SQL Server 9.0.3068

    I'm doing some calculations and aggregations on data in my query and I'd like to reuse the results in other calculations. Ex.: ReservesWithheld and DistributionPercentage...
  12. VS 2008 Re: Express Catch some text from website.

    I used a text file just as an example in place of downloading the HTML from a website. Using the text file was just an example. Try using the WebClient to download the HTML and then use the RegEx on...
  13. VS 2008 Re: Express Catch some text from website.

    Using the Dim keyword is how you create a variable. It doesn't make any sense to attempt to write the code while trying to avoid using variables. Post the code you are using.

    Also, I think you...
  14. VS 2008 Re: Express Catch some text from website.

    Have you stepped through the code to see the value of the string you are downloading? Does the HTML actually contain the item that you are looking for?

    I copied your HTML example in the first post...
  15. Replies
    9
    Views
    831

    VS 2008 Re: Minimizing to system Tray

    I see. That's fun. :D
  16. Replies
    9
    Views
    831

    VS 2008 Re: Minimizing to system Tray

    Or maybe this?
    Public Class Form1
    Private Sub Form1_Resize(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Resize
    If Me.WindowState =...
  17. VS 2008 Re: Express Catch some text from website.

    1) Show the code you are using. paul simply provided an example to get you started.
    2) You don't need a WebBrowser for this. Notice there is no WebBrowser in paul's example.
  18. VS 2008 Re: Treeview - Add new node and select text for editing

    You can call the BeginEdit method of the node. See here:
    http://msdn.microsoft.com/en-us/library/system.windows.forms.treenode.beginedit.aspx
  19. Re: Parsing or Regex on HTML in a text file

    You could try this email RegEx provided on MSDN:
    http://msdn.microsoft.com/en-us/library/ms998267.aspx#paght000001_commonregularexpressions
  20. Replies
    5
    Views
    607

    Re: FormatExcecption not handled

    So, what are you trying to convert? Is it an Int32?
  21. Replies
    5
    Views
    607

    Re: FormatExcecption not handled

    What line throws the exception?
  22. Replies
    3
    Views
    432

    Re: Pre-coding planning

    Thanks for the tips.
  23. Re: How to Validate Textbox for Numeric and AlphaNumeric Values

    wey's code works OK for me. Have you attached the event to your TextBox?

    Alternatively, if you know how many characters you want to accept in the TextBox, you could use a MaskedTextBox:...
  24. Replies
    3
    Views
    432

    Pre-coding planning

    I'm an amateur programmer who has been studying .NET for the last 2 years off and on. I've finished a number of projects for family and at my workplace but they have all been relatively small.

    I...
  25. Replies
    4
    Views
    4,425

    VS 2008 Re: Bittorrent Client

    This another very vague question, but you may want to start your research here:
    http://monotorrent.blogspot.com/ (in C#)
  26. Replies
    3
    Views
    676

    VS 2008 Re: Web UI

    You could use ASP.NET. Here is a good place to start learning:
    http://www.asp.net/learn/
  27. Replies
    14
    Views
    4,553

    Re: Reading last 4 characters in a textbox help

    Assuming there are enough characters in the TextBox:

    string t = this.textBox1.Text;
    string lastFour = t.Substring(t.Length - 4, 4);
  28. Re: Trying to search excel and return a count number, any ideas to help jump start me

    ws.Range("A" & i & ":M" & i).Interior.ColorIndex = 35
  29. Replies
    1
    Views
    664

    VS 2008 Re: SQL Script maker for Access DB

    This could be a good place to start:
    http://www.codeproject.com/KB/cs/Sql_Script_Generator.aspx
  30. Re: Trying to search excel and return a count number, any ideas to help jump start me

    Exit For
    http://msdn.microsoft.com/en-us/library/t2at9t47.aspx
  31. Replies
    2
    Views
    528

    VS 2008 Re: Query Large Tab Del file

    You should be able to use ADO.NET to connect to it and read it into a DataTable - just as you would if you were connecting to a database.

    Here are some connection strings for text files:...
  32. Replies
    7
    Views
    740

    Re: Need help using a DLL I made

    Sure. Let's say your Usercontrol has a TextBox and you only want to access its Text property from your form. Inside of your UserControl class which is in your DLL, you'd do something like:
    Public...
  33. Replies
    7
    Views
    740

    Re: Need help using a DLL I made

    Expose the properties of the child controls that you want to access via a public property on your UserControl.
  34. Thread: asp.net or html?

    by nmadd
    Replies
    2
    Views
    581

    Re: asp.net or html?

    If you write a website only in HTML, it will be static - it will never change unless you change it.

    If you want any dynamic features at all in your site you'll need to use something like ASP.NET....
  35. Replies
    11
    Views
    2,757

    VS 2008 Re: Browse and check Links

    If you get help via PM or MSN, that means that nobody else will be able to read your thread and get any help if they have the same question in the future.


    What do you mean? If it returns false...
  36. Replies
    3
    Views
    1,297

    Re: [VB 2008]Moveable Window inside a form??

    Perhaps I'm misunderstanding the question, but do you just want an MDI application?
    http://msdn.microsoft.com/en-us/library/xyhh2e7e.aspx
  37. Replies
    4
    Views
    3,230

    Re: textBox.Text.Replace WPF problem

    Here's another way for fun.

    private void button1_Click(object sender, EventArgs e)
    {
    string[] bad = { "A", "B", "C" };
    string[] good = { "¢", "£", "¤" };

    string s =...
  38. Replies
    11
    Views
    2,757

    VS 2008 Re: Browse and check Links

    You don't need the WebBrowser control to check a URL: http://www.vb-helper.com/howto_net_validate_url.html
  39. Replies
    12
    Views
    1,033

    VS 2008 Re: Windows 7 and Data Connections

    How about one of these?
    http://reazulk.wordpress.com/2009/05/19/ole-db-ms-access-database-connection-problem-in-64bit-operating-with-c/
    http://www.vb-tips.com/64bitAccess.aspx
  40. Replies
    1
    Views
    621

    VS 2008 Re: Proxy in a WebClient?

    Automatic Proxy Detection
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width