Seericssop's Q&A profile
Windows Live Developer Forums Worlds Best App Contest Winners
It’s time to announce the winning applications for MSNR Messenger’s Worlds Best App Contest , which MSN ran from September through December 31 st , 2005. There were a lot of great entries, hard work and interesting new ideas for building new applications and games within Messenger. Submitted applications were judged based on the official rules and judging criteria which included creativity, launches during the contest, suitability for the medium and best use of other MSN services. The following identified winning applications still subject to verification and acceptance of their winning prizes : Grand Pri ...Show All
Smart Device Development ARMASM (version 13.10.) in THUMB mode generates wrong code for ldr Rx, =const
Hello, I am working in WIN CE 5.0 development environment for ARM 9 processors. I am trying to compile an assembler code, that uses ARM & THUMB code together. I am using the ARMASM Microsoft compiler. Using ARMASM ARM Macro Assembler, Version 13.10.4236, Build for Windows CE (Release) (Built on Jul 24 2004 09:41:48) When using the ldr R1, =CONST_VALUE , in the THUMB CODE area, I am getting wrong address in the disassembly. It would seem that the address resolution is calculated relative to code start, instead to the required relative to PC. following code demonstrate the problem : AREA testcase,code   ...Show All
Visual Studio Express Editions Image library or VS2005ImageLibrary.zip
Boy am I finding this VB2005 stuff tough going, just about everything I want to do has changed. Anyway I want to use some of the 'pretty' graphics that are now available, I did download some freebies when I downloaded Express a couple of weeks ago but found them limited. So when I am creating my menu items, I can see some images already in use, but I cant locate them, where are they located I could reassign some of them if I could find them. So I started searching help and was advised that there are lots of images in VS2005ImageLibrary.zip located in ..... VisualStudio 8\ Common7\ see help... icons ...sources for the exact loaction ...Show All
Windows Forms "truely" Transparent Control Paints Funny
Hello, (long post) I have worked this problem for quite some time now with no luck. I was actually at Tech Ed last week and just missed Shawn Burke. He is the gentleman that everyone said could help me. Nobody else had any answers. There are dozens of posts on how to override the CreateParams property. They all look like duplicates becaus ...Show All
.NET Development windows service process flow
I have created a windows service in c# and it works fine but i have a question in my mind: In my service constructor i call a method to initialiaze all variables which are defined from app.config. and in OnTimer method, service does what it should. So at each interval it starts its job. I was thinking about process flow of my service application and i thought it should work like this : when i start Service i am actually making one instance of the service and variables will be initialized. Then at each interval, service uses those initialized variables. When service is stopped and started again, another instance of service will be made and al ...Show All
Smart Device Development How about cell broadcast in magneto?
I can't find any infomation about cell broadcast in WM50. Does anyone know where can i find it You'll find in sms.h that the lowest two bytes (0x0207) stand for SMS_E_MOBILEUNSUPPORTED. I have the same on my Palm Treo 750, but I know to receive SMS or CellBroadcast is true. As suggested on http://teksoftco.com/forum/viewtopic.php p=784 , we might need to call sth like RIL_ SmsSetBroadcastMsgRanges afterwards. Let's see.. ...Show All
Visual C# Attribute refuses cast
Hi! Edited to rephrase question: The following code is driving me nuts! I am trying to read the IDEiconAttribute from each class (e.g. ConsoleInput ) in a library. But, I cannot access the attribute (object) I retrieve as my IDEiconAttribute , so I can't call the IDEiconAttribute. Icon property. It refuses to be cast to IDEiconAttribute , even though when I print out the type, the type is IDEClassLibraryNS. IDEiconAttribute. In fact, I get the bizzare message "cannot cast IDEClassLibraryNS. IDEiconAttribute to IDEClassLibraryNS. IDEiconAttribute". Why does this work (in my case) obj ...Show All
Microsoft ISV Community Center Forums Crying like a baby
Hi there. I’m an MCSE. I became an MCSE because I felt that Microsoft products truly allowed me to help my clients with their needs. And the lapel pin makes me look cool. I have been doing a lot of simple VBA programming lately, and have decided to really take the programming plunge. This means even more waving the Microsoft flag and converting consumers to Microsoft believers. It also means another lapel pin, and quite possibly a pen. I have to say that I am quite amazed that as of right now, 56 people have viewed my Mail Merge issue (in the VBA section), and no one has responded. I requeste ...Show All
SQL Server No grouping?
Hi to all! To count(something), it is usually required to use a group by function, however, that is not applicable in this case: I would like to select records that have similar values for 'col2' and 'col3', given a certain 'col1', and how many records each 'col1' returns. The following example hopefully makes it clear. The table: Col1 Col2 Col3 ------------------------ s1 A B s1 C D s2 A B s2 C D The result should be: col1 col2 col3 Expr --------------------------------- s2 A B 2 s2 C D 2 I had figured out the not-working-query: SELECT *, count(col1) FROM table as t1 INNER JOIN table as t2 ...Show All
Windows Forms find out in MDI-Form which Control has the focus
hi, i have a MDI-Form. I want to find out, which control (Textbox, Textfield) currently has got the focus. these controls may be in a TabControl. bye Hi, You can do that by looking in the ActiveControl property of the form. It contains the control that has the focus. Check if the type is one of the container controls (panel, groupbox or tab) if it is then also look at its active control property or traverse all of its contained controls to see if what control has focus... cheers, Paul June A. Domag ...Show All
.NET Development Error on register assembly
Hi, I have an Assmbly from C# that My unmanaged C++ application checks the version of assebmly and register using RegAsm.exe if a version is different with registered one. When I save this assembly into Visual SourceSafe and install at different machine, my application has failed to call Assembly. Also I found sometimes work and sometimes doesn't work when I run my application with several different version of Assembly. I am not sure about this but I guess it might be caused by Regasm. My application runs RegAsm /u a.dll and Regasm a.dll The following code, oledisp2.cpp: BOOL COleDispatchDriver::CreateDispatch(REFCLSID ...Show All
Visual Studio Tools for Office VSTO 2005 Upgrade did not install Visual Web Developer
I recently installed a vsto 2005 upgrade and made sure that the "Visual Web Developer" box was checked in the install options, but when the install completed "Visual Web Developer" is not listed on the splash screen of installed products, nor are web site projects available from the new->project dialog. What happened Where could I have gone wrong I've tried running setup again and ensuring that the "Visual Web Developer" box is checked, but still no luck. I'm kind of in a bind, because I need to edit some of our web pages, but my copy of VSTO isn't letting me. Thanks, Mesan ...Show All
Visual C++ error LNK2001: unresolved external symbol _main
I've created an VC++ 2k5 DLL with CLR (but not with MFC or ATL) from existing source. I can get this to compile and link until it produces an LNK2001: unresolved external symbol _main error. I've looked this error up in the help and tried most all of the suggestions in the help & or the KB Q291952 article to do with thise error and none make the error go away. That is... 1) I checked it was an DLL Project not a console project 2) I checked that the /Zl command-line option is not pressent. (it's /Zi) 3) I added msvcrt.lib and/or msvcmrt.lib as additional dependancies 4) I checked that _ATL_MIN_CRT is not de ...Show All
Visual Studio Crystal reports XI R2 and Visual Studio 2005 issues
Has anyone got this error after updating (fresh install) to Crystal Reports XI R2 with reports in Visual Studio 2005 I am posting here because I am not sure if it is a Crystal reports XI R2 bug or a Visual Studios 2005 problem. I thought it might be that my programming was wrong so I tried the samples that come with R2. If anything these should work since the people who developed the software wrote the examples. Even the examples gave me these same errors. Custom Tool is CrystalDecisions.VSDesigner.CodeGen.ReportCodeGenerator I have these refernces: CrystalDecisions.CrystalReports.Engine - v2.0.50526 CrystalDecisions.Enterpris ...Show All
Visual Studio Express Editions E-Books offer with registration: Is this offer real?
I completed the registration almost a month ++ ago, but have not gotten any response. Has anyone actually gotten this offer fulfilled Cheers, yousaid Glad I am not the only one. I also registered a month ago and am still waiting.... ...Show All
