|
-
Feb 24th, 2007, 07:37 AM
#1
Thread Starter
Hyperactive Member
Is it possible to make widgets in .net
Hi All
Is it possible to make widgets in .net.
If yes please me know how it is done or any helping hint.
any help is appriciate
thanks
Using .NET 3.5 (VS 2008) And XP SP2

-
Feb 24th, 2007, 08:59 AM
#2
Frenzied Member
Re: Is it possible to make widgets in .net
you mean like for the mac?
-
Feb 24th, 2007, 09:34 AM
#3
Thread Starter
Hyperactive Member
Re: Is it possible to make widgets in .net
NO sir. I need for Microsoft using .net
Using .NET 3.5 (VS 2008) And XP SP2

-
Feb 24th, 2007, 10:16 AM
#4
Re: Is it possible to make widgets in .net
Define what you mean by "widgets".... that could be anything....
-tg
-
Feb 26th, 2007, 01:15 AM
#5
Thread Starter
Hyperactive Member
Re: Is it possible to make widgets in .net
Thanks for reply tg
I just needed an example of making a widget
that could be of any thing
So please if u have know please give me guide
Thanks
Using .NET 3.5 (VS 2008) And XP SP2

-
Feb 26th, 2007, 01:17 AM
#6
Re: Is it possible to make widgets in .net
Yes, but what the devil is a widget?
-
Feb 26th, 2007, 01:25 AM
#7
Re: Is it possible to make widgets in .net
Are you talking about utilities for the Yahoo Widget Engine? If so then maybe Yahoo would be a better place to be looking.
http://widgets.yahoo.com/workshop/
If not then you're going to have to tell us exactly what you're talking about because widgets don't actually exist. It's just a term used for some hypothetical thing made by some hypothetical company in educational examples.
-
Feb 26th, 2007, 01:37 AM
#8
Thread Starter
Hyperactive Member
Re: Is it possible to make widgets in .net
Thanks for reply.
I need an object ( like sticky notes) on which if I drag a hyperlink and drop onto it then downloading should start and save in this WIDGET(object). So I need an GUI element that can perform this task, also I don't want to use Yahoo Widgets. I have to create my own widget. I m totaly blank in this topic so please let me know whether it is possible or not. Thanks
Last edited by Bajrang; Feb 26th, 2007 at 01:44 AM.
Using .NET 3.5 (VS 2008) And XP SP2

-
Feb 26th, 2007, 02:15 AM
#9
Re: Is it possible to make widgets in .net
And how were we supposed to know that? That's just an application. If you search MSDN for "drag and drop" it will give you information about drag and drop within an application and drag and drop between applications. It's just a matter of handling the appropriate event, getting the data that was dropped on the form and then performing the appropriate action.
-
Feb 26th, 2007, 02:45 AM
#10
Thread Starter
Hyperactive Member
Re: Is it possible to make widgets in .net
thanks jmcilhinney
ok if u say it an application thats okay
I want to make application, once user installed It is available all time on desktop or system tray means user need not to start everytime whenever he starts his PC just like application of Sticky notes, that is availble all time on desktop, user can hide, edit, or whatever actions he wants to do can do. Application's Icon should be always be on the desktop ( obiviously that is not the icon of application's .exe file). User need not to start it. I am not making sticky notes but I want to make this type of application. I thinks it is not an simple windows application
I hope now u can understand better. thanks hope to get fast response
Using .NET 3.5 (VS 2008) And XP SP2

-
Feb 26th, 2007, 03:02 AM
#11
Re: Is it possible to make widgets in .net
Now we appear to be getting somewhere. Do you want this drop target to be on the desktop, as in under all other applications, or always on top of other applications? There are various applications that I seen that are pinned to the desktop itself. I don't know how that's done but I'm sure it would involve the Windows API. If you want a drop target that's always visible like several I've seen that sit above the system tray and let you drop files on them for burning to disc, then you'd simply set your form's TopMost property to True.
-
Feb 26th, 2007, 03:23 AM
#12
Thread Starter
Hyperactive Member
Re: Is it possible to make widgets in .net
Thanks jmcilhinney
my drop target is that appication's icon but drop source can be anything.
please post any helping hint for that
Using .NET 3.5 (VS 2008) And XP SP2

-
Feb 26th, 2007, 03:59 AM
#13
Re: Is it possible to make widgets in .net
What do you mean by "that application's icon"?
-
Feb 26th, 2007, 04:44 AM
#14
Thread Starter
Hyperactive Member
Re: Is it possible to make widgets in .net
It should be always on desktop after installation.
It can be icon or any GUI element.
Using .NET 3.5 (VS 2008) And XP SP2

-
Feb 26th, 2007, 05:13 AM
#15
Re: Is it possible to make widgets in .net
Create a form, set its TopMost property to True, handle it's DragDrop and related events. As I said, MSDN has plenty of information about drag and drop.
-
Feb 26th, 2007, 05:35 AM
#16
Thread Starter
Hyperactive Member
Re: Is it possible to make widgets in .net
okay sir but application should start automatically when system starts and ends when user shutdown the PC. So how to use Window Service for that.
Thanks in advance
Last edited by Bajrang; Feb 26th, 2007 at 05:39 AM.
Using .NET 3.5 (VS 2008) And XP SP2

-
Feb 26th, 2007, 05:50 AM
#17
Re: Is it possible to make widgets in .net
You don't need a service. Just add a value pointing to your executable in the Run registry key.
-
Feb 26th, 2007, 06:46 AM
#18
Thread Starter
Hyperactive Member
Re: Is it possible to make widgets in .net
can u suggest what code & where it should be placed
thanks
Using .NET 3.5 (VS 2008) And XP SP2

-
Feb 26th, 2007, 08:15 PM
#19
Lively Member
Re: Is it possible to make widgets in .net
This is for all users:
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run
This is for the local user:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run
You just create a string key with the name of your application and a value that points to the executable name. Once it is in there, windows will automatically start it every time it boots.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|