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

Search:

Type: Posts; User: coolbiz

Page 1 of 80 1 2 3 4

Search: Search took 0.74 seconds.

  1. Re: Class, property and code included, what is wrong? one step away from a working p

    I think you're saying this code is not working:



    Dim coord As Coordinate() = New Coordinate(BakjesLijst.Count - 1) {}
    For count = 0 To Bakjeslijst.Count - 1
    ...
  2. Re: Classes and Interfaces.... Code included, what is wrong...?

    Hello,


    STRUCTURE does not have to appear in a container like MODULE. It works almost the same like CLASS.
    CALL is no longer required.


    But you should be good to go with the current code...
  3. Re: Classes and Interfaces.... Code included, what is wrong...?

    :) Good attitude.


    Replace TYPE w/ STRUCTURE or CLASS
    Replace REDIM PRESERVE myArray(n) w/ ArrayList (MSDN link) which exposes .Add() to add items into the list. The link to MSDN contains...
  4. Re: Classes and Interfaces.... Code included, what is wrong...?

    Hello,


    INTERFACE is not for storing data but for defining "contract" for your objects (MSDN)
    Use STRUCTURE if you want to store simple data
    ArrayList can be used without having to worry...
  5. Replies
    1
    Views
    1,484

    Re: loop through a data tables

    Hi,

    Not sure how you get 4 tables since there is only one SELECT. You maybe getting the "messages" (usually the row affected count) from the INSERTs (unless your spMoldingBarcodeCreate actually...
  6. Re: Is it safe to use Microsoft Application blocks?

    Well, the blocks are there as helper functions. So if you do not want to spend time in re-creating database connection functionalities, you can just import the DATA block and use it.

    I sometimes...
  7. Replies
    11
    Views
    3,158

    Re: What is a Serializable class?

    :) It is not just bell and whistle thing, XML serialization is required for transmistting data for WEBSERVICE.

    So you serialize your object based on who you want to transmit it to. For example,...
  8. Replies
    5
    Views
    4,413

    Re: convert a string to 64 bit integer in vb.net

    Can you give a sample of this string? Is it in HEX format? If not how do you convert alphabet into number?
  9. Thread: Help with POP3

    by coolbiz
    Replies
    1
    Views
    1,316

    Re: Help with POP3

    You can get 3rd party component to help in POP3 communication. I've used:
    1. http://www.aspnetpop3.com/
    2. http://www.powerupasp.net/

    Parsing the email on the other hand is a different story all...
  10. Replies
    6
    Views
    1,887

    Re: App.path in .net

    When constructing PATH, use System.IO.Path.Combine() method.
  11. Replies
    1
    Views
    1,077

    Re: Showing a Photo DB field in a Form

    Sometimes the answer lies within a simple search on this forum.

    http://www.codeguru.com/forum/showthread.php?t=343134
  12. Re: Help please! System.Runtime.InteropServices.ComException !!!

    This might be a stupid question but have you installed FW 2.0 Beta 2 on your Windows 2003 webserver?
  13. Replies
    2
    Views
    1,223

    Re: Pass variables from windows application

    What is the server application? A webservice or an ASPX page?
  14. Re: Which is faster ASP.Net server controls or classic ASP HTML controls?

    Before we go on, I just wanna remind you that ASP.NET is a server side technology. The output from ASP.NET is still HTML tags/elements and thefore interpreted by browsers as it is w/ other server...
  15. Re: application that track ftpclient requests and runs in background of ftpserver

    The only way that I could think of is to hook into network socket stack (no idae on how to do it) which pretty much the same way how network sniffer works.
  16. Replies
    2
    Views
    1,128

    Re: Doubt on ADO.Net

    Auto-numbered field cannot be updated from the client-side. Eventhough this number is generated when creating new DATAROW in the DATATABLE, this value has to be ignored when doing an INSERT (thus,...
  17. Replies
    9
    Views
    1,531

    Re: Connecting To Remote SQL server

    I've tested that workaround and it does work. However, you will need to enabled MIXED user security setting (allow windows and SQL server authentications).
  18. Replies
    9
    Views
    1,531

    Re: Connecting To Remote SQL server

    A workaround that I could think of is (not sure if this will work w/ SQL server) to redirect an external port to an internal port (IP forwarding). So open up an arbitrary external port number (like...
  19. Replies
    3
    Views
    1,888

    Re: CType(Sender help

    CType(sender, Label).Name
    Think about this line for a second. How does this makes perfect sense? :)
  20. Replies
    9
    Views
    1,531

    Re: Connecting To Remote SQL server

    Are you sure your ISP does not block SQL server port?
  21. Replies
    2
    Views
    1,262

    Re: What's wrong with my code..?

    Try using the fullpath: <System.Runtime.InteropServices.MarshalAs(..)>
  22. Replies
    3
    Views
    1,090

    Re: control with show method

    Okay, I might not understand your problem exactly so bear w/ me.

    So, have built a usercontrol that is basically a FORM (inherited System.Windows.Form) and has bunch of other controls on it right?...
  23. Re: Function works during step through but not on regular run

    Hmm ... that is the wierd thing. It works fine for me w/o putting the delay in and I've tried it on my home and work PC. I'm wondering if you have updated your .Net framework to the latest version....
  24. Replies
    16
    Views
    6,930

    Re: Drop Down List and Enabled=false

    Questions:

    1. Is this an ASP.NET app?

    2. Who set the default value for the dropdownlist?
  25. Re: Function works during step through but not on regular run

    I know that they are almost identical. I copied it from Microsoft website and made a little modification just to make it work w/ OPTION EXPLICIT and OPTION STRICT set to ON.

    I've made a test app...
Results 1 to 25 of 2000
Page 1 of 80 1 2 3 4





Click Here to Expand Forum to Full Width

Featured