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
A

Atara

@Atara
About
Posts
22
Topics
6
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • String obfuscation and function names
    A Atara

    Thanks. meanwhile I use .Net 2, for "old" computers, but I will keep this in mind when upgrading.

    Atara

    Visual Basic com question

  • String obfuscation and function names
    A Atara

    It seems that I must exclude it. and there is no way to re-write the code so I donot use function-name as a string. Thanks

    Atara

    Visual Basic com question

  • String obfuscation and function names
    A Atara

    Ok, Thanks.

    Atara

    Visual Basic com question

  • String obfuscation and function names
    A Atara

    The obfuscator changes the name of the property. But I cannot tell it to change DisplayMember accordingly. Can I re-write this code so the DisplayMember is not a string with a function name? Atara

    Atara

    Visual Basic com question

  • String obfuscation and function names
    A Atara

    Can I change the following code and safely obfuscate it ? or that I must exclude it from obfuscating (e.g. http://stackoverflow.com/questions/2555355/obfuscating-asp-net-dll-breaks-web-application/2555497#2555497[^] )

    Dim fontNames As New ArrayList
    . . .

    Me.myCtrlCmbFontName.DataSource = fontNames
    Me.myCtrlCmbFontName.DisplayMember = "mcpGetName" ' <- Here I get a warning

    Public ReadOnly Property mcpGetName() As String ' <- because of this
    Get
    Return "xxx"
    End Get
    End Property

    Atara

    Visual Basic com question

  • Installation error (Microsoft.Mshtml.dll could not load)?
    A Atara

    In my case it was because I referenced different "Microsoft.mshtml.dll" files (same file size, but different content). look at the Reference "Microsoft.mshtml.dll" , "Properties", "Path" field. more details in myanswer to http://stackoverflow.com/questions/2068159/[^]

    Atara

    C# csharp dotnet visual-studio help question

  • newbie: How can I see the warnings when creating DB from file?
    A Atara

    found it: mysql> SHOW WARNINGS;

    Atara

    Database database question mysql help

  • newbie: How can I see the warnings when creating DB from file?
    A Atara

    in the mysql command-line I did: mysql> create database myDB; mysql> use myDB; mysql> source mySource.sql; and I get lines as - Query OK, x rows affected, y warnings (z sec) My question: How\where can I see what were the warnings, so I can fix them? Thanks,

    Atara

    Database database question mysql help

  • Who finds it first... [closed] : [modified]
    A Atara

    if(stSourcePath && stDestPath && (stSourcePath.size==0)||(stDestPath.size==0)) ???

    Atara

    Clever Code com help

  • On Windows Vista, Process.Start() generates Win32Exception.
    A Atara

    thread continue in [url:http://www.developersdex.com/vb/message.asp?r=5632660&p=1121[^]]

    Atara

    Visual Basic question

  • On Windows Vista, Process.Start() generates Win32Exception.
    A Atara

    On Windows Vista, Process.Start() generates Win32Exception. Sample Code: Dim selfProc As String = System.Windows.Forms.Application.ExecutablePath System.Diagnostics.Process.Start(Chr(34) & selfProc & Chr(34)) The generated Exception: System.ComponentModel.Win32Exception: The parameter is incorrect at System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStartInfo startInfo)) at System.Diagnostics.Process.Start() at System.Diagnostics.Process.Start(ProcessStartInfo startInfo) at System.Diagnostics.Process.Start(String fileName) at ...MyProcedure(...) What is wrong with my code? Thanks

    Atara

    Visual Basic question

  • Run.Net 1.1 programs on Vista, from network drive.
    A Atara

    Thanks for the info.

    Atara

    .NET (Core and Framework) question csharp dotnet sysadmin security

  • Run.Net 1.1 programs on Vista, from network drive.
    A Atara

    We cannot run a .Net 1.1 programs on Vista, from a network drive (on XP). On the Vista computer, using the "Microsoft .NET Framework 1.1 Wizards" we tried to change the security level of "Local Inranet" zone, as we do on XP computers, but it did not help. Finally we discovered that adjusting the security level of "Internet" zone to "Full Trust" helps, and only then we can run our program from the network drive. Why does Vista consider network drive to be "Internet" and not "Local Inranet" as XP does?

    Atara

    .NET (Core and Framework) question csharp dotnet sysadmin security

  • Registration Free COM with VS 2003
    A Atara

    or, you can use only one manifest file, e.g: ... Note: all *.ocx, *.dll files of the activeX should also be in the same folder, with the manifest and the exe files. Atara

    Visual Basic com question visual-studio

  • Registration Free COM with VS 2003
    A Atara

    I solved it with the help of: (1) Escape DLL Hell - Simplify App Deployment with ClickOnce and Registration-Free COM (VS 2005 Article) http://msdn.microsoft.com/msdnmag/issues/05/04/RegFreeCOM/ (2) Registration-Free Activation of COM Components: A Walkthrough (VS 2003 Article) http://msdn2.microsoft.com/en-us/library/ms973913.aspx (3) oleView.exe C:\Program Files\Microsoft Visual Studio .NET 2003\Common7\Tools\oleView.exe (or . . . \Tools\Bin) oleView.exe: File->View TypeLib The solution: 1. The main manifest (myProg.exe.manifest): ... more files ... 2. The myAxFileN manifest (myAxFileN.X.manifest): The id are taken from oleView.exe: File->View TypeLib generated file. I hope it will help you to start digging your specific needs. Atara

    Visual Basic com question visual-studio

  • Registration Free COM with VS 2003
    A Atara

    The manifest should contain clsid. This technologie (COM dll can work without being registered) should work on XP sp2, and Vista. according to the documentation it should work on .Net 1.1 but I can not find the exact format of the needed manifest file :( more about this "Reg Free COM" technologie in - http://msdn.microsoft.com/msdnmag/issues/05/04/RegFreeCOM/[^]

    Atara

    Visual Basic com question visual-studio

  • Registration Free COM with VS 2003
    A Atara

    I recently learned that on XP (and later) OS, you do not need to register activeX, if you use "isolated" option from vs 2005 menu to create a special manifest file. Does anyone know how can I make the required manifest lines if I only have VS 2003 ? Thanks,

    Atara

    Visual Basic com question visual-studio

  • &amp;amp; in XSL parameters
    A Atara

    (sorry, I forgot to set the Do not treat <'s as HTML tags) In the xsl file, I use Atara

    XML / XSL question csharp xml

  • &amp;amp; in XSL parameters
    A Atara

    In the xsl file, I use It all started when I discovered that I have a problem when my path contains special unicode chars, so I tried to replace all non-Alpha-Numeric characters with their corresponding html entities. so in VB .Net I get the unicodePath, I replace the characters I want, and I send it as parameters to the XSL. If there is a simpler way, I would like to know about it... Thanks Atara

    XML / XSL question csharp xml

  • &amp;amp; in XSL parameters
    A Atara

    I tried links_files\ref2_books.gif

    myDir\myFile.gif

    In the

    , the string is exactly as I want it, but in the I still get - "C:\Documents and Settings" Maybe disable-output-escaping has no effect in because it might cause illegal-xml . Any other suggestions? Thanks, Atara

    XML / XSL question csharp xml
  • Login

  • Don't have an account? Register

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