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

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

CBInc

Member List

Shelto
one
Rahulkumar Patil
Dazzford
Osnimon
karl_otto
david.r.johnson
ecardenas
ram1608
Alexey Shirshov
valQC
aguess
Rishiraj Singh
honouroll
James HSia
AK111
lchase4411
brigitte64186
alecomo
JCCJ
Only Title

CBInc's Q&A profile

  • Visual Studio Express Editions Very confused beginner what am I missing

    I have tried many example that I have ran accross on the internet on how to add a row to a table in Visual Basic Express edition and of course none of them are working "Obviously I am Stupid". I have also created a new project and not have allowed the database to be copied into the project "getting past the whole making a copy of the database to the debug directory issue" I found the following articles at microsoft which tells you what I thought I needed to do: 1. http://msdn2.microsoft.com/en-US/library/5ycd1034(VS.80).aspx 2. http://msdn2.microsoft.com/en-US/library/ceab2k93(VS.80).aspx 3. http://msdn2.microsoft.com/en-US/library ...Show All

  • Visual FoxPro BUILD PROBLEM

    Hi all,Im a new programmer in VFOX PRO 9 and im currently having a rather noobish problem. I want to make my application as a .exe file so i can distribute it to someone that doesnt has the vfp installed.i have included the dll files that are specified in help and have put the application as a top level in the application builder.i have disabled quick start and have selected a form as main so that program starts with that one.the problem is that when i build the project and run it  from INSIDE vfp all goes well (i see only the main form).when i run the exe OUTSIDE vfp i see a window of vfp with a menu bar (file-edit-window-help)and my m ...Show All

  • Visual Studio Team System Team Foundation Server Settings - permissions

    I have added three users to the team foundation server (adm , but only 2 can connect to the server. The thing is, that the one that can not connect was added to Permissions and now I cannot remove it from Permissions, but I can remove the user from the adm: group. Check the properties of the user to ensure that he is not a member of TFS Everyone.  We had a bug in Beta 2 where users can were directly added to TFS Everyone and an Administrator's group could not connect.  If this doesn't fix your problem, please provide more details about the exact error message that you're seeing and the g ...Show All

  • Visual Studio 2008 (Pre-release) integrating Soap Extension using WCF

    Hi , I have a 3 rd party web service i have created proxy for it using svcUtil. I want to pass Headers in my Soap request so i have created soap extension to modify my request. problem that am facing is server side message stages are getting fired in ProcessMessage function but client side message stages are not getting executed. Note: 3 rd Party Web Service need some headers but the provider had modified WSDL file. he has removed those Header Defination from WSDL so those required headers objects are not reflected in my Proxy. i was looking in to Message Contract to achieve the same n to replace SOAP Extension but dont know whether ...Show All

  • Visual J# running server object method from client-side on the network

    hi , i have written two little applications one is working on the client-side. the other one is running on the server-side. i have created an interface on both sides with the same name "ServisArayuzu" and these interfaces has one method . public interface ServisArayuzu { public String getIsim(); } both classes on the server and on the client side implements this interface differently. try { server= new ServerSocket(1500); nextClient=server.accept(); OutputStream os=nextClient.getOutputStream(); ObjectOutputStream oos= new ObjectOutputStream(os); oos.writeObject( new XY( "serdar" , "ilter" )); //here XY object is succesfully cre ...Show All

  • Visual Basic Loading Data Using ProgressBar as Indicator

    Here we go again folks, hope you help me out on this one...I had a form(frmAccount) wherein it has a datagridview(dgvAccount) that bounded to a certain table of my db.Because of too many records(about 20000), it takes such time(about 8seconds almost) to load all of the data...I had no idea how can I possibly decrease this loading time so I just put a progressbar(pBar) as an indicator of the process.This progressbar was attached in the main form(frmMain)...What I really want to do is, once I clicked the button on the frmMain, pBar would automatically increment to its maximum with respect to the loading of frmAccount...Simply put, unt ...Show All

  • Visual Studio Team System Cleanup database record after web test

    Hi: I have a scenario like this: Create a web test During the web test, web form will be submitted and some records will be added to database I want to repeat this web test but I want the clean database from the initial How can I cleanup the records after the first testing   Can I use the Cleanup script   If so, how By the way, I don't see much information about setup & cleanup scripts in runconfig file.  Can anybody briefly explain them and show some demos Thanks!   The setup/cleanup scripts will execute batch files.  So if you can put t ...Show All

  • Visual Studio Hotfix not working for me

    I'm having a bear of a time getting reports with subreports to function correctly. I have followed all of the directions for logonInfo updates. The original report running under v9 only has to have the first four parameters filled, from there 9 other linked parameters are supposed to be filled. I started with code that we have in production (v9). This code ran fine when running against the server that the report was designed against. But when compiled in CR .net 2005 the linked parameter values kept prompting. Then I tried to hack my way through that problem and set all of the parameters (13) instead of just the 4 we normally send. Stil ...Show All

  • Smart Device Development info abt GPS enabled phones

    Can anyone give me the list of GPS enabled mobile phones to which application loading is done through serial cable or some other easy mechanism and their respective SDKs http://forums.microsoft.com/msdn/ShowPost.aspx PostID=106602 ...Show All

  • Windows Forms How do I change the forground color of selected text?

    With a KeyUp event in txtInput (text box), I want to see if it finds html commands and highlight them with a blue color. Right now, it's highlighting everything in the textbox if it finds a html tag. How can I make sure it only sets the color of one word Phil private void txtInput_KeyUp( object sender, KeyEventArgs e) { string code = "<html>" ; if (txtInput.Find(code) != -1) { txtInput.ForeColor = Color.Blue; // txtInput.SelectedText.ForeColor = Color .Blue;   // wrong, but an ideal approach } else { } } Here's an update of my code: I'm g ...Show All

  • Windows Forms How would ClickOnce handle installing new version of framework?

    I assume this is essentially just like any other prerequisite update. Say for this scenario that a ClickOnce application is installed with 2.0 framework and 2.1 framework was released and the new deployment is built with 2.1 and placed on the deployment server. The next time someone runs the application and it detects an update, it would download the new assemblies built with 2.1 but the client does not have 2.1 installed yet, how do you solve this Is that the application needs to handle updating manually using the ClickOnce API First checking if new prerequisites exist which I’m assuming would have to be in some config file to be downloade ...Show All

  • Windows Forms Manifest files and VS.NET

    I created a manifest file to enable Windows XP themes in my app.  It works if I manually copy the manifest file into the same directory as my EXE.   However, I don't want to have to manually copy the manifest file into the EXE's directory.  Instead, I want the manifest file to reside in the same directory as my source code, and ...Show All

  • Windows Forms Query-strings in ClickOnce

    Hi, Is it possible to use query-strings in combination with ClickOnce Example: Suppose I have created an application that is started using the following url: http://myserver/myapp.application Now, suppose that I want to start my application using a query string: http://myserver/myapp.application someparam=17 Is it possible to get hold of the "someparam=17" part in my application /Jonas ...Show All

  • Windows Forms How to implement copy and paste with DAtagridview

    Hello, Can anyone help me how to implement a copy (of rows) in datagridview that of course goes to the clipboard which later I would like to paste in Excel Thanks in advance for help Cesar I spent 2 days to do the same & came up with the following. This may not be the best solution but works. Hope this helps. 1. First of all, you need to add to Excel Object Library reference to your project. 2. Used the following code Microsoft.Office.Interop.Excel. ApplicationClass ExcelApp = new Microsoft.Office.Interop.Excel. ApplicationClass (); Microsoft.Office.Interop.Excel. Worksheet TheSheet = null ...Show All

  • Visual C# Date

    How do I get today's date and put in an object/variable Thanks Just to expand Webmonsta's post above: To put it it a variable, you would do the following: using System; namespace Examples {    public class DatetimeExampleClass    {       [STAThread]       static void Main( string []args)       {          DateTime date = DateTime.Now;       }    } }   ...Show All

©2008 Software Development Network