|
Did you try Form.Dock = ... ?
rotter
|
|
|
|
|
Hi friend..
I am working windows based MDI application... i tried Form.dock style but it is not effective.When mouse drag enter into the form means dock style is not working... can u have any idea..U have any sample code pls send me...
|
|
|
|
|
I think you didn't mean "Dock" but "Pin/Unpin"
I have no idea on how to do this.
rotter
|
|
|
|
|
It's not possible with out-of-the-box controls. Either you need to write the logic to handle this yourself, or use an existing control like Divelement's SandDock[^].
|
|
|
|
|
Hello all:
Can anybody explain me please how can I make .dll file???
Thanks in advance.
The way of Professional softwares start in two:
Simple codes and develop it.
Simple but effective ideas.
|
|
|
|
|
|
Hello :
Thanks a lot....
The way of Professional softwares start in two:
Simple codes and develop it.
Simple but effective ideas.
|
|
|
|
|
I have .Net 2.0 MSI. I installed this on Vista. To access few functionalities of the application installed, i check if the logged in account is an administrator as below:
WindowsPrincipal principal = (WindowsPrincipal)Thread.CurrentPrincipal;
_IsAuthorized = principal.IsInRole(WindowsBuiltInRole.Administrator) || principal.IsInRole(WindowsBuiltInRole.PowerUser);
This function detects the logged in account as administrator only for the user account with which i logged in to install the MSI.
For other computer administrator accounts it does not recognize.
How do i resolve this issue on Vista? Is there any other way to know if the logged in account is an administrator?
|
|
|
|
|
Hi everyone.
I recently started an online software business. I'd like for my customers to be able to purchase my software (via PayPal) and after the purchase, be directed to a link where they can download the software.
I'd prefer one that had a blind link (one where you could not get to from anywhere else). I'm sure there are sites that offer such services, but I'm having a tough time finding any.
I already have the payment transaction setup through PayPal, but I don't know how to handle the downloading of the software.
Any suggestions?
Thanks.
|
|
|
|
|
One way to do this would be to generate a unique, time-limited url for download by a specific customer. The link would expire after the software has been downloaded and/or "n" units of time after that event or after the customer has made the purchase.
/ravi
|
|
|
|
|
I'm decent at programming applications, but pretty ignorant when it comes to web programming. How do you do what you said?
|
|
|
|
|
Create a database table, such as:
CustomerDownloads
id unidentifier
ordertime datetime default(GetDate())
downloaded bit default(0)
When creating the link for them to download your software, generate a new guid to include in the link. Enter this guid as the id in the table. When the user wants to download the software, use the guid to lookup the order, check the time or downloaded flag as necessary.
Simplistic, but thats the gist of it.
only two letters away from being an asset
|
|
|
|
|
You might want to check out mediafire.com which I used for this purpose when payment was made to googlecheckout I just emailed the link.
|
|
|
|
|
Hello,
Please I need help in:
How does runtime creates an object from a derived class?The runtime must instantiate the base class then the derived class but how? in a single object?Or int two deferent objects that have to interact together?
Thanks.
Dad
|
|
|
|
|
Hi Guy
try with reflection namespace.
i means just get object base class. check if base clas object with ur derived class object.
thanks
|
|
|
|
|
<br />
Using System.Reflection.
Best Regards
-----------------
Abhijit Jana
Microsoft Certified Professional
"Success is Journey it's not a destination"
|
|
|
|
|
Are you asking how inheritance work in runtime?
If it creates an instance of both the baseclass and the subclass?
In that case, no, it doesnt create an object per class.. it creates only one single object.
You can think of it as if all the code in the base class is copied into the subclass when you compile.
(this is not quite how it works, but it might be easier to grasp the concept if you think of it like that..)
"this" and "base" are the same object, its just that when writing "base" you can reffer to methods that was defined in the baseclass... but its still the same object, just a different method you are using.
|
|
|
|
|
hi ,
I'm in a little trouble these days ... as im wokirng on a new project and needed help.
Lets first go thru wat's troubling me :
A hierarchy will be set up for the ordering process of Hierarchy users. The order process will work from level 3 to level 2 to level 1. Please note that any level has the ability to order/quote products but can only be submitted to checkout from level 1.
The process can begin from level 3 when they log into the system and at this point they will then be able to search the catalog by clicking through the category, subcategory, and product pages to purchase/quote a product. Once they determine the product to purchase by going to the product detail page that item will then be sent to the shopping cart.
The user can either have the choice to proceed to checkout or continue shopping. Once they are complete and their shopping cart is up to date, they will then submit the order for processing. The email will at this point be sent to the Level 2 that is assigned to be above the level 3 user for them to approve. The level 2 users will have the ability to add, edit, or change the order by adding or deleting products as well as change the quantity of the product. Once they are satisfied with how the order looks they will be able to approve or disapprove the order. If the order is disapproved, they order will be deleted from the site completely and email will be sent to the users of level 3 that submitted the order letting them know it was disapproved.
If the order is approved an email will be sent to the user of level 1 that is assigned to the level 2 user through same department. Once the order has been approved by each level then they will not have the ability to make changes to that order. Level 1 will be responsible for all departments . When the level 1 user receives the email they will be able to log into the system and view the order status window. The level 2 users will have the ability to add, edit, or change the order by adding or deleting products as well as change the quantity of the product. Once they are satisfied with how the order looks they will be able to approve or disapprove the order. If the order is disapproved, they order will be deleted from the site completely and email will be sent to the users of each level that previously viewed or submitted the order letting them know it was disapproved
This is the scenario .how to make such a hierarchy ,,any ideas ,,any starter kits recommeded that resmbel to this scenario ,,or ur thought will be a realy BIG contribution.
im using ASPDOTENT 2.0 and sqlserver 2005 , c# as the language.
waiting for some replies ,
Fad.
Fad .
|
|
|
|
|
|
hi mike ,,
I was thinking that isnt there anything in aspdotnet 2.0 through which i can create and manage such hierarchies and roles ?? plz any help will really give me relief ..
thanx.....
Fad .
|
|
|
|
|
Hello all :
How can I make a simple descending timer???
Thanks in advance
The way of Professional softwares start in two:
Simple codes and develop it.
Simple but effective ideas.
|
|
|
|
|
Funnily enough, the Timer[^] Class.
The timer counts-down to a given interval that you set (in milliseconds) and when 0 is reached an event is fired.
He who makes a beast out of himself gets rid of the pain of being a man
|
|
|
|
|
search at google, i sure that you will find alot of examples
TVMU^P[[IGIOQHG^JSH`A#@`RFJ\c^JPL>;"[,*/|+&WLEZGc`AFXc!L
%^]*IRXD#@GKCQ`R\^SF_WcHbORY87??6?N8?BcRAV\Z^&SU~%CSWQ@#2
W_AD`EPABIKRDFVS)EVLQK)JKSQXUFYK[M`UKs*$GwU#(QDXBER@CBN%
Rs0~53%eYrd8mt^7Z6]iTF+(EWfJ9zaK-i?TV.C\y<p?jxsg-b$f4ia>
--------------------------------------------------------
128 bit encrypted signature, crack if you can
|
|
|
|
|
Hi ZaidIT
can you tell me y you r wish count down timer?
becuase o9f we can use increment timer many ways.
thanks
|
|
|
|
|
Why does it matter? It is surely a requirement. There are many reasons to have a decending timer. Most of them have to do with UI stuff. Such as informing the user that a certain event will fire in, well, lets say 30 seconds, for example.
I'm going to become rich when I create a device that allows me to punch people in the face over the internet.
"If an Indian asked a programming question in the forest, would it still be urgent?" - John Simmons / outlaw programmer
|
|
|
|