|
Hi everyone,
I have a problem and im not sure if it's because visual studio is a buggy piece of crap or what. Anyhow its pretty straight forward. I am creating a web application, and dropping my web control on the aspx page. The problem is that when i run the page and click the button, an event is fired and in turn executes the code in the Click event block, but this is not the case. So im wondering what the hell is happening here. What i did was simple. In the .aspx file, i manually modified the following line
<asp:imagebutton>id="blah" runat="server" onClick="btn_submit_Click">
the onClick property is exactly how the studio created it in the .cs file when i dropped the image control. Finally I had to change the signature of the event function from private to protected since the aspx is inherited from the aspx.cs file. Does anyone have any idea why that happens. I have been developing with .NET for some years now and had this happen to me for the first time.
|
|
|
|
|
Guyz,
help me!!
I am creating a .net 2003/ATL COM dll, and am including some header files of the legacy application. Now am getting some great compilation errors:
[B]error C2146: syntax error : missing ';' before identifier 'int_type'
error C2838: 'int_type' : illegal qualified name in member declaration[/B]
These error belongs to the following code snippet in my legacy .h file
typedef Base::int_type int_type;
another error:
[B]error C2226: syntax error : unexpected type 'T'[/B]
this belongs to :
template <class t="">
class CAfwASOFileSet
{
public:
CAfwASOFileSet(T* aso, T::_FsdFileSets fileset) :
........
Any idea guyz?!
I desperately need a solution!
Pl help me
Thnx!!
|
|
|
|
|
Hi
I'm having some problems understanding how to create .NET menu shortcuts, if they are too "complex" to members of the Windows::Forms::Shortcut Enum.
(see See link on MSDN)
For example - "Ctrl+Z" is Windows::Forms::Shortcut::CtrlZ but "Alt+Z" is not a member so I don't know how to assign it.
How do you change this MFC line of code to the shortcut "Ctrl+Alt+Right" ?
VK_RIGHT, ID_GOTO_SYNC_TARGET, VIRTKEY, CONTROL, ALT, NOINVERT
|
|
|
|
|
Me again
Found a way to do this using the KeyEventArgs Class, and check every possible combination of keys I link to every time a key is pressed
Does anyone know a better way?
If not - does anyone know how to do this without overriding the Windows::Forms::Shortcut stuff?
That is, check if the "KeyPress" evaluates to a menu shortcut not in the Windows::Forms::Shortcut Enum (e.g. "Ctrl+Alt+Z") and if not - use the Windows::Forms::Shortcut (e.g. "Ctrl+Z").
Comments - anyone ?
|
|
|
|
|
This is a question about this error I got when I converted from VC6 to VC.NET. Apparently though the tooltip tells me there is an overloaded function that takes 8 parameters so I'm rather confused as to why this error crops up?
thanks!
|
|
|
|
|
|
i am trying to configure the c++.net with directshow. when i build my application i got linking errors. i know i have to set property pages of C++ project which i did. i did put the path for my directx sdk in additional include directioies but i have to put the path for the libraries in the linker . i don't know which path i have to put there. is it the same????
prashant
|
|
|
|
|
hello,
now I have a problem.
If you can some solutions, please tell me.
I develop a tool using C#.
I tried to get and use object in main thread from sub thread, I could do. The sub thread created using Thread class.
I changed object value in main thread, I tried to get and use new value. I thought sub thread get changed value.
But sub thread couldn't get changed value.
I tried to use Monitor class, timer class etc, but I couldn't
solve this problem.
thank you in advance for your kindness.
yu-yu,
|
|
|
|
|
hello.
thank you.
This object define static variable, I could do.
|
|
|
|
|
Hi Friends
I have a console application that produce assembly in .EXE. This app has some dependency assemblies which it reference in the project.
Now i want to give my client only the .EXE file. So i want to statically link the dependency assemblies in this .EXE .
The Assembly Linker tool(al.exe) only links the modules or the resource files.
Any pointer and idea is most welcome.
Thanx a lot
Naveen
|
|
|
|
|
Hi there,
does anyone have a good suggestion of how to implement a martix, where users can check/uncheck values...
It should be just like the Permissions Tab in SQL Server 2000 Administration, where you can grant several rights to several users - including those groovy Icons everywhere.
I could not find a sutiable control in VS2003
Thanks
|
|
|
|
|
Hi, all!
It seems like my company will jump on to the .Net train in a not too distant future. I thought I should be as prepared as possible and so wondered what I should read to get up to speed as fast as possible.
I will (of course) use the CP articles, but I simply wonder if there are any books considered to be the Petzold(s) of .Net (OK, I know he has written a corresponding .Net book, but I was referring to the old, straight Win32 API bible, which I loved).
I am fluent in the Win32 API world, so I don't mind a book that only briefly covers the basics and rather soon ramps up to heavier stuff.
Any suggestions?
--
The Blog: Bits and Pieces
|
|
|
|
|
The Petzold book is very good. Not as good as his Win32 book but covers all the basics of .NET development.
Inside C# by Tom Archer is a good book on the ins and outs of C# the language.
Michael
CP Blog [^]
|
|
|
|
|
Hi community!
In a VS.NET Setup Project you can add project outputs to your setup. There are different types of output (primary outputs, contents, ...) available but they're not really well-documented.
Ok, primary outputs are the exe's and dll's, contents is everything marked as "contents" via the build action, but I couldn't find any description of "documentation files" and the other output types.
What kind of files are considered "documentation files" (.chm seems not to be one of them) and how can they be added to a project?
Does anyone have an explanation for me?
Thanks in advance,
mav
|
|
|
|
|
I think that documentation files refer to the source code documentation generated using 'Build Comment Web Pages' under the 'Tools' menu in Visual Studio.
I would have thought that a .chm file would be considered a content file.
|
|
|
|
|
Could be, that's one of the few things I didn't try
Meanwhile, I have included the .chm file as contents, since it fits this category as well...
Thanks,
mav
|
|
|
|
|
From various sources I believe the declaration should be...
Declare Function GetUserObjectInformation Lib "User32" Alias "GetUserObjectInformationA" (ByVal hObj As Integer, ByVal nIndex As Integer, ByRef pvInfo As Object, ByVal nLength As Integer, ByRef lpnLengthNeeded As Integer) As Integer
However, I keep getting 'Specified OLE variant is invalid' when I try to call the routine. I've found various samples for using this call from C and even one from VB but none from VB.net. Does anyone know how I should be picking up the pvInfo parameter?
Here's what I'm doing now...
Dim InputDesktopName(256) As Byte
Dim InputDesktopNameLength As Integer
Dim UOI_Name As Integer = 2
Dim x As Integer
...
x = OpenInputDesktop(0, False, 0)
GetUserObjectInformation(x, UOI_Name, InputDesktopName(0), 256, InputDesktopNameLength)
It's returning InputDeskTopLength OK so I'm pretty sure I've got the pvInfo parameter wrong.
Andy Henderson
|
|
|
|
|
Got it! the Declare statement should use "ByRef pvInfo As Byte" instead of "ByRef pvInfo As Object"
Andy
|
|
|
|
|
I need a favour from you. I am desperately hunting for a job and I have an interview for a post in .NET Software testing. I have knowledge of .NET. Now this testing is new to me. For the past two days I'm doing a lot of study on the same and now I have little knowledge of Black box/White box/Unit/Mock Testing and TDD etc. I have also downloaded NUnitASp testing tool, but unluckily it is'nt working on Web Matrix and I don't have VS.NET. Anyway I'm able to follow the coding.
Can u please give me more details on Testing on the .NET framework especially Smoke Testing, Integration testing, Component Testing etc. and also most importantly I want to know if this testing process is all automatic or do u need to do coding when it comes to large software development companies. Will it be difficult for me to follow things as I have only done three small projects on .NET on my own.
Do reply to rajupi@hotmail.com & do treat this as urgent
Regards,
Kavitha
|
|
|
|
|
Hello,
Does anyone have any idea how to (or if it's even possible) write a toolbar add in for internet explorer using C# or VB.NET?
I have found several examples / documentation in C++, which I don't know well enough to play with.
Any advice would be greatly appreciated.
Cheers,
padgett
Ps. Yes this is a cross post[^], but I didn't get much of a response so though I would ask in a different forum.
|
|
|
|
|
Padgett Rowell wrote:
Does anyone have any idea how to (or if it's even possible) write a toolbar add in for internet explorer using C# or VB.NET?
I would suggest you read the following: Command Prompt Explorer Bar[^]. There is quite a bit of COM Interop as well as P/Invoke that allows this to work but this should get you started.
- Nick Parker My Blog | My Articles
|
|
|
|
|
The article is light on documentaion but at least I now know it can be done and have a good starting point. Thanks for the pointer.
Padgett
|
|
|
|
|
Hi friends
Im in a great fix . Please help me out.
When i start my computer on booting it shows the message Box
'.NET Framework Initialization Error
C:\Windows\Microsoft.NET\Framework\v1.1.4322\mscorwks.dll could not be loaded.'
and some of the programs on execution gives this error.
I have Windows XP Professional edition.
Initially in my system mscorwks.dll is present in
C:\Windows\Microsoft.NET\Framework\v1.0.3705\
but i copied it to the
C:\Windows\Microsoft.NET\Framework\v1.1.4322\
but then also it gives the same error
Please let me know how to fix this problem
Any pointers and help is appreciated.
Naveen
Naveen
|
|
|
|
|
Copying the wrong version of the dll (the one in \v1.0.3705\ is from the v1.0 release, not the current v1.1 Framework) won't work. Reinstall the .Net Framework 1.1 and you may find that the problem goes away.
"My kid was Inmate of the Month at Adobe Mountain Juvenile Corrections Center" - Bumper Sticker in Bullhead City
|
|
|
|
|
Hi Dear Roger
Thanx a lot for your suggestion
It really works
Thanx again
Naveen
Naveen
|
|
|
|