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
H

horacyjr

@horacyjr
About
Posts
20
Topics
15
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Soap Errors (Soap Toolkit 3.0)
    H horacyjr

    When the component COM+ access a WebServices through the Soap Toolkit (version 3.0), the messages below are generated: Soap error: One of the parameters supplied is invalid Soap error: Loading of the WSDL file failed Soap error: XML Parser failed at linenumber 1,lineposition 0, reason is:No data is avaliable for the request resource Architecture: Windows DNA, Vb6 + ASP + Oracle WebServices: Soap Toolkit versão 3.0

    Web Development wcf xml oracle com

  • How to give Focus in form using DLL inside other DLL
    H horacyjr

    i am using a ddl to call other dll to show a form, that´s ok.But the problem is, i can not give the focus to the form, if there are more forms or programs opened the form that i call stay under the others , i want it to apears in front of all the others things opened,i have already used ShowModal but it does not work, can you help me, i am using C++ Builder(Borland) in windows 2000. tks

    C / C++ / MFC help c++ delphi tutorial

  • How to give Focus in form using DLL inside other DLL
    H horacyjr

    i am using a ddl to call other dll to show a form, that´s ok.But the problem is, i can not give the focus to the form, if there are more forms or programs opened the form that i call stay under the others , i want it to apears in front of all the others things opened,i have already used ShowModal but it does not work, can you help me, i am using C++ Builder(Borland) in windows 2000. tks

    Managed C++/CLI help c++ delphi tutorial

  • how to use TOP N in c#.net ?
    H horacyjr

    this was the answwer , thanks for helping http://msdn.microsoft.com/library/default.asp?url=/library/en-s/crystlrf/html/crlrftopbottomnsortfieldclasstopic.asp private TopBottomNSortField GetTopBottomNSortField (int sortFieldIndex) { TopBottomNSortField topBottomNSortField; // Get the SortField object by index, cast it as a // TopBottomNSortField object, and return it. topBottomNSortField = Report.DataDefinition.SortFields[sortFieldIndex] as TopBottomNSortField; if (topBottomNSortField != null) return topBottomNSortField; else return null; }

    C# csharp help tutorial question

  • how to use TOP N in c#.net ?
    H horacyjr

    i need a help using crystal.net with c#.net here is my problem: i want to use TOP N propriety in code on c#.net, but i just know how to do it on crystal, can anybody help me ? tks

    C# csharp help tutorial question

  • Problems with window.showModalDialog(
    H horacyjr

    Please Help, when i use the comand window.showModalDialog( it opens another webform as popup , but when i click ina button i this it opens the same webform again. how to solve that ? My application is in c# asp.net

    ASP.NET csharp asp-net help tutorial question

  • How to open a pop
    H horacyjr

    I am using c# asp.net and i have a user's file webform and i need to open other webform or pop up to select user, how to do that ?

    ASP.NET csharp asp-net tutorial question

  • Help - Please Help Get Windows User
    H horacyjr

    need the user from windows, so i can ot get that because when i use Environment.UserName it returns ASP.net, i do not want that, i want the user that made a logon on windows, so if exists an API from windows that returns that, or any class from asp.net, please help me.

    ASP.NET csharp asp-net json help workspace

  • Help - Please Help Get Windows User
    H horacyjr

    I need the user from windows, so i can ot get that because when i use Environment.UserName it returns ASP.net, i do not want that, i want the user that made a logon on windows, so if exists an API from windows that returns that, or any class from asp.net, please help me.

    C# csharp asp-net json help workspace

  • Obfuscator - Crytografy code
    H horacyjr

    Yes, i agree with you, but i need an answer about the best one. so i posted it again. tks

    C# career

  • Obfuscator - Crytografy code
    H horacyjr

    i would like to know the best obfuscator or the most used one. i need an obfuscator to make harder the job for people who wants to use reverse engineering to read my code. Thanks

    C# career

  • Obfuscator - Crytografy code
    H horacyjr

    so i can not protect my code, i mean if i do a small project and i want to sell this project, and then somebody can read my code? i can not hide or crytography ? how does the companies do ?

    C# csharp question

  • Obfuscator - Crytografy code
    H horacyjr

    I work with c#.net and i need a obfuscator to Cryptography the code of the projects, for nobody can read the code using a reverse engineering. i would like to know which is the best obfuscator? Thanks Junior Lopes

    C# csharp question

  • Windows Service
    H horacyjr

    i have 2 applications, one is windows application, the other is windows service. the windows application must start and stop the windows service. so i neeed to have, a setup that can install both at the same. the windows application must start and stop the service. is that possible ? i have other question, when i desinstall the program can it stop the service and desinstall the windows service and the windows application? my purpose is to make a program, that uses windows service, controlled by windows application. Thanks for helping

    C# question workspace

  • windows service
    H horacyjr

    this is my code in windows application, that calls the other project the windows application class ServiceInstaller { #region Private Variables private string _servicePath; private string _serviceName; private string _serviceDisplayName; #endregion Private Variables #region DLLImport [DllImport("advapi32.dll")] public static extern IntPtr OpenSCManager(string lpMachineName,string lpSCDB, int scParameter); [DllImport("Advapi32.dll")] public static extern IntPtr CreateService(IntPtr SC_HANDLE,string lpSvcName,string lpDisplayName, int dwDesiredAccess,int dwServiceType,int dwStartType,int dwErrorControl,string lpPathName, string lpLoadOrderGroup,int lpdwTagId,string lpDependencies,string lpServiceStartName,string lpPassword); [DllImport("advapi32.dll")] public static extern void CloseServiceHandle(IntPtr SCHANDLE); [DllImport("advapi32.dll")] public static extern int StartService(IntPtr SVHANDLE,int dwNumServiceArgs,string lpServiceArgVectors); [DllImport("advapi32.dll",SetLastError=true)] public static extern IntPtr OpenService(IntPtr SCHANDLE,string lpSvcName,int dwNumServiceArgs); [DllImport("advapi32.dll")] public static extern int DeleteService(IntPtr SVHANDLE); [DllImport("kernel32.dll")] public static extern int GetLastError(); #endregion DLLImport public bool InstallService(string svcPath, string svcName, string svcDispName) { #region Constants declaration. int SC_MANAGER_CREATE_SERVICE = 0x0002; int SERVICE_WIN32_OWN_PROCESS = 0x00000010; //int SERVICE_DEMAND_START = 0x00000003; int SERVICE_ERROR_NORMAL = 0x00000001; int STANDARD_RIGHTS_REQUIRED = 0xF0000; int SERVICE_QUERY_CONFIG = 0x0001; int SERVICE_CHANGE_CONFIG = 0x0002; int SERVICE_QUERY_STATUS = 0x0004; int SERVICE_ENUMERATE_DEPENDENTS = 0x0008; int SERVICE_START =0x0010; int SERVICE_STOP =0x0020; int SERVICE_PAUSE_CONTINUE =0x0040; int SERVICE_INTERROGATE =0x0080; int SERVICE_USER_DEFINED_CONTROL =0x0100; int SERVICE_ALL_ACCESS = (STANDARD_RIGHTS_REQUIRED | SERVICE_QUERY_CONFIG | SERVICE_CHANGE_CONFIG | SERVICE_QUERY_STATUS | SERVICE_ENUMERATE_DEPENDENTS | SERVICE_START | SERVICE_STOP | SERVICE_PAUSE_CONTINUE | SERVICE_INTERROGATE | SERVICE_USER_DEFINED_CO

    C# help

  • windows service
    H horacyjr

    i have 2 applications , 1º is in windows service and the other is windows application. i need to start, stop and pause service from windows application. i have done that,but the problem is when i start the service, it works, when i stop the service, it wors. but when i try to start again the service, it does not work, i need to close the project and reopen and then it works again. Please Help

    C# help

  • how to know if th file is open ?
    H horacyjr

    i have a program, that scan files in a directory . i need to know, if is the file open or in edit mode, or if it Changes the size. Is there any way to do that, any method like IsOpen?

    C# tutorial question

  • HashTable
    H horacyjr

    How does a HashTable stores data ? it stores inside itself or a HashTable stores only the adress of the object ? Thanks

    C# question

  • Memory and Collections
    H horacyjr

    Hi Christian Graus thanks for helping i would like to know one more thing, how does an ArrayList works ?it is like a linked node or it is like a common Array ? Thanks

    C# data-structures performance help question

  • Memory and Collections
    H horacyjr

    I need to keep informations in memory, so i am using System.Collections - ArrayList, my structure is a Father and Son and grandson, where each Father can have any Son and each Son can have any grandson . Father and Son and grandson are Arraylist, is there any problem adding then in each other ? this structure is a tree, is there another to do this ? ArrayList father = new ArrayList(); ArrayList son = new ArrayList(); ArrayList grandson = new ArrayList(); grandson.Add("joão"); grandson.Add("MAx"): grandson.Add("Junior"): son.Add(grandson); father.Add(son); thanks

    C# data-structures performance help 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