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

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

ikeriba

Member List

Rachel Wang
fettoter
Cammyr
martin_eifert
Can-Ann
brad.p
arthurmnev
Damien Morton
Sonia G.
N.Z. Bear
achalk
Luis Alonso Ramos
Robbin AB-SYSTEMS
joshua926
GregFarquhar
An De Lafonteyne
wencey
SneakerXZ
Eric Tannahill
Oveyo Banshee
Only Title

ikeriba's Q&A profile

  • Smart Device Development How to get Email Account settings

    Hello, Is it possible to get email account settings (such as username, password and so on…) via MAPI or any other API I am developing under WM 5.0. Thanks, Asher This can be achieved by querying the EMAIL2 (pop and imap) or SYNC (ActiveSync) Configuration Service Provider... http://msdn2.microsoft.com/en-gb/library/aa456131.aspx The only parameters which are not returned is the passwords. ...Show All

  • Visual Studio 2008 (Pre-release) Hard to do exact positioning.

    I've just learned the basics of WPF and XAML but I find it very hard to do exact positioning in my programs. I've found out that you can use a Canvas and then use the item .SetValue( Canvas .LeftProperty, double); -function to place things, but thats a real hassle. Adding another canvas inside a canvas with exact layout doesn't work at all. I'm looking for the easiest way to place things X% from the left (relative from the usercontrols left edge, not the windows) with a width of Y%, i want my programs to work in fullscreen on all resolutions. Could you please give an example of how to animate a percentual ColumnDefinition Width. I had a similar problem like the OP and never managed to get anim ...Show All

  • SQL Server ASP 3.0 Record is getting saved twice.

    Hello All, I am facing this unusual error. In My ASP Page I am submitting the Page and after submitting the form I am calling another ASP page, which contains sql command to insert the record. My Problem is when I am submitting the Form. Record is getting inserted twice with same values. What is the cause of this problem as I am facing this problem in every form. With Regards Sunil Dutt I just started having the same problem. Were you able to find a solution *** edited to add *** Figured it out. I had the exact same thing in my code, an input type of "submit" as well as an onclick event that also submitted the form. Once I changed the "submit" to a "button", I ...Show All

  • Windows Search Technologies Outlook folder searching

    Hi, I have been using a Lookout for a long time and this week I have got meself a new hard drive and make a new installation of the complete system. I have installed the WDS to give it a try, but it gives me below error message when selecting the Outlook folders I want to index in the "Windows Desktop Search Locations" dialog box. "One or more of the Outlook folders you have selected is populated by an add-in program. Indexing these items may cause unexpected behaviour in Outlook. If you experience any problems with Outlook, please contact the maker of the add-in program for support." Please note that I do have a standard installation of Outlook 2003 SP1 and the only add-in I can think of is a McAfee VirusScan ...Show All

  • Smart Device Development Playing mp3s in an application on PPC 2003 using VB

    iv created a alarm clock for windows mobile 2003 which would actually wake me up in a morning compared with the standard one you get with it. all i need to do now is get a specific sound file i want to play... does anyone know how to play sound files i have tried including WMP on to the form like you can with desktop applications but that doesnt work - it will not let me include it on the form. so is there any other code i can get to play the sound file or maybe a way to start an application like my MP3 player i have on it through coding (this would be better). please help its rakin my brain thanks alot Stuar I have faced with the similar problem recently. I wrote C++ DLL which export a function playing MP3 with the help o ...Show All

  • Visual C++ Remove a given value from a list

    Hello all: Is this solution correct void remove(Node **node, int v) { while (*node) { if ((*node)->value = v) { Node *tmp = *node; *node = (*node)->next; free(tmp); } else node = &(*node)->next; } } If this code is correct, I have the following question: why can we just free(tmp) without making the collection between the previous node of tmp with the node after tmp Thank you " If you don't connect the node before the tmp with the node after tmp, you will break the linked-list." Correct. "NodeA(2) -> NULL NodeC(5) -> NULL" That happens if you set (*node) to NULL. If you don't set ...Show All

  • Visual Studio Team System Team Build & WAP - Only drops DLL-files, not any of the content - bug or by design?

    I finally got my WAP to be successfully built as a Team Build (which got references to files in another Team Project, so I had to mess around in TFSBuild.proj). But in the Drop folder I only got a Folder called Release with the binaries (the DLL files). What happened to all content files Aspx, ascx, jpg, gif, folders and so on A quote by ScottGu from 17 april 2006: "Yep -- we will support team build . There is an issue with the current RC with team build not copying content files." This sounds like WAP would support Team Build in version 1.0. If not.... how should I get the content files in the drop folder WDP is unfortunely not an option. My conclusion is this: -Team Build only produces the DLL-files. -Team Build does n ...Show All

  • .NET Development Remoting objects with events using TCP protocol in C++

    Hi I wrote a simple server application which remotes an object. The client application can register its own events to receive notifications from the server when the object status changes. Everything works fine while using the http protocol. But I get the follwing error firing events in the server if I switch to tcp protocol This remoting proxy has no channel sink which means either the server has no registered server channels that are listening, or this application has no suitable client channel to talk to the server. Is it possibile to remote objects with events using TCP protocol Following the configuration files for the server and client Server <configuration> <system.runtime.remoting> <application> <chann ...Show All

  • Silverlight (formerly WPF/E) FontFamily property on TextBlock does not work.

    I have the system font "Times New Roman" installed. The following XAML renders in a sans-serif font, not Time New Roman. When I access the FontFamily property of the TextBlock, "FontFamily" is returned. alert( "The FontFamily is: " + textBlock.FontFamily); shows "The FontFamily is: FontFamily". < Canvas xmlns = " http://schemas.microsoft.com/client/2007 " xmlns:x = " http://schemas.microsoft.com/winfx/2006/xaml "> < TextBlock x:Name = " michael " Canvas.Top = " 93 " Canvas.Left = " 93 " FontSize = " 16pt " FontFamily = " Times New Roman;Serif " Foreground = " #FF5A5A5A " Text = " Michael S. Scherotter " /> </ Canvas > Please advise, Michael S. ...Show All

  • SQL Server A Connection cannot be made

    Hello I try to build my cube on localhost by VS2005, while the data source is on the other machine. When I deploy the cube, it gives me the following error msg: The project could not be deployed to the 'localhost' server because of the following connectivity problems: A connection cannot be made. Ensure that the server is running. To verify or update the name of the target server, right-click on the project in Solution Explorer, select Project Properties, click on the Deployment tab, and then enter the name of the server. I tried to fix it by following the instruction, but it does not work. I think my target server should be localhost, since my cube is built on the localhost, is it right And I check my MS SQL ser ...Show All

  • .NET Development SQL index question (C#)

    Hello, im quite new to MS SQL. My question is how to generate indices MySql has an attribute AUTO_INCREMENT, but MS SQL doesn't seem to have this. Example: I have a user table with [Id] und [Username] and a mail table with [UserId] and [Address] If I want to add a new user, can the database generate the new Id itself. And if, where do I get this new index from for adding a mail address Or do I have to generate the new index myself If yes, how resolve the next index number extra query before the insert, to get the last index thanks and greets from germany! Dirk And when I do the INSERT from a managed stored procedure int index = (int)sqlCommand.Parameters["@@identity"]; ...Show All

  • Windows Forms ListBox.DisplayMember Formatting?

    I'm used to applying formatting to buttons, textboxes, and labels, but seen to be having problems when trying to format an item to be displayed in a listbox. myTable.SameColumn contains a string. I would like it to remain unformatted for the ValueMember, but would like to apply some formatting for the DisplayMember. Could someone point out what I am doing wrong ListBox.DataSource = myListBoxBindingSource ListBox.DisplayMember = myDS.myTable.SameColumn.ColumnName.ToString ListBox.ValueMember = myDS.myTable.SameColumn.ColumnName.ToString Dim ListBoxBinding As New Binding( "SelectedItem" , myListBoxBindingSource, myDS.myTable.SameColumn.ToString, True) AddHandler ListBoxBinding.Format, AddressOf Display_F ...Show All

  • Windows Live Developer Forums Forced Proxies in MSN Messenger

    ok, i found it apropriate to post here that msn can no longer have forced proxies, would it be posible to reintroduce forced proxies because they are one of the most powerfull forms of making an addon I found a way to force MSN messenger to use your own HTTP proxy server, without any programming: Go download a tool that is called "Simp Lite-MSN". It dedicates to block MSN's direct TCP connection and force MSN to use its specific Socks4 Proxy server to encrypt the in-out text of MSN. So, after you install it, use a HEX editor to open 'Simp Lite-MSN''s launch EXE program, search the string 'SOCK4Server', change it into 'HTTPProxy". This prevents 'Simp Lite' from setting up it ...Show All

  • Visual Studio 2008 (Pre-release) Not amused about the current Cider usability

    Hi everybody Now as Framework 3.0 was released I was full of hope, that the FormsDesigner Cyder has also make a big step for better usability. So I installed it this week on my maschine, in hope we can start with full power to design Windows and controls for our new application. But what I see on my "try & error" tour is not really funny : Disappearing "InitializeComponent" Method while building custom WPF Controls "Error 2 Name 'InitializeComponent' is not declared." Assembly '' was not found Error Error    2    Assembly '' was not found. The 'clr-namespace' URI refers to an assembly that is not referenced by the project. The FormsDesigner is not really handy. ...Show All

  • Visual C# Kill a Thread in a Threadpool, how do you do it?

    I have got this code, creating a new thread calling the function theThread(). There are a lot of these threads executed each with an id of ThreadID. How do I kill one of them after it has been executed ThreadPool .QueueUserWorkItem(theThread, threadID); Many thanks, Phil Gould AlexBB wrote: Thank you again, Peter. It will take time for all this rich stuff to settle down in my head. One comment: Why not just return from runWordCollection In some way it is a business decision. I feel sort of better that a thread is dealt with and the CLR knows that it is not needed anymore. Otherwise time may be wasted for GC to figure it out. Also perhap ...Show All

©2008 Software Development Network