Software Development Network Logo
  • Visual J#
  • Game Technologies
  • Visual FoxPro
  • Smart Device
  • Visual Studio
  • Windows Forms
  • Windows Live
  • Visual C++
  • Microsoft ISV
  • .NET Development
  • Visual Basic
  • Windows Vista
  • Architecture
  • VS Express Editions
  • SQL Server

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

Laurent4x

Member List

Noddy
ATS.NET
Jean_2
jm.blairon
Happy and Peace
DotKu
Tal Kedem
Nix_o_lay
Yuhang
turczytj
LeonardLay
Scott J Baldwin
SirMike
bigjefe
KCH
Monty Shaw
kokain
Conzo
mattcushing
Drew Loika
Only Title

Laurent4x's Q&A profile

  • Visual Basic Can VisualBasic send an SMS message?

    Can VisualBasic v8 (.NET 2005) send an SMS text message to a mobile phone# Mine's running on Windows server 2003. This would be ever so cool !!! Well, yes, Visual Basic can certainly be used to create a program that sends SMS text messages.... BUT... You need to talk to something that knows how to send SMS messages. This something can either be a mobile phone that is connected to your computer (exactly how you talk to the phone depends on the model and how it is connected), a publicly available server that lets you send SMS messages (the only ones that I've personally used were located in Sweden, and did not allow ...Show All

  • SQL Server install SQL Server Express

    when installing SQL Server Express on XP home edition it hangs wilst searching for IIS compnents I tried to install the just released (11/7) SQL Server Express 2005 on Windows XP Home with SP2.  It again stopped with message "detecting installed IIS".  The requirement says WinXP Home with SP2 is support.  What's wrong with this thing   ...Show All

  • Visual C++ comments in a command line file?

    Is there a way to place a comment into a *.txt file intended to be used as a CL file Do you think // will work Thanks So this is a "response file" for CL compiler. Instead, compose the command line or response file in your makefile, like this: MYOPTS = MYOPTS = $(MYOPTS) /YP # this is commented out: # MYOPTS = $(MYOPTS) /otheropts $(CL) -c $(MYOPTS) somefile Regards --PA ...Show All

  • Visual Studio Team System Error During Install of VS 2005 TFS

    Error 32000. The Commandline c:\program files\common files\microsoft shared\web server extensions\60\bin\stsadm.exe ... returned non-zero value: -2130246810 I'm doing a dual server installation. I've followed the steps in the install guide. Everything has checked out so far no problems. No when I get to the step of installing the TFS on the application tier I get the above error. Any ideas. Since we haven't heard from you for a while, this thread is marked as answered. If you still have questions, you may reactivate this thread or post a new one. Bo ...Show All

  • Software Development for Windows Vista I cannot design child activities in my derivated custom CompositeActivity

    I can only add them programmatically, no matter which Designer type that I specify in the [Designer...] attribute. Is this intentional Or will this work in the beta2 or release version Or do I oversee something I do not want to derivate from Sequence. Greetings, Michael Thanks for the answer. I just wanted to be sure I don't oversee something. I'm sorry if this topic already was treated before, but I didn't find anything using Search. ...Show All

  • Visual C# MS Access DB for user logon details

    Hello everyone, I am having a bit of a problem connecting to a MS Database in C#2005. I have written my app befor as a test bed for the whole programme but I used a simple XML file to strore the username and password details. Now that the application is near compleation I would like to use a MS Access DB for the same purpose. The problem I have is I can connect to the DB in solution explorer and I can creat the DataSet but where do I go from hear. I have tried a few things but none seem to work. Any hints or pointers would be greatly received. With thanks in advance. Scott Hi everyone, I used the code above ...Show All

  • Visual Studio Team System How do I fix the TfsOlapReportDS user problem?

    I am currently unable to run any TFS reports. The error message is: An error has occurred during report processing. (rsProcessingAborted) Cannot create a connection to data source 'TfsOlapReportDS'. (rsErrorOpeningConnection) For more information about this error navigate to the report server on the local server machine, or enable remote errors Is it possible to delete and recreate the 'TfsOlapReportDS' user account You have to add the TFSREPORTS Account as local Admin to the application tier server. This will solve the problem. ...Show All

  • Visual Studio Tools for Office How can I disable the menu shortcut keys of Word?

    Hi Using VSTO I can disable the menu items, such as the track changes menu item, but the end user is still able to use the (disabled item) using the shortcut keys. What should I use in VSTO to remove the shortcut keys only on the document that is currently running, or the Word instance that is running Thanks You should certainly be able to DISABLE keyboard shortcuts in Word, as well as create shortcuts to internal Word functionality. They're controlled by the KeyBindings collection of the Application object, which is accessible through the object model. As when using CommandBars ...Show All

  • Windows Forms How to get multiple selected values and items from listbox ?

    Hi people, how do i extract out the selected items and values from a multiple selected enabled listbox through C# code You can use the SelectedItems property. It will give you a collection of all selected items. ...Show All

  • Windows Forms Bind to IDictionary

    I have name/value pair of data (like Flash AsociativeArray or java HashMap):  Hashtable row = new Hashtable();  row.Add("name", "Wilson");  row.Add("age", 22);  textBox.DataBindings.Add(new Binding("name", row, "name")); If I want to bind a this to a textBox or a control  How  Above does not work. I do not want to write get/sets for all types of&n ...Show All

  • Visual Studio Team System Raise Version-Number of Assemblies in TeamBuild

    I am searching for a TB-Task which will scan all files of each project and see if any change has been made more recently, than to the file where the Version-Attributes are stored (usually AssemblyInfo.cs). It should then checkout AssemblyInfo.cs, raise either Major, Minor, Build, Revision (depending on a configuration value) update modified file in SCC. Does such a task exist Is there a way to do something similary for C++ unmanaged projects I would also like to determine if there is a need to increment the version number of the DLL by detecting changes since the previous build. I guess the best way is to look if there's new ...Show All

  • SQL Server An error has occurred during report processing. (rsProcessingAborted) The report server installation is not initialized. (rsRep

    I'v reinstalled RS, then I configuret it. But when I want to open a report raise this error An error has occurred during report processing. (rsProcessingAborted) The report server installation is not initialized. (rsReportServerNotActivated) (rsRPCError) Any Ideas Thanks in advance hi, this probleb caused becaus mainly of the initializtion of reporting services you need to initialize the reporting service in the sql server for that u need to do start-->all programs--->sql server2005-->reporting services-->configure--->initialize -->check the box and press initialize button ...Show All

  • Visual Basic Listbox update based on Access data

    Hello, i am new to visual basic. Currently, i have a list of job names in an access database file. What i am trying to do is update the "ListJobs" ListBox according to a "Name" TextBox using a "Search" Button. If one (or more than one) of the Job Names contained in the access database matches (or contains) the "Name" TextBox, then i would like the given Job Name to be displayed in the ListBox and the rest of the Job Names to be removed. It seems pretty easy, but i can't find the solution to this anywhere. If anyone can help, it would be greatly appreciated. Thank You. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Mesh size versus scaling

    OK, when creating a mesh (triangles) and defining my simple shape - a rectangle for example - what is the best approach on sizing. That is, should I make a big mesh so it is big when placed in the scene Or should I make the mesh small and then scale it or what ever during the scene One instance of this is putting up a "flat" background image into the scene to serve as the backdrop. I made a "large" mesh (-5, 4, 0 to 5, -4, 0) and then placed in in the scene. Of course the farther (Z axis) I needed to place it in the large the mesh needs to be. I can use scaling to then enlarge the mesh, but detemining the scale to use ...Show All

  • Windows Forms Personalization and windows forms? Is it possible?

    I am looking into using the "personalization" provider/service (whatever it is called) in a windows forms application. Before I get to far, I was wondering if: A. Can it be done easily B. Has anybody seen any articles/code out there on doing it C. I need to personalize (save state per user) some grids and such in my winforms application and I want to do it quickly and easily, if the personalization provider isn't the answer, what is Thanks in advance "Today is today, and tomorrow is not today" - The Philosiphiser I have never used a personalization provider, but I am using personalization in t ...Show All

©2008 Software Development Network