Search:

Type: Posts; User: neodatatype

Page 1 of 3 1 2 3

Search: Search took 0.16 seconds.

  1. Replies
    10
    Views
    7,731

    Re: What is the best reporting tool?

    Give a look at my little FREE project: MyNeoReport
  2. Re: Display gif image dynamically in Crystal Report

    This is one of the things that made me abandon CR and make my reporting library :) (see signature)
  3. Re: Report Engine Tool Evaluations, looking for

    Here I am :)

    I looked some of these time ago and some now, this is my really-short opinion (I hadn't spent so much time on them)

    XtraReports from DevExpress: seems good, but there's something...
  4. Replies
    1
    Views
    1,012

    Re: Printing a Page with Page Break

    mmm... maybe these can be of some help

    http://www.webreference.com/authoring/languages/xhtml/beginning/chap13/3/
    http://www.w3schools.com/css/css_ref_print.asp
  5. Replies
    1
    Views
    3,735

    Load and unload Assembly at runtime

    Hi all!

    I need to load an assembly given its fisical file path.
    And (important) I need to be able to *unload* the assembly when I no more need it, so that its .exe file will be released and I can...
  6. Replies
    5
    Views
    700

    Excuse me... but I still see only a WndProc in...

    Excuse me... but I still see only a WndProc in the MessageWindow class, that I cannot figure out how this can be of some help.

    Thanks.
  7. Replies
    5
    Views
    700

    Sure this is CFW compliant?

    Sure this is CFW compliant?
  8. Replies
    5
    Views
    700

    CompactFramework and Window Messages

    Hi all,

    I'm using the Compact Framework and VB.net to develop embedded apps.

    I really like to intercept the WM_VSCROLL message of a DataGrid, since the CF boys forgotten to implement the Scroll...
  9. Replies
    0
    Views
    548

    Get the call tree

    Hi all,

    Does anyone know if exists something that give the tree of the calls in a sub/function?

    I want to know what sub are called by my sub and for each of these wich subs are called and so...
  10. Replies
    0
    Views
    483

    CompactFramework and SQLserver

    Hi all!

    I got a little problem with the connection of a pocketPC to a SQL server DB.

    I noticed that the DataAdapter.Fill(DataSet) is reeeeealy slow... (over 30 secs for some records!)

    I...
  11. Thread: 3d

    by neodatatype
    Replies
    5
    Views
    620

    Re: 3d

    I asked for this in other 3D-expert-places and the simplest way to do this is to use these equations:



    Xscreen = (X3d * D) / (Z3d + D) + Xcenter
    Yscreen = (Y3d * D) /( Z3d + D) + Ycenter

    ...
  12. I tryied the ApiViewer suggested but it crashes...

    I tryied the ApiViewer suggested but it crashes as it stats.

    I tryied it just to view as it will convert the VB6 Any keyword that in VB.NET is no longer supported.

    You have to Declare multiple...
  13. Replies
    23
    Views
    63,415

    Re: C/C++ - Interesting swap function

    Take a look at this:

    #define swap(x, y) x^=(y^=(x^=y))

    :)

    By
  14. Replies
    8
    Views
    851

    The esyest way is to do 200 Debug.Print because...

    The esyest way is to do 200 Debug.Print because the Debug window has only 200 rows visibles.

    Else you have to do and use a DLL that is a VB-AddIn.

    This can be used as mztools, but you can use...
  15. Replies
    1
    Views
    532

    Re: Custom UserControl and Method calls

    You cannot use ASP.NET as the old ASP!
    ASP.NET does not support html and asp misture: it has a code and a html section well separated.

    To do what you want you should create a asp.net webcontrol...
  16. Replies
    12
    Views
    1,353

    Try this. Is in C# but is quite simple to...

    Try this.
    Is in C# but is quite simple to convert to VB (although you can use http://www.kamalpatel.net/ConvertCSharp2VB.aspx to convert)



    Byte[] b =...
  17. Replies
    3
    Views
    948

    Re: Execute code at runtime

    Sure!

    You can do this using Reflection.
    It does not compile a thing, just retrieve informations about objects and methods into assemblies and let you call them at runtime.

    Take a look to this...
  18. Replies
    1
    Views
    702

    Re: WriteLine vs Write

    If you have enough memory the theory says that accessing to memory is faster than disk.

    Take care about concatening strings: VB string manager is slow, you shoud use the StringBuilder class...
  19. Replies
    11
    Views
    1,311

    Re: Using an array like a variable

    I don't understand the question.

    Maybe you are searching for the Array.CopyTo() method.

    Bye!
  20. Replies
    9
    Views
    1,114

    Re: Make it look like XP ???

    You can also use the Magic library (http://www.dotnetmagic.com/

    Is the same used by SharpDevelop.

    Bye
  21. Replies
    2
    Views
    909

    In .NET there is not a corrispondence to "Any"...

    In .NET there is not a corrispondence to "Any" data type of older VB version.

    You should use more versions of the Declare statement with the "right typed" parameter.

    Bye!
  22. Thread: dsdsdf

    by neodatatype
    Replies
    0
    Views
    1,639

    dsdsdf

    d
  23. Using a .NET assembly as a COM ActiveX

    Hi all!

    I've a simple question, but I cannot find a working example for it:

    I've my lillte .NET class, say:



    class MyClass
    {
  24. Replies
    7
    Views
    1,129

    You can also use my evaluator (see the signature)...

    You can also use my evaluator (see the signature)

    It's about 25% faster that Ms ScriptControl :)
  25. Replies
    8
    Views
    934

    Sorry, this was for VB.NET. In VB you can use...

    Sorry, this was for VB.NET.
    In VB you can use the ActiveX version in a very similar way:


    Dim oExpression As axExpression
    Dim s as Double

    Set oExpression = new axExpression...
  26. Replies
    8
    Views
    934

    Have you tryied mine? (see the signature) ...

    Have you tryied mine? (see the signature)



    using NeoDatatype.netEEE;

    Dim oExpression As neoExpression
    Dim sFormula As String
    Dim s as Double
  27. Replies
    13
    Views
    1,231

    This is lamer :) You can set the speed...

    This is lamer :)



    You can set the speed of intellisense.
    It's a feature, not a "cannot".

    Maybe you would prefere the intellisens to not appear if you write quickly.

    And if the...
  28. Replies
    2
    Views
    698

    It's exactly the same thing I needed. I foud a...

    It's exactly the same thing I needed.

    I foud a way to get these infos only throu a well-known class name.

    Now I have not the code, I can Help you tomorrow.

    Bye
  29. Replies
    18
    Views
    1,433

    Re: Whats wrong with the math code?

    You should use a math expression evaluator.

    See mine in sign!
  30. Re: How Can I let a user create formulas? Can’t change a textbox 2 formula…

    Use a math parser.

    Use MY math parser :)

    you find it in signature, it's flexible and faster than Microsoft Script Control
  31. Replies
    2
    Views
    997

    Re: Re: test attach

  32. Replies
    2
    Views
    997

    Re: test attach

  33. Replies
    2
    Views
    997

    test attach

    yeah!
  34. Replies
    6
    Views
    2,278

    Re: Algebraic Equation Solver

    Use a math parser.

    Use MY math parser :)

    you find it in signature, it's flexible and faster than Microsoft Script Control
  35. Replies
    9
    Views
    2,467

    But... VS does not launch the csc.exe? If yes,...

    But... VS does not launch the csc.exe?
    If yes, why VS need a different references list?

    Thanx
  36. Try my .NET parser see the sign

    Try my .NET parser

    see the sign
  37. Replies
    2
    Views
    698

    Get the ActiveX version

    Someone know how to retrieve the version of the ocx/dll included into the exe at runtime?

    I'd like to have a window with the infos about the components actually used by the program.

    I know I...
  38. Replies
    9
    Views
    2,467

    Thanks, that's the trick :) But I does not...

    Thanks, that's the trick :)

    But I does not understand why I have to add it in VS and not in the csc command line...

    :)
  39. Replies
    9
    Views
    2,467

    System.Runtime.Remoting.Channels.Tcp ???

    Why?

    Why when I try to compile this simple sample (hehe) MS VS tell me that the

    System.Runtime.Remoting.Channels.Tcp

    Namespace does noe exists???

    Then I try to compile it with csc.exe by...
  40. Replies
    7
    Views
    1,143

    [QUOTE Possibly through remoting??? ...

    [QUOTE
    Possibly through remoting???
    [/QUOTE]

    Someone give me the same answer, but no one can tell me how :(
Results 1 to 40 of 107
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width