Click here to Skip to main content
16,005,697 members
Home / Discussions / C#
   

C#

 
GeneralRe: Call to run another application from an application Pin
saqib8216-Oct-06 18:32
saqib8216-Oct-06 18:32 
QuestionNetwork data transfer problem! Pin
Rojan Gh.16-Oct-06 13:05
professionalRojan Gh.16-Oct-06 13:05 
Questionc# in window based applications Pin
vamsi_inguva16-Oct-06 12:20
vamsi_inguva16-Oct-06 12:20 
AnswerRe: c# in window based applications Pin
Judah Gabriel Himango16-Oct-06 12:36
sponsorJudah Gabriel Himango16-Oct-06 12:36 
QuestionCreated dll for use in other language Pin
Nooie16-Oct-06 10:57
Nooie16-Oct-06 10:57 
AnswerRe: Created dll for use in other language Pin
Judah Gabriel Himango16-Oct-06 11:07
sponsorJudah Gabriel Himango16-Oct-06 11:07 
GeneralRe: Created dll for use in other language Pin
Nooie16-Oct-06 11:09
Nooie16-Oct-06 11:09 
GeneralRe: Created dll for use in other language [modified] Pin
Nooie16-Oct-06 11:52
Nooie16-Oct-06 11:52 
-- modified at 18:14 Monday 16th October, 2006

(fixed so changed as still have error)

Okay so I managed to make it build succesfully. But it still won't register. I still get the dllregisterserver entry point error.

This is the code, simple I know!

<br />
using System;<br />
using System.Collections.Generic;<br />
using System.Text;<br />
using System.Runtime.InteropServices;<br />
<br />
namespace CheckDate<br />
{<br />
    [Guid("1AD0462D-4FA2-4072-B63B-8B1D88212389")]<br />
        <br />
    public class CheckDate<br />
    {<br />
        <br />
        <br />
        private int _day;<br />
        private int _month;<br />
        private int _year;<br />
<br />
        public int day<br />
        {<br />
            set { _day = value; }<br />
           <br />
        }<br />
<br />
        public int month<br />
        {<br />
            set { _month = value; }<br />
       <br />
        }<br />
<br />
        public int year<br />
        {<br />
            set { _year = value; }<br />
      <br />
        }<br />
    <br />
        public bool checkDate()<br />
        {<br />
            DateTime newDateTime;<br />
            string dateString;<br />
            dateString = _day.ToString() + _month.ToString() + _year.ToString();<br />
            if (DateTime.TryParse(dateString,out newDateTime))<br />
                return true;<br />
            else<br />
                return false;<br />
        }<br />
        public void clear()<br />
        {<br />
            _day = 0;<br />
            _month = 0;<br />
            _year = 0;<br />
        }<br />
<br />
    }<br />
}<br />

GeneralRe: Created dll for use in other language Pin
Judah Gabriel Himango16-Oct-06 12:34
sponsorJudah Gabriel Himango16-Oct-06 12:34 
GeneralRe: Created dll for use in other language Pin
Nooie16-Oct-06 12:53
Nooie16-Oct-06 12:53 
GeneralRe: Created dll for use in other language Pin
Judah Gabriel Himango16-Oct-06 16:54
sponsorJudah Gabriel Himango16-Oct-06 16:54 
GeneralRe: Created dll for use in other language Pin
Nooie16-Oct-06 17:25
Nooie16-Oct-06 17:25 
GeneralRe: Created dll for use in other language Pin
Judah Gabriel Himango16-Oct-06 17:27
sponsorJudah Gabriel Himango16-Oct-06 17:27 
GeneralRe: Created dll for use in other language Pin
Nooie16-Oct-06 17:40
Nooie16-Oct-06 17:40 
GeneralRe: Created dll for use in other language Pin
Judah Gabriel Himango16-Oct-06 17:47
sponsorJudah Gabriel Himango16-Oct-06 17:47 
GeneralRe: Created dll for use in other language Pin
Nooie16-Oct-06 17:56
Nooie16-Oct-06 17:56 
GeneralRe: Created dll for use in other language Pin
Judah Gabriel Himango16-Oct-06 18:06
sponsorJudah Gabriel Himango16-Oct-06 18:06 
GeneralRe: Created dll for use in other language Pin
Nooie16-Oct-06 18:27
Nooie16-Oct-06 18:27 
GeneralRe: Created dll for use in other language Pin
Judah Gabriel Himango17-Oct-06 4:23
sponsorJudah Gabriel Himango17-Oct-06 4:23 
QuestionDatagrid configuration questions. Pin
Dan Neely16-Oct-06 10:55
Dan Neely16-Oct-06 10:55 
AnswerRe: Datagrid configuration questions. Pin
Judah Gabriel Himango16-Oct-06 12:40
sponsorJudah Gabriel Himango16-Oct-06 12:40 
GeneralRe: Datagrid configuration questions. Pin
Dan Neely17-Oct-06 2:19
Dan Neely17-Oct-06 2:19 
QuestionBackground Thread execution time Pin
DMBFiredancer16-Oct-06 9:57
DMBFiredancer16-Oct-06 9:57 
AnswerRe: Background Thread execution time Pin
Judah Gabriel Himango16-Oct-06 11:36
sponsorJudah Gabriel Himango16-Oct-06 11:36 
GeneralRe: Background Thread execution time Pin
DMBFiredancer17-Oct-06 2:31
DMBFiredancer17-Oct-06 2:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.