|
You can only hide it as far as I know. What is a browser without browsing capabilities?
The only way to speed up a Macintosh computer is at 9.8 m/sec/sec.
|
|
|
|
|
Hi ,
My question is based on the textbox in the internet option\Tools\address textbox not the address box in the window explorer.
is there any way out to disable that textbox which exist there in the internet option\Tools\address .
and one moe thing i wanted this thing to be done in the current user account .not in evry account.
Please Help .
|
|
|
|
|
This is normally done using Group Policy. Using GP's you can set the home page and disable the tab page it's on. No, you cannot disable JUST that textbox.
None of this requires any code to be written. Just an understanding of how Group Policy works. I suggest picking up the Windows XP or Windows Server 2003 Resource Kit.
|
|
|
|
|
Sir, U suggested picking up the Windows XP or Windows Server 2003 Resource Kit.
Is there any link for the above said resources that explaing these things to accomplish my task?????????
|
|
|
|
|
Amazon[^] will ship you the books.
Group Policy takes up LARGE portions of these two books.
|
|
|
|
|
HI!
how can i convert "200706" string to datetime format? its actually 2007 June
cheers
|
|
|
|
|
DateTime.ParseExact("200607","yyyyMM", null)
topcoderjax - Remember, Google is your friend.
|
|
|
|
|
will that be null or system.dbnull or shall i just do
Dim frmt As IFormatProvider
DateTime.ParseExact("200607","yyyyMM", frmt)
|
|
|
|
|
DBNull is a database null. What's in his code example is null, or Nothing in VB.
|
|
|
|
|
VB.NET 2005 (NET 2.0), Window Form, CheckedListBox
I want to reorder (move) single item inside one CheckedListBox, maybe even with autoscoll and draw a line where item will be inserted (like VB6).
sorry, but i search to inet over and over and read a lot of tutorials, it just killing me.
Any hint would be very great! Thanx!
|
|
|
|
|
can u please elaborate ur problem a little more?
|
|
|
|
|
I have a custom control that inherits from the menustrip, when i compile it, put it in a test form and run it, it says the compiled dll contains no reference to user control. Has anyone else had this issue and/or know how to fix it?
Posted by The ANZAC
|
|
|
|
|
Did you set a reference to the System.Windows.Forms.DLL in your control project?
|
|
|
|
|
where do you mean, set what reference where?
Posted by The ANZAC : "WWBD, What Would Buffy Do?" : "I don't know man, she's stronger than me"
|
|
|
|
|
Sorry, it says my dll doesn't contain any user control types, why is this happening? It's a menustrip dervied from the menustrip which is a user control...right? It's also throwing it as an argument exception.
Posted by The ANZAC : "WWBD, What Would Buffy Do?" : "I don't know man, she's stronger than me"
|
|
|
|
|
The ANZAC wrote: It's a menustrip dervied from the menustrip which is a user control...right?
Wrong. MenuStrip derives from ToolStrip, which derives from ScrollableControl, which derives from Control, not UserControl. No, they are NOT the same.
Sorry about the reference. You actually do have it set (Project/Properties/References tab).
Control is used if you want to make a new control from scratch, or add to the functionality of another control that derives from Control.
UserControl is usually used to create composite controls consisting of one of more other controls, that should be treated as a COMBINED unit. An example of a compsite control would be your own custom implementation of a NumericUpDown box (NOT inheriting from the existing NumericUpDown class.) You'd add a TextBox to your UserControl, and a couple of buttons for Up and Down.
What kind of project did you create to start coding this control?? If it was Windows Control Library, you picked the wrong project type. Pick a Class Library type instead, then all you have to do is change the code to read like:
Imports System.Windows.Forms
Public Class MyControl
Inherits MenuStrip
You'll have to set references to the System.Windows.Forms.dll and maybe the System.Drawing.dll, depending on what you're doing with the control.
You CAN fix your existing control. All you have to do is click on the "Show All Files..." button in the Solution Explorer, open your control's Designer.vb file and change the Inherits line from System.Windows.Forms.UserControl to System.Windows.Forms.MenuStrip
|
|
|
|
|
Hi guys.
How i can convert such a windows base address :
C:\Documents and Settings\Sina\My Documents\My Pictures\p1(2).jpg
to Dos style path like :
C:\docume~1\sina\mydocu~1\...
Tnx for your reply
-- modified at 17:21 Tuesday 22nd May, 2007
|
|
|
|
|
I believe GetShortPathName[^] will do what you need. I would like to think there is an easier way, but I am not aware of one.
topcoderjax - Remember, Google is your friend.
|
|
|
|
|
tnx for your reply. But it's not the style i wanted. i want get full dos mode path like it:
C:\Docume~1\Sina\MyDocu~1\MyPict~1\p1~1.jpg
|
|
|
|
|
That IS the "DOS mode" path, as you call it.
|
|
|
|
|
I believe what I gave you should have given you the dos path, in the format that you showed. If it gave you something different please show me what it was, as I am confused how this isn't meeting your needs.
topcoderjax - Remember, Google is your friend.
|
|
|
|
|
Wow.Great.
Tnx for your reply.
|
|
|
|
|
Having become lazy, I've done so much as to check MSDN.
Basically I have a panel, and a bunch of groupboxes which I would like on that panel.
The groupboxes are hidden/displayed and moved depending on the user instructions at runtime. It all worked great without the panel (simply on the form), but with it, it doesn't.
The panel contains a button to hide it, which no longer works, and the groupboxes don't appear in the panel, regardless of whether or not I have them in the panel within the designer.
My question isn't fix it but, is there some trick I've missed with panels, to make their contents display? It works, in that it displays the button and the button changes on mouseovers, but it doesn't work.
It seems that the panel doesn't redraw itself entirely, but I added some calls to refresh it after moving the panels which has no effect.
Yet another spam post on yet another forum!
I am the lazy one, who sleeps as it suits him, codes what he wishes, and has many years to look forward to.
I love being a student.
|
|
|
|
|
Without some brief, relevant snippits of your code it would be hard to help you. Also, don't call yourself lazy, even if you are; admitting to being lazy, and yet expect that I, or anyone else here help you, seems insulting and as a general rule I tend not to help people who insult me.
topcoderjax - Remember, Google is your friend.
|
|
|
|
|
The laziness was about me...because for the last 4 years (before I became more reliant on the internet) I could sit for hours testing and testing until it worked, or I came up with something better. This time I've given in because I know there are plenty of people out there who do nothing but use panels for their interface (and they work).
There's no code needed, I would expect.
All of the following was/is done at design-time.
There's a form. Upon that, are groupboxes. Without any panels, the groupboxes display and the buttons work fine (they execute their click events).
Then I added the panel, moved the groupboxes so that they were [definitely] in the panel, and the relevant buttons too. Now, the buttons appear but do nothing when clicking on them, and the groupboxes don't appear.
All of the groupboxes initially have their Visible property set to false. The buttons are visible.
Hopefully that's clear enough.
Yet another spam post on yet another forum!
I am the lazy one, who sleeps as it suits him, codes what he wishes, and has many years to look forward to.
I love being a student.
|
|
|
|