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

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

ultek

Member List

Michael Vanhoutte
NoEgo
modtran
Chris Calderon
S Nesbitt
DeamonX
mpetanovitch
Derek at Potters Clay
Jason D. Camp
Duane Doutel
pintu17
AeX
pritha
pbairoleto
Tracey Macias
sqlguy12
georgeob
Kathirvel
ytandeta
Demokratizator
Only Title

ultek's Q&A profile

  • .NET Development Custom SettingsProvider class don't want to load in some applications

    PLEASE HELP IF YOU HAVE ANY IDEAS Problem: From all the test applications I created, I can access the defined settings property, except when accessed from the 3 rd party application where it is supposed to be used. Each time the property is accessed from the 3 rd party application the following exception with error message is reported: O ConfigurationErrorsException O "Failed to load provider type: MediaCollector.TestProvider, MediaCollector, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null." O at System.Configuration.ApplicationSettingsBase.get_Initializer() at System.Configuration.ApplicationSettingsBase.CreateSetting(PropertyInfo propInfo) at System.Configuration.ApplicationSettingsB ...Show All

  • Windows Live Developer Forums Polylines are not coming in Netscape 8.1

    I am working on a mapping project that allows the user to draw polylines. It all seems to work when the user clicks points of the polyline. From there I save the gps coords to a database. When I then retrieve the coordinates and display the polyline it does crazy things. It initially displays correctly but when zooming in, the line sometimes disappears, or draws in incorrect locations. If it does draw in incorrect locations and you pan, the polyline constantly moves. Can anyone please help, this problem is starting to drive me crazy. I have included "some" of my code. function loadMap() { mapDiv = document.getElementById( "myMap" ); new VEMap( 'myMap' ); map.LoadMap(); map.HideDashboard(); ...Show All

  • Visual Studio Team System Problem with references in TFS

    Hi guys, I am having troubles with references in a projects under Source Control, VS2005. And because of them cant run TF Builds. The probem is that when I am finished with editing source code of some solution under SC and it runs perfectly, and I check in pending changes after that, but when some other guy from the development team `checks out for edit ` same solution, even though he clicked that `get latest version` before, he gets errors with references to dll files, custom made components, even though path is the same and they all point to valid and up to date dll`s. And every time someone else has to work with particular project, he has to remove all references manually and add them up from that same directory in order to bui ...Show All

  • Windows Live Developer Forums Tweak User Interface(UI) Powertoy

    Tweak User Interface(UI) - Powertoy Module The Tweak UI Power Toy is designed to allow you to customize the look of your Space. Once you add the Tweak UI Power Toy to your Space you can use it to control colors, module borders and transparency, and the background image’s placement and presence. Granular control combined with existing Spaces layout and module configuration allows for almost endless customizability and personalization. Follow these steps to add this Power Toy to your Space: Log into Passport and Edit your Space. In the Address bar of your web browser add the text “&powertoy=tweakomatic” to the end of the displayed URL. Click the Go button next to your web browser ...Show All

  • Visual Basic Button handler from user control to form

    Hi, I made a simple user control in visual basic 2003 with a text box and a button on it (btnOK). I put the user control on my main project form and I want to make the button in the user control (btnOK) to perform some sort of action on my main form. How do i make a handler on my main form to the button on a user control. Any help is appreciated. Thanks, -heedree Since you created the user control, encapsulating the button and textbox, the events of those controls are not automatically exposed outside the controls: you will have to get your control to raise a public event, first, by adding a public event to the control: Event ButtonClicked As EventHandler( Of EventArgs) When your button is clicke ...Show All

  • Visual C++ Virtua; class compile problem

    Hi, I have a compile problem with a virtual class. The base class is a dll. Interface is, public interface class BuildModule { virtual void saveModuleDataTiny(TiXmlElement *startElement); } There are a few other virtuals in the above class that work fine, syntax is the same. The above class is then inherited in the class below, which is also a dll. public ref class BuildInputModule : public BuildModule { virtual void saveModuleDataTiny( TiElement * startElement) { //some xml code in here that compiles fine } } Both the above classes compile fine. Problem is in my application that uses the BuildModule. When creating the code in the app intellisense sees the method but when I create an insta ...Show All

  • SQL Server Maint Views

    When I use Enterprise Manager to Maint views it basically brought up the view in simple text editor, where I could put in comments as to what the view was for. I did this by just double clicking the view, but now in SQL Studio express when I modify the view it just brings it up in a query editor. I don't see my comments for my old SQL2000 views. Is this just the way it is, and I need to get used to it. Or I am just missing something. hi Bill, Bill Schanks wrote: When I use Enterprise Manager to Maint views it basically brought up the view in simple text editor, where I could put in comments as to what the view was for. I did this by just double clicking the view, but now ...Show All

  • Visual Studio Cannot Add SQL Server 05 Database Connection

    Hello, I am running SQL Server 2005 Enterprise Eval and VS 2005 Eval. I have added SQL Server 05 SP1. This is on Windows XP Pro, sp2. I have one default instance of SQL Server 05 named mssqlserver. SqL Server 2000 is not installed. In VS, when I right click database connections, add a sql server connection and a attempt to connect, I cannot get a list of servers. I went to Tools\Options\database options\database connections and left the 'Sql Server Instance Name' blank. The user that I'm logged in under has sysAdmin rights on the default instance. Is there some special account that needs a login to SQL Server 2005 for this to work, or is there some other problem I have looked online, and spent some time in BOL, can't find any clue ...Show All

  • SQL Server SQL Way to Suppress Repeated Values

    This is a problem I usually solve with procedural code, but I am wondering how/if it could be done with SQL queries. A simple one to many query like: Select inv.invnbr, inv.freight, invline.quantity, invline.partnbr, invline.cost from inv inner join invline on inv.id = invline.InvID Returns something like: invnbr freight quantity partnbr cost 100 50 3 abc 50 100 50 6 def 65 100 50 10 ghi 70 Is there way I can rewrite the query, or add a subquery such that the result set would be: invnbr freight quantity partnbr cost 100 50 3 abc 50 100 0 6 def 65 100 0 10 ghi 70 Eg, the freight value, which comes from the one/header table, ...Show All

  • Software Development for Windows Vista Displaq word-document

    Have to display a formatted word-document (approx. 5MB incl. images and tables) on WinMobile 2003 and 2005. In the document are several links referring to other places in the document. I'm trying to do this by converting the document to html and using the Webbrowser-class to display it. Unfortunately, webbrowser.DocumentStream does not exist in CF. Using webbrowser.url will not work because the document is encrypted and i have to decrypt it before it can be displayed. Any suggestions to work around Thxs in advance! Hello PDADev, Thanks for your post. This forum is patrolled by folks who are experts in developing apps that run on Windows Vista mobile computers (e.g. laptops, Tablet PC ...Show All

  • Visual C++ RUNTIME ERROR

    MICRSOFT VISUAL C++ RUNTIME LIBARY RUNTIME ERROR Program:C\Program Files\Internet Explore\iexplore.ex This error pops up every time I connect to the internet.How do I remove it and keep it from comming back What might have caused this to happen im afraid this is the wrong forum to post in. The best place would be over at the appropriate IE communities: www.microsoft.com/communities you may wish to do a system restore before the error occured, could also be something to do with toolbars/search bars/IE add-ins you have installed causing the problem. Thanks! ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. cloud of dust like in battlefield 2 : mc

    does anybody know how the developers from battlefield 2 : modern combat did the cloud of dust effects did you know what i mean it could be a billboard with sprite animation hmm... yes that is possible. i don't know what imposters are, so i will google for it.. thanks a lot guys! @Joel: i don't mean smoke granates. ...Show All

  • Windows Live Developer Forums Assign to Pushpin

    I have a set of pushpins whos ID range from 0 to 4. So I was wondering if there was a way to assign the code listed below to a single pushpin (by ID ) Thanks function PinClick(id) { document.getElementById('txt1').value = ("ID 0"); document.getElementById('txt1').value = ("ID 1"); document.getElementById('txt1').value = ("ID 2"); document.getElementById('txt1').value = ("ID 3"); document.getElementById('txt1').value = ("ID 4"); } Yeah. I copied your code when showing you my suggestion, and managed to copy a typo . Each of these lines: document.getElementById('txt1').value = ("ID 4"); should be (for ea ...Show All

  • Visual Basic Picturebox Question

    I currently have a picturebox that I am using as a "ball" to bounce around my form. The problem is that image is circle and the picturebox is square so the corners of picturebox are causing issues. How do make a round picturebox or what would be other solutions to the problem Thanks I was thinking that you should be able to create a Gif file with the outer area set to a color which is transparent and then set the background color to transparent. PictureBox1.BackColor = Color.Transparent PictureBox1.SizeMode = PictureBoxSizeMode.AutoSize If that doesnt work for you then you can check out something like this project which appears to support transparency. http://www.codeproject.com ...Show All

  • Visual Basic How can I replace the newline character with something else from a textbox?

    In my database I have addresses in one line, comma separated. That way they can be as many lines as they want... I read from the database and put addresses in a textbox as you would like to read them - on individual lines. I use a simple string substitution: txtAddress.Text = Replace(cmbAddress.Text, ",", vbNewLine) I'm having problems saving it back to the database with commas if the user modifies it. I tried variations on: Replace(txtAddress.Text, vbNewLine, ",") with vbCrLf or chr(13) isntead of vbNewLine with no success so far... Anyone know how I can succesfully find my new line characters and replace them with commas Thanks, James It was a silly mistake on my part. I am converti ...Show All

©2008 Software Development Network