Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
T

testy_proconsul

@testy_proconsul
About
Posts
23
Topics
5
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • parameter
    T testy_proconsul

    Yes, for sure. It also depends on the complexity or type of your architecture, maybe there exist design patterns. But independent of that: yes, you can do it like that. But you have to take care if you use objects as parameters. If you write into these objects from within your "test" method, the access has to be synchronized (ensuring that only one thread can write data at the same time).

    solidIT.de - under construction Components for Microsoft .Net audittrail, objectcomparer, deepcopy and much more ... alternatively: objectcomparer.codeplex.com

    C# tutorial question

  • Adding Attributes to Control instances
    T testy_proconsul

    Hello all! i want to add my custom attribute to a Control member of a form. For exmaple there is the following code line: Public WithEvents grdTest as DataGridView Now, at runtime, i want to read the the information of the MyAttribute instance of the grdTest-Control but when i call GetCustomAttributes of the PropertyInfo of the grdTest control instance the resulting array has zero elements ... it seems, that the changes i made in the TestForm.Designer.vb are not compiled ... has anyone any idea? please help me. greets testy solidIT.de - under construction Components for Microsoft .Net audittrail, objectcomparer, deepcopy and much more ...

    Visual Basic csharp data-structures help question

  • Adding Attributes to Control instances
    T testy_proconsul

    argh!!! :) thank you.... hmm ... yes: in VB you must use "<" and ">" and if you want to write it in multiple lines (like in C#) ... you must write an underscore... that is very "un-handy" (??) _ _ Public Sub Test() End Sub the code line looks like: Public WithEvents grdTest as DataGridView solidIT.de - under construction Components for Microsoft .Net audittrail, objectcomparer, deepcopy and much more ... -- modified at 10:47 Tuesday 27th March, 2007

    Visual Basic csharp data-structures question

  • Adding Attributes to Control instances
    T testy_proconsul

    Hello all! i want to add my custom attribute to a Control member of a form. For exmaple there is the following code line: _ Public WithEvents grdTest as DataGridView Now, at runtime, i want to read the the information of the MyAttribute instance of the grdTest-Control but when i call GetCustomAttributes of the PropertyInfo of the grdTest control instance the resulting array has zero elements ... it seems, that the changes i made in the TestForm.Designer.vb are not compiled ... has anyone any idea? :) greets testy

    solidIT.de - under construction Components for Microsoft .Net audittrail, objectcomparer, deepcopy and much more ...

    Visual Basic csharp data-structures question

  • How can I call properties a run time created button?
    T testy_proconsul

    "i dont wanted to cut you short" ... guffa. and sorry for my bad english :) but opinion is to keep the overhead as small as possible and to use predefined functionality. generally this keeps overview, readability and conformity ...

    solidIT.de - under construction Components for Microsoft .Net audittrail, objectcomparer, deepcopy and much more ...

    Visual Basic

  • How can I detect which button is clicked on the form?
    T testy_proconsul

    Private Sub AddButtons Dim btn As Button For i As Integer = 1 To 10 btn = New Button() btn.Name = "GBtn" & i.ToString() btn.Text = "Push " & i.ToString() btn.Top = btn.Height * i AddHandler btn.Click, AddressOf GBtn_Click Me.Controls.Add(btn) Next End Sub Private Sub GBtn_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) MessageBox.Show(sender.ToString()) Select Case DirectCast(sender, Button).Name Case "GBtn1" Case "GBtn2" End Select End Sub

    solidIT.de - under construction Components for Microsoft .Net audittrail, objectcomparer, deepcopy and much more ...

    Visual Basic

  • How can I call properties a run time created button?
    T testy_proconsul

    hi, it is easier as you think either you iterate the "Controls" collection of the Form: For Each ctl as Control In Me.Controls If ctl.Name = "GButton2" Then ctl.Backcolor .... Exit For End If Next or you just call the following: Me.Controls("GButton2").Basckcolor ... storing it in an array is not necessary, because the added controls are already stored in an collection (Me.Controls)

    solidIT.de - under construction Components for Microsoft .Net audittrail, objectcomparer, deepcopy and much more ...

    Visual Basic

  • Interface not Supported / Schnittstelle nicht unterstützt
    T testy_proconsul

    Hello all! I have a really strange problem wehen i want to build a setup solution. i hope this is the right newsgroup. undependent to the source-project: if i create a setup-project with or without primary output and i want to build it - the compiler-output gives me the error message "Schnittstelle nicht unterstützt." i think in english it could look like "Interface not supported".... i have no idea how to fix this ... if anyone has a solution to this then please help!!!!!

    solidIT.de - under construction Components for Microsoft .Net audittrail, objectcomparer, deepcopy and much more ...

    .NET (Core and Framework) help csharp tutorial workspace

  • Exporting to Excel
    T testy_proconsul

    hi, if you do not need any formatting in your destination excel file you can create a simple text file with the extension xls. you only have to seperate your content throug vbTab and vbNewLine.

    solidIT.de - under construction Components for Microsoft .Net audittrail, objectcomparer, deepcopy and much more ...

    Visual Basic database tutorial question

  • Getting the name of an instance
    T testy_proconsul

    hi! you can't get the variable name. With Reflection you can get types of assemblies, for example. but a variable name is not metadata in a compiled assembly, because a variable is only a location in the ram.

    solidIT.de - under construction Components for Microsoft .Net audittrail, objectcomparer, deepcopy and much more ...

    Visual Basic question tutorial

  • database tables search using vb.net
    T testy_proconsul

    google is your friend... http://forums.oracle.com/forums/thread.jspa?messageID=1619717 ...

    solidIT.de - under construction Components for Microsoft .Net audittrail, objectcomparer, deepcopy and much more ...

    Visual Basic help database csharp

  • difference between shadows and overloads in vb.net.
    T testy_proconsul

    For example you have a base class: Public Class Exhibitionist Public Sub Show() End Sub End Class and another class which derives from the Exhibitionist class: Public Class SpecializedExhibitionist Inherits Exhibitionist ---A) Public Shadows Sub Show() End Sub ---B) Public Overload Sub Show( ByVal fullInfo As Boolean) End Sub End Class - with version A) you can call SpecializedExhibitionist_Instance.Show() - with version B) you can call SpecializedExhibitionist_Instance.Show() SpecializedExhibitionist_Instance.Show( true ) Shadows means, that the Function "Show" of the base class is "cloaked" Overloads means, that you add a new "Show" function with other parameters

    solidIT.de - under construction Components for Microsoft .Net audittrail, objectcomparer, deepcopy and much more ...

    Visual Basic csharp

  • database tables search in vb.net
    T testy_proconsul

    no prob SELECT COUNT(*) AS TABLE_EXISTS FROM MSysObjects WHERE Name = 'Forms' - and now you only have to replace "Forms" in the where clause with the table you want to check - if the TABLE_EXISTS field is bigger than 0 (zero) then the table exists otherwise it doesn't

    solidIT.de - under construction Components for Microsoft .Net audittrail, objectcomparer, deepcopy and much more ...

    Visual Basic csharp database

  • VB.net application using mysql database
    T testy_proconsul

    http://dev.mysql.com/tech-resources/articles/dotnet/

    solidIT.de - under construction Components for Microsoft .Net audittrail, objectcomparer, deepcopy and much more ...

    Visual Basic csharp database mysql winforms

  • database tables search in vb.net
    T testy_proconsul

    just try this SELECT * FROM MSysObjects

    solidIT.de - under construction Components for Microsoft .Net audittrail, objectcomparer, deepcopy and much more ...

    Visual Basic csharp database

  • How to Get Execution Time
    T testy_proconsul

    what about Dim timeStampBegin As DateTime Dim timeStampEnd As DateTime Dim timeDiff as TimeSpan timeStampBegin = DateTime.Now() ... query ... timeStampEnd = DateTime.Now() timeDiff = timeStampEnd.Substract( timeStampBegin )

    solidIT.de - under construction Components for Microsoft .Net audittrail, objectcomparer, deepcopy and much more ...

    Visual Basic database sql-server sysadmin help tutorial

  • globalization/localization
    T testy_proconsul

    hello sherwin, with .net it is easier as you think. the gui (your forms) is representes through resx-Files and the code is in a vb-file. you can see this by activating "show all files" on top of the project explorer. for example you have your forms in english language and you want to support german, then you only have to select each form an set the property "localizeable" to "true". after that you select the langauge and the vs-editor automaticly creates an additional resx-file to your form. you can change the ui as you like > the code file remains the same ... but look at these links for detailed information: www.codeproject.com/dotnet/Localization.asp http://www.microsoft.com/globaldev/getwr/dotneti18n.mspx http://www.google.de/search?hl=de&ie=ISO-8859-1&q=.net+localization&meta=

    solidIT.de - under construction Components for Microsoft .Net audittrail, objectcomparer, deepcopy and much more ...

    Visual Basic help announcement

  • Help needed for Displaying Notification Icon
    T testy_proconsul

    hello! first, you need two applications: - one is your service with the main functions and libraries and - second is an tray application which communicates with your service for example anti virus programs run services (the main anti virus program) and you can control the behavior of the functions provided by the service over an desktop application - for example in the tray

    solidIT.de - under construction Components for Microsoft .Net audittrail, objectcomparer, deepcopy and much more ...

    C# csharp help tutorial question

  • Prolog.Net [modified]
    T testy_proconsul

    good morning, all! has someone experienced prolog for .NET (P#)? http://www.dcs.ed.ac.uk/home/stg/Psharp/[^] -- modified at 3:50 Monday 10th July, 2006

    The Lounge csharp question

  • Secure Code of an Assembly
    T testy_proconsul

    im going to share some code with codeproject.com especially parts and core solutions of the whole program. but the whole product does not help anybody and there is no reason to decompile the end product and recompile it. furthermore this is a topic i have not be engaged with. demand costs

    The Lounge tools question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups