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

Software Development Network >> julien talois's Q&A profile

julien talois

Member List

BlueBeetle
Jolly Jelly Bean
markko52
Helen999888
Michael_Giagnocavo
NZ
Martin Kristensen
ken9865432
tattoo
mwskuzzy
jwdenny
SoccerDude
frice
kymaita
Jeffrey Harmon
sungrebe
jhidey
MooseNSquirrelz
Abhishek bhadouria
RainmanRam
Only Title

julien talois's Q&A profile

  • Visual Studio Tools for Office Visual Studio Tools for Office "V3" - InfoPath 2007: InfoPathVSTool_setup.exe cannot install

    I have been trying to install the InfoPath 2007 support for Visual Studio 2005 without much success (InfoPathVSTool_setup.exe). I have the Team Edition of Visual Studio 2005 here are the successful install messages: Event Type: Information Event Source: MsiInstaller Event Category: None Event ID: 11707 Date: 8/18/2006 Time: 11:21:07 AM Description: Product: Microsoft Office Professional 2007 (Beta) -- Installation operation completed successfully. Then I install the CTP for Office 2007: Event Type: Information Event Source: MsiInstaller Event Category: None Event ID: 11707 Date: 8/18/2006 Time: 11:26:48 AM Description: Product: Microsoft Visual Studio Tools for the Microsoft Office System CTP -- Installation completed successfull ...Show All

  • Visual Studio Team System Can't browse work items

    hi we are having a strange problem and i think its related to our environment as i didnt found anything similar to it on the net. The problem is few(particular) of our team users can't browse the work items at all i.e. none of the query returns any workitems, wat we have to do is to remove them from the project and add again then they can view the work items. It started happening quite frequently now like 4-5 times in a day. Any hint, clue why its happening regards faraz Hi Faraz & Guruprasad, Faraz, have you noticed anything that the "few(particular) of our team users" have in common, with regard to Team Foundation Security For example, I gather from your posting you have added them ...Show All

  • Windows Forms How to detect deletion when editing in WebBrowser

    I need to detect when the user is about to delete text in the WebBrowser control, analyze the current selection, and then detect when the deletion has completed and go in and make some fixups based on what came out of the analysis before the deletion. This is to keep the WebBrowser from stomping on top of some private tags I have interspersed with the HTML - it happily deletes my tags without concerning itself whether there are matching tags outside the deletion, therefore destroying my XML tags. I can override the PreProcessMessage and get the selection before the deletion takes place but I can't see anything which will give me control after the deletion. I tried looking at WM_KEYDOWN in WndProc, but no keys are coming through at all. ...Show All

  • SQL Server Insertin fonts

    Is it possible to store my specific font insql 2k and if yes then how In what way do you want to use a font stored. You could store the font file in a BLOB field but that wouldn't be of much use. If you want to distribute it with your app then you sholud put it in a setup package. Not quite sure what you want to achieve. ...Show All

  • .NET Development A New "Syntax error in INSERT INTO statement"

    Hello, I have this code in a windows form where it has a comboBox to choose one of three tables from "material" Access database, and the user has two options of adding or deleting a row. My three tables are Customer, Material and Accessories. The insertion and deletion of Customer works just fine, but when I try to add a new row to Material or Accessories a syntax error in INSERT INTO statement is shown. I tried everything I know or could think of. Please If you can help me I would appreciate it so much. Here is the code: =================================== private void bindingNavigatorAddNewItem_Click(object sender, EventArgs e) { switch (comboBox1.SelectedIndex) { case 0: { customerAdd(); break; } case 1: { ma ...Show All

  • Visual Studio Tools for Office C#, Word VSTO and OnAction (oh my)

    I'm working on a VSTO Word solution that will run on a Tablet PC. Part of our requirements is that the Word document be protected (WdProtectionType.wdAllowOnlyFormFields) to prevent consumers of said document from making modifications to the form text; easy enough. However, when a document is protected, this also prevents a user from inking on the document, makes sense; but we want to allow the users to ink on a protected document ... so what I've done is as follows: On the "Annotation Pen" CommandBar, I've attached, via an Anonymous Method, to the click event for each of the CommandBarButtons logic that disables the form protection. This way, when the user choose to Ink on the "protected" form, they can. Then when the ...Show All

  • Software Development for Windows Vista NetUserEnum call fails on vista when going across domains

    I have a parent and a child domain. The vista machine is in the parent domain, when i try to get the user accounts on the child domain rfom the vista machine its gives me a access denied (5) even though i am logged in as a enterprise admin. The same code that i have outlined below works on XP\2000 etc. I use NetWkstaGetInfo to get information of the users workstation. The (WKSTA_INFO_100) structure member (wki100_langroup) has the name of the domain (Parent domain in this case as the vista machine is on the parent domain) then i use the NetGetAnyDCName to get any domain controller on the parent domain. I run the NetGetAnyDCName again with the domain controller from the parent as the first argument to get a domain controller from the chi ...Show All

  • Windows Forms How to prevent ComboBox auto DropDown

    Hi, I'm writing a custom CheckedComboBox with a multiple item select future but when I select an item from the dropdown menu, the dropdown menu automatically closes. How can I keep it open to select more than one item thanks for any help. I think that you want something like this: protected override void WndProc(ref Message m) { if (m.Msg == (WM_REFLECT + WM_COMMAND)) { if (HIWORD((int)m.WParam) == CBN_DROPDOWN) { ShowDropDown(); return; } } base.WndProc(ref m); } public static int HIWORD(int n) { return (n >> 16) & 0xffff; } ...Show All

  • SQL Server merge 2 columns to one?!

    Hello everybody! I’m trying to put together two columns of integer into one. They are coming from the same source table, so the "merge"-Task doesn’t work. This is what they look like: column1: <123> column2: <0123456> The result should be: merged_column: <1230123456> Is there a task for that kind of operation or do I have to write a script I would like do do that within the data flow. thanks in advance! you can use SQL to concatenate these columns select column1 , column2 , cast(column1 as nvarchar) + cast(column2 as nvarchar) as column3 from yourtable how you use this depends on what you are trying to do ...Show All

  • Visual C# VB6 # mark in C#

    Hi, Does anyone knows how can I use the " # " in C# just like this function in vb6 #If AMBIENTE_EMPRESA Then Set gbLog = CreateObject("LogOnline.wILog") With gbLog .IniciarLog "PROGED" .GravarLog "001", vbLogEventTypeInformation, "Preparando Processo de Envio de Email's e Bip" End With #End If And what the # mark means ----------------------------------------------------------------- And this one is it possible to use in c# also Set gbLog = CreateObject("LogOnline.wILog") Thanks May be something like following MyClass obj = Activator.CreateInstance("assemblyName", "typeName"); //where the type is MyClas ...Show All

  • Visual Studio 2008 (Pre-release) STS & WS-Trust Extensions

    We are implementing a Security Token Service that will allow users to perform a "single sign-on" from multiple locations. The process includes clients selecting their current location, as well as the role that will be used for the session before a security token is issued. Chapter 10 in the WS-Trust documentation outlines "Negotiation and Challange Extensions" that would work well for this process. Implementing these extension with WSE 3.0 are no problem, but unfortunately we can't find any documentation or examples that would outline how this can be done with .NET 3.0 (WCF or CardSpace ) If anyone can shed some light on this, and let us know if and how this would be possible with .NET 3.0, it would be greatly app ...Show All

  • .NET Development serialport

    I create a serialport and i add Datareceived event. When a call is coming i use readline function. I see only RING RING RING... I want to get the caller id. When i use HyperTerminal i write at,then at+vcid=1 and the number is displaed when a call is incomning. Also i receve OK when i write this strings in HyperTerminal. In my program i use the functions write and writeline whith the strings AT, AT+VCID=1 but i dont see any "OK" just the strings i wrote. I dont know if i use properly the "write" function to send strings to the com port or is something else that i do wrong. Can you help me with the caller id You're seeing the modem echo-ing your response (full duplex mode). Make sure ...Show All

  • Visual C# How to redirect the process result to console.

    Hi, I would like to redirect the process output the console and write it into the file. I am using the following code. But it doesn’t work. Please let me know what I missed here. string test = string .Format ( "\"{0}\" /build debug " , file.FullName , d.FullName + "\\devenv.log" ); Process projectProcess = new Process( ); projectProcess.StartInfo = new ProcessStartInfo( devLoc + "devenv.exe" , test ); Console.WriteLine ( file.FullName ); projectProcess.StartInfo.CreateNoWindow = true ; projectProcess.StartInfo.UseShellExecute = false ; projectProcess.StartInfo.ErrorDialog = true ; projectProcess.StartInfo.RedirectStandardOutput = true ; projectProces ...Show All

  • Visual Studio Service pack or hot fix of CR for VS2005

    Where can I find service pack or hot fix of cr for vs2005 I've searched in business object site, it only has cr for vs2002 and vs2003. I've download a hot fix of cr for vs2005 before, which fixed a bug in previewing report with stored procedure, but I lost the link now and cannot find it in their site. It works!! Thank you very much!!! Do you know the hot fix link for 64bit runtime too ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Release of XNA Game Studio Express

    Could we have more information about the releashe time In witch time zone I will wait until midnight GMT -5. Should a go sleep before and wait until tomorow Jim Perry wrote: If you're really dedicated you'll stay up until you have it downloaded, installed, and made a game. If only some of us were that good at game programming. personally I put off learning DX9 for the last couple of weeks, I am just learning, for XNA and have just been reading up on theory and looking ahead in my physics class. ...Show All

©2008 Software Development Network