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

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

i_al7

Member List

marko2511
lonskie1030
SSG31415926
faith2006
Tony Hudson
c.w.chambers
cmazur
Chris Richner
ptah
waldi_the_dog
John Kennedy
JeremyNYC
karolina222
AmitK
Christian Arnold
waterhunter
Hannweber
Steve Greatrex
nye
Sandeep Prabhakar
Only Title

i_al7's Q&A profile

  • Visual Basic missing smart tag actions

    Hi there, I tried to convert a control by using the smart tag action as descriebed in the book "Introducing Microsoft Visual Basic 2005 for Developers, chap. 4", but there is neither such action in my ide nor any other easy way to convert the control. The same behaviour occurs when I try to use the master details functionality in the smart tags for the dataconnector - no such action is present. I'm using W2K SP4, the german version of vb2005 and an access database. Is there any solution or workaround Regards, Georg Walter Reinthaler (Vienna/Austria) Hi Georg, I believe the smart ...Show All

  • SQL Server sql statement from webform with dynamic join, how?

    In my application the user can enter form textfields and check checkboxes to dynamically generate the SQL SELECT. Most searched values com from one table but some come from other tables with a 1:n relation. So, if needed INNER JOIN them by writing the FROM statement in a variable, that I use in the query. Like this: " INNER JOIN tCmsElementCustomProdspecArtikelZusatzStoff ON tCmsElementCustomProdspecArtikel.artikel_ID = tCmsElementCustomProdspecArtikelZusatzStoff.art_zus_artikelid " This works fine for some cases but in some cases I need to select all articles with "art_zus_artikelid = id1 AND art_zus_artikelid = id2" and for both "art_zus_v ...Show All

  • SQL Server issues writing a deployment script

    In  this post , i asked if there were any tutorials available on using the RS command-line utility. I have since found some that steered me in the right direction. This guy demonstrates how to render a report by passing a scripty-VB file with extension .rss into the utility : http://www.sqljunkies.com/Article/B197B9E7-EF3D-4D70-9B5E-47B74E57EF38.scuk And this guy explains some of the underlying principles behind this marvel of modern software engineering : http://odetocode.com/Blogs/scott/archive/2005/01/30/975.aspx What I'm trying to do is build a script that deploys my whole suite of reports to the report server. I've built a ...Show All

  • Visual C++ Visual Studio 2005 MFC Applications on Windows 98

    Hi, I am tring to build a unicode app to work on win 98/nt/xp. Built a sample MFC application in Visual Studio 2005 Team suite Beta 2. A unicode dialog app with a button. When run on windows 98 it shows this message.  Installed VCredist_x86 and .NET framework 2.0 latest versions downloaded from web. Also coped mfc80u.dll to the exe folder. Microsoft Visual C++ RuntimeLibrary Runtime Error! This application has requested the runtime to terminate it in an unusual way.  Please contact the application's support team for more information. I tried with Express Edition and Windows Forms it works in windows 98. Thanks, ...Show All

  • Windows Forms Partial Updates in Clickonce

    Hi all,      I have created a solution which contains a executable(windows forms project) and 2 dlls(library projects reference in windows forms project), I generated manifest files(application manifest and deployment manifest) using MageUI and deployed the applicaiton. The application was running fine.    I updated the exe(windows forms project), changed the assembly version number to 1.0.0.1, is it required to include the other 2 dlls (the projects which I have told in first paragraph) in the application manifest file.     I deployed the updated version excluding the dlls whi ...Show All

  • Windows Forms windows form stops responding during non-infinite loop

    Hi,I have a windows form that sends out a monthly opt in newsletter email to all of our community members. The problem is that the list is large, and every time I run the program it sits there appearing to be frozen. I have to watch the program under task manager and watch its resources to see if its running, and checking the queue mail folder for emails. This obviously is not a great way to run the program.In my code I loop thru a sqldatareader with 10's of thousands of records, and when its done I update the windows form with the counts of emails sent etc. How can I stop this form from not responding Is there something I can put in the l ...Show All

  • Visual J# ChangeDatabase

    To change the database in an odbcConnection object there is the method odbcConnection.ChangeDatabase(newDatabaseNameAndPath) But it does not work. My code sample is: myDatabase = openFileDialog_Datenbank.get_FileName(); Access_odbcConnection.Open(); Access_odbcConnection.ChangeDatabase(myDatabase); Access_odbcConnection.Close(); Does anyone have some experience with changing the database during runtime Do I have to first close the form, which uses the database Thanks Friedrich Hi, Can you please answer following queries... 1. What is the error or exception message you are getting   2.  Does it ...Show All

  • Smart Device Development Problem with Smartphone WM5 connecting to the Internet on Standalone Device Emulator

    To anyone out that can help, I cannot get the Smartphone WM5 connecting to the Internet but I can with the Pocket PC WM5 emulator! What do I need to configure on the Smartphone WM5 to get network connectivity On both emulators, in the Config the option "Enable NE2000..." is checked - so I'm not sure what I need to do. Any help would be greatly appreciated... ps. I do not have VS 2005 installed. Chris You may want to go through this blog http://blogs.msdn.com/akhune/archive/2005/11/16/493329.aspx -Thanks, Mohit ...Show All

  • Windows Forms How to compare the Dates in VB.net

    Can some one please let me know how to compare the Dates in VB.net Thanks I tried this on my form I have two Date Picker controls. In the following code I am trying to assign to the text box value wrong dates if Start Date is greater than end date it is not working  Private sStartDateTime As Date     Private sEndDateTime&nbs ...Show All

  • Windows Forms Problem with BindingSource.Find on Relational BindingSource

    (Beta 2) I get an error message, "DataMember property 'AccountingPeriodId' cannot be found on the DataSource." when calling the Find method on my binding source: AccountingPeriodBindingSource.Find("AccountingPeriodId", 7); Any clues TIA, Rob   RobLinton wrote: (Beta 2) I get an error message, "DataMember property 'AccountingPeriodId' cannot be found on the DataSource." when calling the Find method on my binding source: AccountingPeriodBindingSource.Find("AccountingPeriodId", 7); Any clues TIA, Rob I get the same error on the released version of VB 2005 Express.  I can use the Binding ...Show All

  • Visual Basic Console and windows application in vb.net

    Can I add a windows application to my console application In other words can I have both under one .exe file I know that I can add a form to a consol application and it will appear once I run the .exe file but the thing is that I can not interact with the form. It’s like freezes. Hi, If your form freezes then I think you have some sort of loop in your command application. If there is some loop then just put following statement in loop body some where. System.Windows.Forms. Application .DoEvents(); For example I have a console application I added a form in it Form ...Show All

  • Visual Studio Team System I installed (with very difficults) Team fundation Services but now ...

    My environment is :  - DB Server - SQL 2005 June Dev  - TS Server - Team fundation Jully  - Visual Sutdio 2005 Jully When I want to add a team project in my VS 2005 , i have an error with sharepoint. When I load http://localhost i don't have any sharepoint sites. I decide to create a top level site for my http://localhost but when i launch this url he said "Cannot connect to the database" Do you have an idea for my problem I passed 5 days to install-desinstall Team Fundation database tier, services tier ..... Please help This basically means that Sharepoint is not configured. This takes a b ...Show All

  • Visual Studio comparing large Projects

    I am trying to find out ways to compare large VSS projects between production and maintenence. there are atleast 15 - 20 projects and typical sizes of these projects vary from 1 - 15 GB. I was wondering whether writing a batch script might be the best way to do this. I read about the command line options in VSS and it seems a good option. Has any one written a batch script to do something like this I am also wondering if this would work on some of the large databases, what kind of reports would i get if i use the command line etc. Any suggestions are welcome Thanks Suresh I have been able to partly complete this, however ...Show All

  • Visual Studio Team System Website Branching

    Hi all, I was wondering if any of you have run into a similar problem and can help. We're trying to branch a website project for a QA release.  When we branch it, and then open the solution, it seems to still reference the original codebase.  Is there something special you have to do to get a working branch for websites in particular   We need to be able to do QA bug fixes without introducing code from our mainline release. I appreciate any assistance, links or advice that you can offer.  Best Regards, -Mark Can anyone help or point me to a link that might have informat ...Show All

  • Microsoft ISV Community Center Forums Borland Out, where to go from here?

    I've found the best way to get a straight answer, or some honest advice is to simply ask another developer. I'm a small ISV designing software on multiple platforms. In the past years, I've been studiously avoiding Microsoft development tools for a variety of reasons - mostly cost and preference. I used Borland for a decade, and it performed well most of the time. Now that Borland is no longer in the developer business, I have to have an eye for future development tools on the Windows platform. Microsoft seems to be the last one standing, outside of OSS software like Eclipse. What is the best way to approach this as far as Microsoft is conce ...Show All

©2008 Software Development Network