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

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

jrb1

Member List

Dietz
KimberlyL
Logan1337
Leon Mayne
Heinsz
Josh Smith
Robin101
fusg
PhilipRieck
KSuresh
Noorul Ahmed
kin2
dhmason
dhenry
ChandraP
zerocle
ksvasan
AdrianWoods
wings9697
obulay
Only Title

jrb1's Q&A profile

  • Visual C# Search result page display traking

    Hi Guys, I have a lot of keywords to pass to google or yahoo search, or search.live.com. Keywords are on text file. So I need some idea how to handle it, sample codes which will open any of the search pages, and pass the keyword,which are on text file, then it writes top 10 results of the search in text file. Example: keywords in text inputfile F1 test1 test2 test3 www.google.com(test1 ) or http://search.yahoo.com/(text1 ) or www.search.live.com(text1 ) search result 1 www.test1.com 2 www.testXX.com 3 www.testXXXX.com 4. 10. www. www.google.com(test2 ) or http://search.yahoo.com/(text2 ) or www.search.live.com(text2 ) 1.www.test2.com 2.www.text2XX.com 3........ ...Show All

  • Visual Studio Page advance and reprinting

    Is it possible to advance a page, reprint title and headders, and then print detail lines I am using VS 2005 with Visual Basic backed by SQL Server Express 2005. I am printing customer bills and this new issue has arisen. There is 1 detail line format in my report. The fields on the report are coming from a working table. All customers are processed and all of their info is saved in multiple rows on this table one after another. Example: Customer 1 ________________________________ ________________________________ ________________________________ Customer 2 ________________________________ ________________________________ ________________________________ Customer3 ________________________________ .... ...Show All

  • Software Development for Windows Vista A problem with Installing VS 2005 Extension for WWF

    I have a problem when trying to install the latest version of visual studio 2005 Extension for windows workflow foundation. I've installed: .Net Famework 2.0 from the following link: http://www.microsoft.com/downloads/details.aspx FamilyID=0856eacb-4362-4b0d-8edd-aab15c5e04f5&DisplayLang=en .Net Framework 3.0 http://www.microsoft.com/downloads/details.aspx FamilyId=10CC340B-F857-4A14-83F5-25634C3BF043&displaylang=en VS extension http://www.microsoft.com/downloads/details.aspx FamilyId=5D61409E-1FA3-48CF-8023-E8F38E709BA6&displaylang=en When I try to open any sequential workflow in visual studio 2005 I couldn't open the design view and the following err ...Show All

  • Visual C# Windows Form Controls and Threads

    Hey, I'm trying to pass a ListView (called lstCode) to a seperate thread. I'm not changing the listview in any way, I'm just using it like this: [code] private void tsbPlay_Click(object sender, EventArgs e) { macThread = new Thread(new ParameterizedThreadStart(ExecuteAll)); macThread.Start(this.lstCode); } private void ExecuteAll(object lst) { ListView list = (ListView)lst; foreach (ListViewItem node in list.Items) { Macro.Execute(node.Text); } } [/code] I get the usual "Cannot use because of cross-threading blah blah blah". I've googled everywhere but I still need help. RWF wrote: You could set CheckForIllegalCrossThreadCalls = false; But it wo ...Show All

  • Visual C++ Can you please help me

    Hi I am trying to pass a object by reference with pointer into a function and using a method in that object. By seem to me it doesn't work. The object i want to pass is Game and in Game have a function vector <char> getPuzzle (); I pass game into the function bool guess (Game* game){ //do something here vector <char> p = game->getPuzzle(); //do something here too } it will compile but when i run it it come back with the error message This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information. Can you please tell me is that the correct way of using it What should i do to avoid this kind ...Show All

  • Visual Studio 2008 (Pre-release) About Ado.Net 2.0 Provider conformance

    Is there any tool to test Ado.Net 2.0 Provider conformance How is it made sure that a new Ado.Net 2.0 provider works in a live environment Unfortunately, we currently don't have a standard performance test suite for ADO.NET providers, so you would have to write your own test suite to make sure that the provider works appropriately. If you're interested in writing ADO.NET providers feel free to contact us directly (e.g. email me to pablo dot castro at microsoft dot com) and I'll hook you up with the folks that maintain our relationship with provider writers. Pablo Castro ADO.NET Technical Lead Microsoft Corporation ...Show All

  • SQL Server SQL Mirroring Witness

    I have managed to set up mirroring on SQl 2005 however i have a come across a problem that i dont know how to resolve. Im running the mirroring with 'High Safety with automatic failover.' If i instagate a failover on the Principal Database, the mirror becomes the Principal, and vice versa ... great .. how ever .. i tried the golden test by making the principal server dissapear by yanking out the network connection, expecting the mirror to become the principal.....nope it just stays there in a disconnected / restoring state which isnt any good to man nor beast . I thought that the Witness should have dectected that the principal database had 'dissapeared' and would have made the mirror the Principal. Any pointers on where i might ...Show All

  • Visual Basic Opening .vbp in Visual Studio .Net 2003

    Hi I don't know if this is a silly question or not - I have v.little experience. I am trying to open a VB6 vbp in Visual Studio .Net 2003 and it just opens as text. Is there something special I should be doing or do I need to open the vbp in an older version of Visual Studio. I am not looking to upgrade the code - just read it. Thanks in advance If you are wanting VS to auto open all of the project files then you will have to use an older version of VS or tell VS to upgrade the current project...Otherwise you can open the actual code files one at a time (in any text viewer)inorder to just read them! ...Show All

  • Visual Basic I can't see the "Windows Control Library" template

    Hi. I wanna build a custom form, but I can't see the Windows Control Library, which is needed to build it. When I open up the Create New Project, it doesn't show. Is this feature unavailable in Express Edition It is but not like that. Have a look at the fourth post in this thread. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1144426&SiteID=1 ...Show All

  • .NET Development Invoke exe from Windows Service

    I want to invoke an exe from Windows Service. I had tried using system.diagnostics.process.start but it is not woking. any idea..to do this......... Please help me...... Thanks in Advance... Regards, C.Babu. See Task Manager, it will be running hiddenly. To avoid this behavior. There is some property like InteractWithDesktop etc. I beg your pardon I dont remember what was it, Set it to true and I hope your application will be visible. Best Regards, Rizwan ...Show All

  • Software Development for Windows Vista Page Limit?

    Does anyone know whether there is a page limit in an XPS document I have created a 10,000 page XPS document printed with the Microsoft XPS Document Writer from Crystal Reports XI. I can open this document in the XPS viewer with no problems. However, when I create a 100,000 page document using the same package, the XPS document does not open in the XPS viewer and the memory use on my computer jumps and keeps on rising. I am working on Windows XP. Any ideas, anyone The problem you're experiencing is a bug in the implementation, not the limitation of XPS format itself. This will be considered for a future release. If you're blocked by this issue, try to write or find a tool which can repair ZIP files. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Using the framework with WinForm controls

    Anyone have any idea on how to redirect the rendering output to something like a winform Panel control, so that I could use the framework for traditional applications bigbob, could you list the code sample for the winForm/XNA. to show how do you provide the panel for "myForm.Handle" in other word how do xna to draw to the panel not to a button on myForm ...Show All

  • .NET Development Backup and Restore a sql database using vb.net

    i'm trying to create a windows application with two buttons one to backup a database and the other is to restore it, can so me one assist me with this Thanks, Rama Hi, The best and easiest way to backup/restore database is sql. So you have ust to execute Backup/restore sql commands on the server. Backup command : "Backup database YourDataBaseName to disk = YourFilePath" Restore Command "Restore database YourDataBaseName from disk = YourFilePath" You must notice here that the YourFilePath is a path of a file on the database server. You cannot do Backup/restore to/from files that are physically not on the database server. To execute the command just connect to the m ...Show All

  • SQL Server Connect to SQL-Databas over TCP/IP

    Hi.. I am really new in C# Programming witf h Database. My problem is: I have a SQL Database (in an other country) and My Application has to connect it for data transfer. How can I do that Which alternatives do i have. Should I use a Web Service Thanks... Hi, You could use the following connection string; Provider = sqloledb ; Data Source = 190.190.200.100,1433 ; Network Library = DBMSSOC ; Initial Catalog = myDataBas ; User ID = myUsername ; Password = myPasswor d; Obviously you will have to change the IP address to that of the server where SQL resides... also make sure you have the correct port which is the value after the comma (,) on the IP address ...Show All

  • SQL Server I'm Looking For : ReportViewer tutorial With C# && .NET

    Hi All , If you will send to me a link I'll be very grateful . Thanks In Advance Boaz Shalev. Take a look at the Web Analyzer starter kit at http://lab.msdn.microsoft.com/vs2005/downloads/starterkits/default.aspx . ...Show All

©2008 Software Development Network