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

Search:

Type: Posts; User: Saeed

Page 1 of 40 1 2 3 4

Search: Search took 0.48 seconds.

  1. Replies
    1
    Views
    1,312

    Inheterence issue

    /Error CS0534: 'AverageSummary' does not implement inherited abstract member 'SummaryStrategy.PrintSummary()' (CS0534) (Tk1)

    I am not sure what the problem is and what it is that I am not doing
    ...
  2. Replies
    2
    Views
    3,385

    Where to install vb 6 from

    Is there a reliable source to install this product ? Thanks
  3. Replies
    2
    Views
    5,235

    WHAT VERSION OF vs IS FREE

    i HAVE BEN DOWNLOADING VS 2017 COMMUNITY AND AFTER A WHILE IT JUST WENT BACK TO AN EMPTY USELESS FRAMEWORK - ALL FUNCTIONALITY TO PROGRAM IN C# WAS GONE
    what version of visual studio and from where...
  4. Replies
    1
    Views
    7,441

    JBOSS deployment issue

    I hope this is the right or closest forum for asking this question:
    I am trying to deploy an EAR file but before that

    In /usr/share/jbossas/modules/com/oracle/main/
    I have

    Ojdbc6.jar
    ...
  5. Thread: MENU Design

    by Saeed
    Replies
    1
    Views
    2,469

    MENU Design

    I would like to learn more about the menustrip design .

    What are the standards ?
    What are the key points to bear in mind when designing one .
    2D menu vs a N Dimentional top menu...
    FILE , EDIT,...
  6. Replies
    2
    Views
    660

    Re: structures in Java

    Thanks
  7. Replies
    2
    Views
    660

    [RESOLVED] structures in Java

    in C/C++ you can use #include to include a list of header files


    File :Data.h
    ------------
    struct A{

    };

    struct B{
  8. Replies
    2
    Views
    1,179

    Re: Simple event question

    Can I email you ? Cheers? badmullah at gmail
  9. Replies
    2
    Views
    1,179

    Simple event question

    Hi

    I have been thrown at doing some Linc coding and need some help.
    Linc code gets translated into Java and then compiled into a class and the class file is used so my question is about
    Java....
  10. Replies
    2
    Views
    1,459

    Re: Using a wrapper in c#

    Hi
    Yes mate I did.
    I resolved the issue. I was calling it in a static main .silly me.
    Hope you are well;)
  11. Replies
    2
    Views
    1,459

    [RESOLVED] Using a wrapper in c#

    I have a class library (dll)
    this has a few classes that I can use one but not the other.
    Instruction was that I should be able to use the wrapper as below:


    using (IAxaptaWrapper Ax = new...
  12. Replies
    1
    Views
    1,189

    Calling an assembly

    [CODE]namespace ClassLibraryB
    {
    public class Class1
    {
    public int result { get; set; }
    public static int i { get; set; }
    public static int j { get; set; }
    ...
  13. Thread: Ideas on this

    by Saeed
    Replies
    0
    Views
    14,081

    Ideas on this

    Hi

    I am going to design an application under dot net that can
    - call a series of managed dlls
    - these dlls should be able to access a list of objects that can be manipulate and massaged ( sql...
  14. [RESOLVED] manipulation of a winword document

    Hi
    I am posting this thread to see if anyone has come across extracting data from a winword document and putting that in another document.

    What i woudl like to do is to be able to read a...
  15. Replies
    2
    Views
    850

    A window of a folder is open or not

    I m not sure if going through the processes in the taskmanger is going to help me with this but this is something i want to do and before i start to try a few things thought pop that question in here...
  16. Replies
    7
    Views
    2,130

    Re: [RESOLVED] Dll and its location

    In compliment to what Aray said I hope you have not forgotten to register your dll

    >RegAsm.exe smanageddll.dll /tlb:smanageddll.tlb /codebase
    You have to run this command before being able to...
  17. Replies
    7
    Views
    2,130

    Re: [RESOLVED] Dll and its location

    give me your email and i will send u my proj on MONDAY , its the Weekend now
  18. Replies
    7
    Views
    2,130

    Re: [RESOLVED] Dll and its location

    HI
    I m sorry but I dont recall what the remedy was.
    I somehow fixed the issue and the project is working but Cant remember what I did.
  19. Replies
    26
    Views
    10,318

    Re: print white space

    Yes you are right
    must have been one of those days for me that I logged on here sleepy.
  20. Replies
    26
    Views
    10,318

    Re: print white space

    try a simpler soultion:

    string.Empty.PadLeft(i, ' ');
  21. Thread: String Format

    by Saeed
    Replies
    2
    Views
    836

    String Format

    In

    string y= "CodeGuru site"
    string result = string.Format("%8s",y);

    Is there a way that "%20s could be a dynamic text ?


    string format = "site is %8s";
    string result =...
  22. Thread: HEAP Error

    by Saeed
    Replies
    6
    Views
    911

    Re: HEAP Error

    Thanks paul;
    but i do need the pointer as it contains a series of Values


    sprintf(textUID,"%s%02x ",textUID, *pabUID+i));


    textUID is a char* with enough number of bytes allocated. That has...
  23. Thread: HEAP Error

    by Saeed
    Replies
    6
    Views
    911

    HEAP Error

    There is an API that I need to call to fetch a VALUE (UID)

    //declaration
    RET_STATUS ActivateIdle(uint8_t *pabATQ = NULL,
    uint8_t *pbSAK = NULL,
    ...
  24. Replies
    9
    Views
    2,203

    Re: Reading email mesgs from the inbox

    After 11 years, Thanks to dot net and c sharp , bye bye cpp
  25. Re: avoid stretching an image but in a fixed size

    Thanks Hanne;
    Good work .

    Cheers
Results 1 to 25 of 982
Page 1 of 40 1 2 3 4





Click Here to Expand Forum to Full Width

Featured