Open Studio! When Visual Studio and Open Source Date!

Looking for Developers|Getting started on Debugger

  • (60 Pages)
  • +
  • « First
  • 56
  • 57
  • 58
  • 59
  • 60

891 Replies - 109261 Views - Last Post: 27 August 2009 - 09:31 AM

#850 [email protected]   User is offline

  • JMP *0x0(%RIP)
  • member icon

Reputation: 37
  • View blog
  • Posts: 1,019
  • Joined: 20-February 09

Re: Open Studio! When Visual Studio and Open Source Date!

Posted 09 August 2009 - 11:37 AM

ok so i guess that open studio is going good :P
Was This Post Helpful? 0
  • +
  • -

#851 Amrykid   User is offline

  • D.I.C Lover
  • member icon

Reputation: 151
  • View blog
  • Posts: 1,589
  • Joined: 16-December 08

Re: Open Studio! When Visual Studio and Open Source Date!

Posted 09 August 2009 - 06:32 PM

View Post[email protected], on 9 Aug, 2009 - 11:37 AM, said:

ok so i guess that open studio is going good :P

Yeah you can say that....We're nearing the final alpha and version 1.0.
OFF-TOPIC: The second phrase in your signature is "deep". :^:
Was This Post Helpful? 0
  • +
  • -

#852 programble   User is offline

  • (cons :dic :head)

Reputation: 50
  • View blog
  • Posts: 1,315
  • Joined: 21-February 09

Re: Open Studio! When Visual Studio and Open Source Date!

Posted 09 August 2009 - 06:47 PM

Sounds really great that you've got a debugger working! (Best part of an IDE IMHO)

From the screenshots, it looks like Open Studio is really coming together. Good work!
Was This Post Helpful? 0
  • +
  • -

#853 Amrykid   User is offline

  • D.I.C Lover
  • member icon

Reputation: 151
  • View blog
  • Posts: 1,589
  • Joined: 16-December 08

Re: Open Studio! When Visual Studio and Open Source Date!

Posted 10 August 2009 - 08:12 AM

View Postprogramble, on 9 Aug, 2009 - 06:47 PM, said:

Sounds really great that you've got a debugger working! (Best part of an IDE IMHO)

From the screenshots, it looks like Open Studio is really coming together. Good work!

Thanks....We worked hard on this.
Ok Team!, This is the "final" push for Open Studio. We're at the gate to version 1.0.
We just need to finish these features:
*Forms Designer: Will be disabled......
*Recent Projects list on startpage
*Fix Highlight issues when using debugger.
*use temp directory instead of "personal" folder when compile single files.
*Live error marking : kind of like how visual studio shows errors as you type.
*Intellisense : most likely never finish....
Another note: If you have started a feature in open studio and its not finished, its the time to finish it!

This post has been edited by Amrykid: 10 August 2009 - 08:24 AM

Was This Post Helpful? 0
  • +
  • -

#854 [email protected]   User is offline

  • JMP *0x0(%RIP)
  • member icon

Reputation: 37
  • View blog
  • Posts: 1,019
  • Joined: 20-February 09

Re: Open Studio! When Visual Studio and Open Source Date!

Posted 12 August 2009 - 08:34 AM

Are you talking to me?
Was This Post Helpful? 0
  • +
  • -

#855 [email protected]   User is offline

  • JMP *0x0(%RIP)
  • member icon

Reputation: 37
  • View blog
  • Posts: 1,019
  • Joined: 20-February 09

Re: Open Studio! When Visual Studio and Open Source Date!

Posted 12 August 2009 - 12:14 PM

im working on a Basic Binding For IronLotus.Net and a logo :P
Was This Post Helpful? 0
  • +
  • -

#856 [email protected]   User is offline

  • JMP *0x0(%RIP)
  • member icon

Reputation: 37
  • View blog
  • Posts: 1,019
  • Joined: 20-February 09

Re: Open Studio! When Visual Studio and Open Source Date!

Posted 12 August 2009 - 12:39 PM

ok so i was thinking wen you install open studio that maybe it can reg the
OpenStudio.SDK.dll in the G.A.C :)
Was This Post Helpful? 0
  • +
  • -

#857 [email protected]   User is offline

  • JMP *0x0(%RIP)
  • member icon

Reputation: 37
  • View blog
  • Posts: 1,019
  • Joined: 20-February 09

Re: Open Studio! When Visual Studio and Open Source Date!

Posted 12 August 2009 - 12:49 PM

ok so i got this
VB:
Friend Module GAC
	Private Sub New()
	End Sub
	
	
	''' <summary>
	
	''' Add strong-named assembly to GAC. DLL must be in current directory.
	
	''' </summary>
	
	''' <param name="assemblyName">name of assembly (without .dll extension).</param>
	
	Friend Sub Register(ByVal assemblyName As [String])
		
		
		Dim processStartInfo As New ProcessStartInfo("gacutil.exe", String.Format("/i {0}.dll", assemblyName))
		
		processStartInfo.UseShellExecute = False
		
		Dim process__1 As Process = Process.Start(processStartInfo)
		
			
		process__1.WaitForExit
	End Sub
	
	''' <summary>
	
	''' Remove assembly from GAC.
	
	''' </summary>
	
	''' <param name="assemblyName">name of assembly (without .dll extension).</param>
	
	Friend Sub Unregister(ByVal assemblyName As [String])
		
		
		Dim processStartInfo As New ProcessStartInfo("gacutil.exe", String.Format("/u {0}.dll", assemblyName))
		
		processStartInfo.UseShellExecute = False
		
		Dim process__1 As Process = Process.Start(processStartInfo)
		
			
		process__1.WaitForExit
	End Sub
	
End Module

and this in C#
internal static class GAC

    {

        /// <summary>

        /// Add strong-named assembly to GAC. DLL must be in current directory.

        /// </summary>

        /// <param name="assemblyName">name of assembly (without .dll extension).</param>

        internal void Register ( String assemblyName )

        {

            ProcessStartInfo processStartInfo = new ProcessStartInfo("gacutil.exe", string.Format("/i {0}.dll", assemblyName));

            processStartInfo.UseShellExecute = false;

            Process process = Process.Start(processStartInfo);

            process.WaitForExit;

        }

        /// <summary>

        /// Remove assembly from GAC.

        /// </summary>

        /// <param name="assemblyName">name of assembly (without .dll extension).</param>

        internal void Unregister ( String assemblyName )

        {

            ProcessStartInfo processStartInfo = new ProcessStartInfo("gacutil.exe", string.Format("/u {0}.dll", assemblyName));

            processStartInfo.UseShellExecute = false;

            Process process = Process.Start(processStartInfo);

            process.WaitForExit;

        }

    }


i hope i works

This post has been edited by [email protected]: 12 August 2009 - 12:50 PM

Was This Post Helpful? 0
  • +
  • -

#858 Amrykid   User is offline

  • D.I.C Lover
  • member icon

Reputation: 151
  • View blog
  • Posts: 1,589
  • Joined: 16-December 08

Re: Open Studio! When Visual Studio and Open Source Date!

Posted 13 August 2009 - 01:59 PM

View Post[email protected], on 12 Aug, 2009 - 12:49 PM, said:

ok so i got this
VB:
Friend Module GAC
	Private Sub New()
	End Sub
	
	
	''' <summary>
	
	''' Add strong-named assembly to GAC. DLL must be in current directory.
	
	''' </summary>
	
	''' <param name="assemblyName">name of assembly (without .dll extension).</param>
	
	Friend Sub Register(ByVal assemblyName As [String])
		
		
		Dim processStartInfo As New ProcessStartInfo("gacutil.exe", String.Format("/i {0}.dll", assemblyName))
		
		processStartInfo.UseShellExecute = False
		
		Dim process__1 As Process = Process.Start(processStartInfo)
		
			
		process__1.WaitForExit
	End Sub
	
	''' <summary>
	
	''' Remove assembly from GAC.
	
	''' </summary>
	
	''' <param name="assemblyName">name of assembly (without .dll extension).</param>
	
	Friend Sub Unregister(ByVal assemblyName As [String])
		
		
		Dim processStartInfo As New ProcessStartInfo("gacutil.exe", String.Format("/u {0}.dll", assemblyName))
		
		processStartInfo.UseShellExecute = False
		
		Dim process__1 As Process = Process.Start(processStartInfo)
		
			
		process__1.WaitForExit
	End Sub
	
End Module

and this in C#
internal static class GAC

    {

        /// <summary>

        /// Add strong-named assembly to GAC. DLL must be in current directory.

        /// </summary>

        /// <param name="assemblyName">name of assembly (without .dll extension).</param>

        internal void Register ( String assemblyName )

        {

            ProcessStartInfo processStartInfo = new ProcessStartInfo("gacutil.exe", string.Format("/i {0}.dll", assemblyName));

            processStartInfo.UseShellExecute = false;

            Process process = Process.Start(processStartInfo);

            process.WaitForExit;

        }

        /// <summary>

        /// Remove assembly from GAC.

        /// </summary>

        /// <param name="assemblyName">name of assembly (without .dll extension).</param>

        internal void Unregister ( String assemblyName )

        {

            ProcessStartInfo processStartInfo = new ProcessStartInfo("gacutil.exe", string.Format("/u {0}.dll", assemblyName));

            processStartInfo.UseShellExecute = false;

            Process process = Process.Start(processStartInfo);

            process.WaitForExit;

        }

    }


i hope i works

yeah, i guess we should.....btw... Your getting better at converting C# to VB.NET :^:
Was This Post Helpful? 0
  • +
  • -

#859 Amrykid   User is offline

  • D.I.C Lover
  • member icon

Reputation: 151
  • View blog
  • Posts: 1,589
  • Joined: 16-December 08

Re: Open Studio! When Visual Studio and Open Source Date!

Posted 14 August 2009 - 08:17 AM

View PostAmrykid, on 13 Aug, 2009 - 01:59 PM, said:

View Post[email protected], on 12 Aug, 2009 - 12:49 PM, said:

ok so i got this
VB:
Friend Module GAC
	Private Sub New()
	End Sub
	
	
	''' <summary>
	
	''' Add strong-named assembly to GAC. DLL must be in current directory.
	
	''' </summary>
	
	''' <param name="assemblyName">name of assembly (without .dll extension).</param>
	
	Friend Sub Register(ByVal assemblyName As [String])
		
		
		Dim processStartInfo As New ProcessStartInfo("gacutil.exe", String.Format("/i {0}.dll", assemblyName))
		
		processStartInfo.UseShellExecute = False
		
		Dim process__1 As Process = Process.Start(processStartInfo)
		
			
		process__1.WaitForExit
	End Sub
	
	''' <summary>
	
	''' Remove assembly from GAC.
	
	''' </summary>
	
	''' <param name="assemblyName">name of assembly (without .dll extension).</param>
	
	Friend Sub Unregister(ByVal assemblyName As [String])
		
		
		Dim processStartInfo As New ProcessStartInfo("gacutil.exe", String.Format("/u {0}.dll", assemblyName))
		
		processStartInfo.UseShellExecute = False
		
		Dim process__1 As Process = Process.Start(processStartInfo)
		
			
		process__1.WaitForExit
	End Sub
	
End Module

and this in C#
internal static class GAC

    {

        /// <summary>

        /// Add strong-named assembly to GAC. DLL must be in current directory.

        /// </summary>

        /// <param name="assemblyName">name of assembly (without .dll extension).</param>

        internal void Register ( String assemblyName )

        {

            ProcessStartInfo processStartInfo = new ProcessStartInfo("gacutil.exe", string.Format("/i {0}.dll", assemblyName));

            processStartInfo.UseShellExecute = false;

            Process process = Process.Start(processStartInfo);

            process.WaitForExit;

        }

        /// <summary>

        /// Remove assembly from GAC.

        /// </summary>

        /// <param name="assemblyName">name of assembly (without .dll extension).</param>

        internal void Unregister ( String assemblyName )

        {

            ProcessStartInfo processStartInfo = new ProcessStartInfo("gacutil.exe", string.Format("/u {0}.dll", assemblyName));

            processStartInfo.UseShellExecute = false;

            Process process = Process.Start(processStartInfo);

            process.WaitForExit;

        }

    }


i hope i works

yeah, i guess we should.....btw... Your getting better at converting C# to VB.NET :^:

Thanks D.I.C. for the great sub forum!
Was This Post Helpful? 0
  • +
  • -

#860 [email protected]   User is offline

  • JMP *0x0(%RIP)
  • member icon

Reputation: 37
  • View blog
  • Posts: 1,019
  • Joined: 20-February 09

Re: Open Studio! When Visual Studio and Open Source Date!

Posted 16 August 2009 - 11:18 AM

yes thank you :)
Was This Post Helpful? 0
  • +
  • -

#861 kewlkreator   User is offline

  • D.I.C Lover
  • member icon

Reputation: 39
  • View blog
  • Posts: 1,068
  • Joined: 25-March 09

Re: Open Studio! When Visual Studio and Open Source Date!

Posted 16 August 2009 - 01:01 PM

Are any minor details needed? Eg: icons, graphics. I'm not an ace programmer but I know a little VB.NET.
Was This Post Helpful? 0
  • +
  • -

#862 [email protected]   User is offline

  • JMP *0x0(%RIP)
  • member icon

Reputation: 37
  • View blog
  • Posts: 1,019
  • Joined: 20-February 09

Re: Open Studio! When Visual Studio and Open Source Date!

Posted 16 August 2009 - 01:17 PM

View Postkewlkreator, on 16 Aug, 2009 - 12:01 PM, said:

Are any minor details needed? Eg: icons, graphics. I'm not an ace programmer but I know a little VB.NET.

well you can make plugins too tha can be made in C# as well as VB
Was This Post Helpful? 0
  • +
  • -

#863 [email protected]   User is offline

  • JMP *0x0(%RIP)
  • member icon

Reputation: 37
  • View blog
  • Posts: 1,019
  • Joined: 20-February 09

Re: Open Studio! When Visual Studio and Open Source Date!

Posted 16 August 2009 - 01:39 PM

@amrykid can you look at this to see if its ok ?
http://www.dreaminco...owtopic=118177#
Was This Post Helpful? 0
  • +
  • -

#864 Amrykid   User is offline

  • D.I.C Lover
  • member icon

Reputation: 151
  • View blog
  • Posts: 1,589
  • Joined: 16-December 08

Re: Open Studio! When Visual Studio and Open Source Date!

Posted 16 August 2009 - 01:59 PM

View Post[email protected], on 16 Aug, 2009 - 01:39 PM, said:

@amrykid can you look at this to see if its ok ?
http://www.dreaminco...owtopic=118177#

Yeah its good..a few spelling mistakes but...its...AWSOME :P
Was This Post Helpful? 0
  • +
  • -

  • (60 Pages)
  • +
  • « First
  • 56
  • 57
  • 58
  • 59
  • 60