Software Development Network Logo
  • VS Team System
  • .NET Development
  • Visual Basic
  • Smart Devicet
  • SQL Server
  • SharePoint Products
  • Visual Studio
  • Microsoft ISV
  • Windows Forms
  • Visual FoxPro
  • Visual C#
  • Visual C++
  • Audio and Video
  • Game Technologies
  • Windows Vista

Software Development Network >> milicica's Q&A profile

milicica

Member List

xRuntime
Debboy
Murom
AzurianArcher
MSDNuser102
Rogerrr
Choss_UK
Beefstar
ron nash
GeeMann
bluedvd
foobarxxyz
torvaldson
Sara_H
suryany
Krutika
Stefan Tresch
Dmitriyy
Thomas Pittman
elixic
Only Title

milicica's Q&A profile

  • Commerce Server How we can integrate Commerce Server with BizTalk Server through adapters?

    How we can integrate Commerce Server with BizTalk Server through adapters The article includes some sample code. Alan Faulkner [MSFT] has also released an excellent sample project which can be downloaded from the Commerce Server GotDotNet workspace. http://www.gotdotnet.com/Workspaces/Workspace.aspx id=77487df3-96dc-41de-9ca0-b7f284a8c113 Jeff Lynch MVP Windows Server System - Commerce Server http://codebetter.com/blogs/jeff.lynch ...Show All

  • Visual Studio Express Editions How to SUM column data

    Hello, The result of a query in TableGridView looks like this: Location Number1 Number2 Thanks again, Inserted your line (it would not take without " Me .Database1DataSet" ---------------------------------------------------------------------------------------------- Private Sub Find_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Find.Click Try Me .Table1TableAdapter.FillBy( Me .Database1DataSet.Table1, LocationComboBox2.Text) Catch ex As System.Exception System.Windows.Forms.MessageBox.Show(ex.Message) End Try Dim result As Integer = 0 result = Table1BindingSource.Count If result > 1 Then Me .DataEntry.SelectedTab = TabPage4 ...Show All

  • Windows Forms PropertyGrid

    The question is, how to make several groups in PropertyGrid, and i do: MyPropertyGrid.SelectedObject = mySomeObject; It only gives "Misc" Group, but how to organize it in to serveral groups You'll need to specify the CategoryAttribute attribute for those properties you want to be in certain groups ala: public class MyTestClass { private int x; private int y; private string z; //Not explicitly in any group public int X { get { return x; } set { x = value ; } } [ Category ( "Some Group" )] public int X ...Show All

  • Visual Studio 2008 (Pre-release) Hosting WCF service in IIS

    I'm having difficulty hosting a service in IIS where the service is implemented in a seperate assembly. It appears the latest release of .NET 3.0 has changed the syntax for doing this, dropping the @Service directive entirely. I have no problem hosting the service is inline or if the service implementation is included in the Web project. It's only when using an assembly from the bin directory where it won't work. TIA Peter - you need to have the script mappings in IIS for aspnet_isapi.dll to .svc files. You can add this manual or run servicemodelreg.exe in C:\WINDOWS\Microsoft.NET\Framework\v3.0\Windows Communication Foundation ...Show All

  • Windows Forms opening a windows form from a .net windows service

    I have created a windows service in .net and a form to control and monitor the service which I would like to open onStart event of the service. I have tried allowing the service access to the desktop and calling the form but have had issues with this. I think the best way to do this would be to run the form .exe. Does anyone know the code (C#) to do this I am finding it harder than expected to find an example on the Web. Or does anyone know of any better ways to accomplish this Hello I have a similar problem with using Windows form with Windows service. My basic purpose is that I have a Windows Service which has to print html programatically, reading html messages from a queue. The queue part wor ...Show All

  • .NET Development How to download/Save dialog box a file using vb.net?

    Hi Guys, I am developing an web based application which enables users to upload and download their files. I know how to download it in a specific location via code-behind but Is it possible to make IE opens "save" dialog box and asks user where they would like to save their files any help welcomes tanx Hope following helps you FileInfo objFileInfo; try { objFileInfo = new FileInfo (filePath); Response.Clear(); Response.Cache.SetCacheability(System.Web. HttpCacheability .Private); Response.AddHeader( "Content-Disposition" , "attachment; filename=" + objFileInfo.Name); Response.AddHeader( "Content-Length" , obj ...Show All

  • Visual C# can any body help me in reversing strings

    this fuction help me to convert the arabic words to hexa .. and it doing the job 90% because it convert it in reverse   this means that the true hexa for example is (062F0645) but the function returns it like this (0645062F) and this makes each word come in reverse order   for example ... I love you becomes uoy evol I   how can fix that     public string ArabicHex( byte [] b) { string temp,s="",h=""; int i=0; while ((i <= b.GetUpperBound(0))) { temp= "00"+b .ToString("x2"); h = temp.Substring(temp.Length-2); if (h == "000D") { h = ""; } s = h + s; i += 1; } return s; }   thanks in advance ...Show All

  • Visual Studio 2008 (Pre-release) WCF on Windows Mobile 5.0

    I've seen a few posts on blogs from a few people indicating that people are actively working on this product. If anyone knows anything about the status, or how I can get into the beta to get my grubby little geek hands on a CTP, please let me know :) p.s. I am extremely interested in finding out if the compact framework version of WCF will support the NetPeerTcpBinding This is a better forum for that question: http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=33&SiteID=1 ...Show All

  • .NET Development Validating an item added in CollectionEditor

    Hello I have a propertygrid that is showing my collection. If user click on add button and enter an invalid data in one of properties of a new item, in setter of that property I'll show a messagebox, but how can I prohabite user to continue. private int x; public int X { set { if ( value < 0) { MessageBox.Show("Enter a value greated than 0"); return ; } x = value; } get { return x; } After closing my messagebox the new item is in the collection and user can add another item or click ok button. I am validating agin later but I am looking for a way to force user to fix this item before continuing. I tried OnInsert and OnInsertComplete events of CollectionBase and also CreateInstance of Co ...Show All

  • SQL Server Vista 64 Bit

    I am trying to develop using SQL Server Compact Edition on Vista 64-bit and when I try to load the .DLL files for x86 I get 'BadImageFormatException'. Looking at the documentation, I do not see where SQL Server Compact Edition supports Vista 64-bit, is this true If it is true, when will it support 64-bit Luke Mauldin You are correct that 64bit is not supported, either for the db engine itself or for the server tools that support replication/remote data access. Microsoft will have to respond to your question on when there will be 64 bit support. Darren ...Show All

  • Visual Basic How can I retrieve Recordset from webservice?

    I have a server and a client the server is implemented by c# and the client is programmed by vb(not vb.net) so how can I get the recordset from the webservice thank you Hi, Thanks!! I have gone through the information given in the links. They are providing methods to be used via VB. I am using C# ans ASP.NET 2.0. Can you please let me know if any help for this is available ...Show All

  • Windows Forms Animated image problem

    Hey, In a picture box I have an animated image but it only changes it's frame when I move to another tab and then come back, it does not contenuesly keep on going, it just changes one frame every time I go to the tab it is in........ Thanks :) don't think I understand. when having an animated gif file in the picturebox, it won't animate it in the IDE but of course when you run it - it will animate it normally. There must be something there which is stopping from animating it correctly if you are stating, as you have, that it does not animate correctly. I was able to do this fine with a test gif, simply in code, the normal way of loading a picture into a picturebox: this.thePictureBox.Image = Image.FromFile("th ...Show All

  • Visual C++ Dialog becomes modeless when you call AfxMessageBox within the dialog

    I have found several situations where calling a second dialog (e.g. AfxMessageBox) from within a first dialog causes the first dialog to become modeless when the second dialog box exits. Does anyone have any ideas on how to prevent this or how to correct it after it happens Found it. I did not realize that I had declared the parent of Dialog2 to be the main app window, which made it modeless relative to Dialog1. Declaring Dialog1 as the parent of Dialog2 in the Dialog2 constructor fixes the problem. Sorry for the false alarm. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Trying to pass a cubemap.dds to a fx shader

    I have been playing with these shaders: http://msdn.microsoft.com/library/default.asp url=/library/en-us/directx9_c/Goal_3___Environment_Mapping.asp and I have got these shaders up and working in my engine, with the exception of 3 and 4, they light my model correctly, but they don't seem to be rendering the cube map I am giving them. The shader manages the cubemap like this: texture EnvironmentMap < string type = "CUBE"; string name = "lobbycube.dds"; >; samplerCUBE EnvironmentSampler = sampler_state { Texture = (EnvironmentMap); MipFilter = LINEAR; MinFilter = LINEAR; MagFilter = LINEAR; }; I load the cube map like this: private TextureCube myCube; myCube = myLoa ...Show All

  • SQL Server SQLEv & blobs

    I want to store message database in SQLEv. Each message contains fixed header and a body. Body is UTF-16 encoded text. Average size of the body is about 700 symbols. Standard deviation about 1000 symbols. Maximum size - 200K symbols. Total count of the messages is up to 2 millions. The only type I can use for body is text or binary blob. But blob larger than 256 bytes store in separate pages. Because of most message bodies lager than 256 bytes, each message take avg. PageSize / 2 not used for storing data, but occupied space. For 2M messages this space will be 4096 / 2 * 2M = 4G. But SQLEv has 4G limit for database size! Is it any way to store such data in SQLEv more efficiently I see... Well, pe ...Show All

©2008 Software Development Network