vivekuniq's Q&A profile
Smart Device Development How to debug home screen plugin?
I make some changes to the plugin, generade a new dll, Then I want to test it, What should I do If I switch theme to some other, the old dll still cannot be overwrite. It's still loaded. I can only change the old dll's filename, copy the new dll, and then reset the phone. Is there any better way for plugin developers to test plugins Sorry for my bad English. I don't know how to describ it. I hope that you can get my meaning. ...Show All
Windows Forms How to drag & drop a FileName to another application ?
hello, i didn't find much help about it, except for the reverse. i would like to drag and drop a string to an external application that already accepts dragging. is it the same way as drag inside thank you It's about the same as doing it within your program, you'll need to set the AllowedEffect and other goodies so the remote program knows what it's allowed to do etc Have a look at this li ...Show All
Visual C# How can I prevent others using my assembly?
How to trust the calling assembly that loads my assembly. I don't want anyother client load my assembly except specific assembly Sean Vikoren wrote: To get really secure code, you will need to compile to a native format. Of course when you do this, you loose the flexibility of running in the CLR. The security protections offered by the CLR would also be lost. Considering that no call ...Show All
.NET Development Keep getting Invalid Invalid SoapAction error no matter what....
Hi, I have a remote object exposed using a Http channel with Soap formatter, which publishes itself to the remoting system programmatically. The Http channel is configured in the application configuration file. [ WebServiceBinding(Name="NotificationBinding", Namespace="http://tempuri.org")] public class MyService : MarshalByRefObject   ...Show All
SQL Server SQL Server 2005 Express
I have installed SQL Server 2005 Express locally on my computer and I've also tried installing some add-ons for simple database creation and manipulation rather than having to go through the command line. The problem is I can't get the add-ons to connect to SQL Server 2005 Express. Both programs are installed on the same computer and I have checked to make sure SQL Server is running. I've tried both Windows and Mixed (Windows a ...Show All
Smart Device Development How to decode kdmp file
Here we got a core dump from mobile. It's a kdmp file. But we don't know how to decode it. Does anyone know how to decode this file or where can we find the tool to decode it You should just open the kdmp file as if it were a VC project. When you hit F5 in the IDE with a kdmp file open, you will be taken to the point in the code that was running/failing when the dump was taken. Obviously you won't be able to step in/out, etc. in the co ...Show All
.NET Development Array decleration.
Hi everyone. Wow, this wouldn't be the brightest of questions, but anyway. I declared n array as: Dim arrjobnum1(100) As String, What is the diff between decalring an array as String, and declaring it as Array And how do I clear the value of a string, from index 0 to the end Thank You Not sure of the vagaries of VB.NET, but if you declare it as an array, I reckon you get an arr ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Transparent textures?
If i have a simple polygon with a transparent PNG as texture, how do i make other polygons behind the transparent polygon visible through the first one. Right now all transparancy on the png get the same color as the one i specify in device.Clear(...); What you usually do is render the solid objects first. Then you render the less opaque objects. What you will also need to do is set some render states ...Show All
Visual Basic Assembly Info
I have create an attribute class and add this attribute to AssemblyInfo.vb file. This attribute is an array string in Assemblyinfo.vb. In my winform application, how do I get the value of this array string Hello. A lot of this depends on where you're needing to read the attribute from. Is it in the same assembly that you're executing or in a dependency assembly Here is one way to do it if you're just needing to point to an assem ...Show All
Visual FoxPro Foxpro problem I think
Hi, I have made an program in foxpro wich will archieve mail. what I do is I first export the mail body, sender, etc to text files with vba and than get them back with foxpro, but sometimes the layout changes when I put it back. Has this something to do with that I exprot them to text files or is it something different please help Remember that most email objects used to get email have two Body ...Show All
Visual Basic HScrollBar and AutoRedraw
HScrollBar From the toolbox, the HScrollBar does not seem to be working (as it did in VB6) It does not fire on "Gotfocus", no matter where you click There is no "Mouseup" event for ending the scroll. Is this tool being phased out, or are there known bugs Related to this problem is Auto-redraw. I use the Scrollbar to help make a selection. As the user pulls the cursor, I have a floating tex ...Show All
Smart Device Development data compression on .net compact framework
I have data I'm transmitting from Windows XP Professional or Server 2003 servers to Windows CE clients. This is low-entropy data that could be compressed quite a bit to reduce transmission time. The System.IO.Compression classes are not available in the .NET compact framework. Is there anything comparable I could use, or should I just write my own compression library Thanks, Deborah http://www.icsharpcode.net/O ...Show All
Visual Studio Tools for Office "send email" button in MS word
Hi guys! Is there anybody here who knows how to add a button in a Microsoft Word document Then when I click the button it sends an email with the document as attachment. Thanks. Looks interesting! will give it a try and let you know. Regards Pavan ...Show All
Windows Forms Require Numeric TextBox to be carried out to 1 decimal point
I have a a textbox on a form that is a Double datatype. I want the field to always be in the format 00.0. So if a user enters 24, when the user leaves the text box it should convert to 24.0. Conversly, 24.678 should be converted to 24.7. I'm having a hard time figuring this out. Anybody know how to go about this Thanks! Mike Handle this in the Leave event of your textbox. string str = t ...Show All
SQL Server Replication -- New Subscription Wizard SQL Mobile error, please help..
I'm following the steps of sample SQL Server Mobile Tutorials.. error on my replication subscription wizard : "Initialiazing SQL Server Reconciler has failed HRESULT 0x80045003 (29045) The initial snapshot for publication 'SQLMobile' is not yet available. Start the Snapshot Agent to generate the snapshot for this publication. If this snapshot is currently being generated, wait for the process to complete and restart the syncronization. HRES ...Show All
