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

Software Development Network >> R.Tutus's Q&A profile

R.Tutus

Member List

Lucia_fernadez
Uncle K
Bern McCarty
ULeas
David Bridgestone
Rakesh Bhardwaj
gracias
paulixml
AlucardHellSing
Jacawa
regthesk8r
Kevin Barnes
Peter Ritchie
MDesigner
olloemre
AlexanderJ
jgech
oaix
João da Nóbrega
Luke R
Only Title

R.Tutus's Q&A profile

  • SQL Server SSIS refresh fails

    When I use the OLB data source (SQL SERVER 2005), select * from tableA, then use several steps and then Union ALL and Fuzzy Match, the process works fine. When I change the data source SQL to include two tables with a cross join, the new fields in Table B do not appear in the Union ALL or Fuzzy Match steps but do appear in all steps prior. The advanced editor refresh does not fix the problem. Deleting and recreating the Union ALL shows the Table A and Table B fields. Fuzzy Match is still incorrect. Deleting and recreating Fuzzy Match fixes it. This is because the UNION ALL component is an asynchronous component - all components prior to it must be synchronous because they are not exhibiting the same proble ...Show All

  • Smart Device Development SmartPhone WM 5.0 emulator browser address bar-numeric values

    Hi, The browser address bar on a SmartPhone (WM5.0) emulator does not allow me to enter numeric values. I want to enter an ip address ( http://127.0.0.1 for example) but it wont allow me any numeric values. How do I get around this problem since the name of the machine I want to connect to also has numbers in it. Thanks, -Suri Sorry but i can enter the numeric values. Please note that since by default the mode is text mode, so you will have to do carry out multiple presses of button to reach next value. For example, to type '2', you will have to press '2abc' labelled button 4 times quickly like when you typing SMS. Hope this helps you out. -Thanks, Mohit ...Show All

  • Visual C++ WaitForMultipleObjects doesn't work

    Hello Everyone! Function WaitForMultipleObjects Requirements: Requires Windows Vista, Windows XP, Windows 2000 Professional, Windows NT Workstation, Windows Me, Windows 98, or Windows 95. But this function doesn't work in WinNT. Why Thanks in advance Vladimir   Viorel. wrote: Maybe you should replace this: LARGE_INTEGER check_elapse = {10000}; with this: LARGE_INTEGER check_elapse = {-10000};  Otherwise the second argument of SetWaitableTimer  is treated as an absolute time value, which is never reached, since it is in the past (1/1/1601).   I hope this helps. LARGE_INTEGER check_elapse = {-1 ...Show All

  • .NET Development GDI+

    I am not sure if its a right place for this thread, sorry, move it if needed and was possible. I am using Drawing namespace and learning GDI+. I want to draw some shapes and paths on the screen. The problem is that a window is always needed to create graphics object. It is just like a prison for the shapes. What is the solution I want my shapes to be seen on the desktop and on the wallpaper for example, not in a window. Thanks. Hi my friend, Here you can find an example of how to do borderless with custom shapes (so the background is visible). Hope this helps http://www.thecodeproject.com/csharp/CustomForms.asp Cheers ...Show All

  • Windows Forms Download entire folder via webservices

    Hi guys, Anyone know how to download an entire folder via webservices Thanks Hi, you'd make the question more specific, so others can help you with it. I moved to Windows Forms Data Controls and Databinding  and hope you get satisfying answers, thank you. ...Show All

  • Visual C# app.config

    Hi, how  i can use app.config file for data base connection string. And where i can find this file in MS visual Studio 2005. Hi, From the menu choose Project > Add new item From the templates choose Application Configuration File -- SvenC ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Using XNA Game Studio Express to develop solitaire game

    I am an experienced developer but a newcomer when it comes to developing games. I recently downloaded XNA Game Studio Express and have been studying the space war game. I am developing a solitaire-type card game where the player can drag and drop cards from one pile to another. I have much of the domain logic written, and now I am tackling the user interface. Most of the XNA tutorials I have seen use arcade-type games for their examples, and I have not seen any that use a solitaire-type card game. This brings up several questions: 1) Is the XNA framework suitable for developing a solitaire-type card game 2) Does any know of any XNA tutorials that use a solitaire-type card game (preferably with draggin ...Show All

  • SQL Server Rookie Drop down Question

    I know this dumb, but is it possible to set the width of the dropdown list in the preview form when designing a report (Drop down for the parameters) The data in the dropdowns are way to long and the dropdown scrolls sideways which is unacceptable. Any help will be much appreciated. ...Show All

  • Visual C# HELP - Problems using SendKeys class

    Hi, I am developing an application that uses SendKeys to control a game. But the problem is that, till now, of all the games i hav tried, it can work only on BricksFix version 1.62. Can anyone pls tel me y it is not workin on other games. I tried a lot of games, but it is not workin, but wen i try on BricksFix its workin. Also if possible, pls give me a list of games which i can control using SendKeys. Thanx i tink u hav not understood wat i was saying.. its notin abt the focus or control now tat confuses me.. the issue is tat my program can work only on one game i.e. BricksFix. i had tried lots n lots of games, but its not workin.. i am tryin to figure it out.. but i don tink tat my knowl ...Show All

  • Windows Forms C#: Search Function in Windows Form - HELP

    Hi, I wanted to create a search function to search a Database and thereafter to display the search results. private void btnSearch_Click( object sender, System.EventArgs e) { DataTable datatable = new DataTable(); this .oleDbDataAdapter1.Fill(datatable); //Extract only Primary Key ("Customer ID") from Database string custID = datatable.Rows[0].ItemArray[0].ToString(); int count; bool found = false ; for ( int k = 0; k < count; k++) { if (txtSearch.Text == custID) { found = true ; // //How to copy the Search value into CustID textbox try { // Attempt to load the dataset. this .LoadDataSet(); } catch (S ...Show All

  • Visual Studio Express Editions Link errors using iostream in a dll VC++ Express 2005

    If i create a new project using the template for shared libraries, then simpley add the line: #include <iostream> to the .cpp file generated for me by the template so that it looks like: #include "stdafx.h" #include <iostream> #include "CPPTest2.h" I get the following errors: CPPTest2.obj : error LNK2028: unresolved token (0A000027) "public: virtual __thiscall std::logic_error::~logic_error(void)" ( 1logic_error@std@@$$FUAE@XZ) referenced in function "public: __thiscall std::invalid_argument::invalid_argument(class std::invalid_argument const &)" ( 0invalid_argument@std@@$$FQAE@ABV01@@Z) CPPTest2.obj : error LNK2028: unresolved token (0A000029) "public: __thiscall std::logic_er ...Show All

  • Visual Basic Get the latests File Created

    I have a directory that is going to have files created in it once a day, I want to make sure my application can grab the latest file added to that folder I have Dim files As String() Dim theFiles As String = Directory.GetFiles("C:\SomeDirectory") theFiles = files(0) but all this does is get the first file at the top of list in the directory...so if a newer one is added under it...It s till is grabing the one at the zero positon....any help with this ...Show All

  • Visual Studio Express Editions Weird errors

    Hi everyone, I am struggling to make a linked list implementation. But when I complile the program, I got really weird errors whixh I can not overcome. Would you please explain me the following error's meaning c:\documents and settings\mert\belgelerim\visual studio 2005\projects\hw3-2\hw3-2\person.h(6) : error C2011: 'Person' : 'class' type redefinition c:\documents and settings\mert\belgelerim\visual studio 2005\projects\hw3-2\hw3-2\person.h(6) : see declaration of 'Person' c:\documents and settings\mert\belgelerim\visual studio 2005\projects\hw3-2\hw3-2\addressbook.cpp(15) : error C2027: use of undefined type 'Person' c:\documents and settings\mert\belgelerim\visual studio 2005\projects\hw3-2\hw3-2\person.h(6) : see declaration ...Show All

  • .NET Development Web Services - File Transfer

    Hi All,      I am using VS 2005 (BETA 2) and a Web Service to upload/download files.  I am trying to use the My.Computer.Network.UploadFile and My.Computer.Network.DownloadFile methods.  In essence, I have a file (test1.exe) that resides in the same directory as the web service, and would like to save it to a remote computer when the user calls my method.  It gives me the following error: System.Net.WebException was caught   Message="The remote server returned an error: (403) Forbidden."   Source="System"   StackTrace:    at System.Net.WebClient.DownloadFile(Uri address, String fileName)    at Microsoft.VisualBasic.MyServices.Internal.WebClientCopy.DownloadFi ...Show All

  • .NET Development i need help for convert (.doc) file into (.pdf) file in asp.net

    Hi, Am implementing asp.net in my project . and am new to asp.net. In my project i convert one file(.doc) to another file (.pdf) format i don't know how to convert this can you please give a code for this implementation this is very helpful for my project Thanks in Advance With Regards S.Senthil Nathan If you have Office 2007 installed with the Safe as PDF plugin you can use MS Office - hwoever doing this from asp.net is usually almost never going to happen because of the advanced security permissions that you usually have to end up giving to COM objects so that you can tell the COM brokerage service that asp.net has permission to access the ms word COM. So You are probably going to be bes ...Show All

©2008 Software Development Network