Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. abcfantasy

    Lookup from 2 Data Sources

    That is a possibility, true. Thanks for the response. But I wonder why my scenario would not work. Isn't the lookup function intended to work on datasets with different data sources? Why wouldn't it work that way? Andrew Junior Analyst
  2. abcfantasy

    How do create a Custom scale colour for a Gauge ?

    How about instead of coloring the scale, you insert 3 ranges and set their colors independently? You can right click the gauge and select 'Add Range'. You can customize each range to specify the color and range on the gauge that it uses. Andrew Junior Analyst
  3. abcfantasy

    Lookup from 2 Data Sources

    Hi, I'm trying to use the lookup function from 2 datasets that get data from 2 different data sources. The result of the lookup function is just blank, no error or any value. It only worked for me when using it on 2 datasets from the same data source. Is it restricted this way? Below is...
  4. abcfantasy

    Add Data Source Reference from BIDS

    Yes it is not defined in the project. The reason is that the data source was created by someone else in the report server, who can give the proper credentials. There's a problem with developing the report in BIDS and then changing the data source property from the report server. The deployment...
  5. abcfantasy

    Add Data Source Reference from BIDS

    Hi, I have a Report Server Project which I manage using Business Intelligence Studio. Now, on the report server, there is a data source defined and ready to be used. It feels silly, but from my project, I can't seem to be able to browse for a data source on the report server. Everything I try...
  6. abcfantasy

    GUI application for command line program

    Thanks for your reply. Yes exactly, a .net gui for a dos application. I agree it is one big hack. Could you elaborate on the service layer? Do you mean creating another layer that controls the communication between the gui and the dos application and do any processing there? I'm not too...
  7. abcfantasy

    GUI application for command line program

    Edit: Sorry for posting again. I'm doing all this in C#, I hope this is the right forum. || ABC
  8. abcfantasy

    GUI application for command line program

    Hello, there is this command line application and I need to create a GUI application for it to simplify work and increase efficiency. The way I'm doing it is that the graphical application runs the command line program, sends all input to it and receives all output. While building it however, I...
  9. abcfantasy

    Implementing a Distributed Database

    After reading a little about federated databases, I'm not sure it's that what we're looking for. The following quotes is what turned me away from them: "A database federation is not a high availability solution." "If any server in the federation is taken offline, the entire database system...
  10. abcfantasy

    Implementing a Distributed Database

    Thanks for the reply. We're planning an application that will be used world-wide, by numerous users, so obviously it's not feasible to use one server. A possibility is to use a database server for each state/region. Most information in each database will only concern that region they are...
  11. abcfantasy

    Implementing a Distributed Database

    Hello, I need to implement a distributed database and I have been trying to look up information about this but can't seem to find the right information. All I wish is that someone guides me to articles or books that can help me on this. What I wish is to implement this database (using MS SQL...
  12. abcfantasy

    XML parsing - End of file error

    The Read() method returns a boolean. If it is false, there are no more nodes to read. XmlTextReader also has an EOF property, which is true if the end of the file is reached. Finally, you could enclose the reading statements in a try finally statement. Hope that helps. || ABC
  13. abcfantasy

    Convert .jpg / .gif / .bmp to .png in php

    It's the same example that feherke gave, just replace 'imagecreatefromgif' with 'imagecreatefromjpeg' || ABC
  14. abcfantasy

    how do i bind selectedvalue for radiobuttonlist in datagrid?

    The cause may also be that myvideo is null. In that case, it would mean that '(RadioButtonList)musicDetailsGV.FindControl("videoTypeRadioList")' is returning null. || ABC
  15. abcfantasy

    How to get name from a <input type="file" /> ?

    Your HTML code should be something like: <form enctype="multipart/form-data" method="POST" action="..."> <input type="file" name="uploadfile" /> </form> where "uploadfile" can be replaced with any name you wish (as long as you use the same name in the $_FILES). Also, try replacing $_FILES with...
  16. abcfantasy

    How to get name from a &lt;input type=&quot;file&quot; /&gt; ?

    You must specify a name tag: <input type="file" name="uploadfile" /> Then: $_FILES['uploadfile']['name'] || ABC
  17. abcfantasy

    Reference Multiple Versions of 1 Assembly

    See if this helps: http://blogs.msdn.com/abhinaba/archive/2005/11/30/498278.aspx || ABC
  18. abcfantasy

    NotifyIcon - Left / Right Click Only

    MouseDown occurs when the button is pressed (it won't matter if it is depressed elsewhere and not on the icon) MouseClick occurs when the button is pressed and depressed on the icon. Hence why it would be more suitable :) || ABC
  19. abcfantasy

    NotifyIcon - Left / Right Click Only

    For the context menu: You simply set the ContextMenuStrip property of the NotifyIcon to the menu. When right clicking the icon, the menu will be shown. For the showing/hiding: Create a MouseClick (not Click) event, and check the Button property in the MouseEventArgs: private void...
  20. abcfantasy

    Is there an equivelant to lstBox.ItemData(lstBox.NewIndex)

    Ah well, if you can go well with a ListBox, that's fine. Glad to be of help. || ABC

Part and Inventory Search

Back
Top