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

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

Blu_Ciccio

Member List

jasmine pham
John Dunn
No-spam Sam
baskark
n0n4m3
goh6613
qrli
Mr. Rich
Paul Bradley
chatz
Sunil Gupta
migz148
KayJHut
Abdul Jackson
Jassim Rahma
Glenno
Jeffry Dwight
bkejser
Nayan Paregi
adrian tompa
Only Title

Blu_Ciccio's Q&A profile

  • Visual FoxPro Grid and textbox Refresh issue.

    I'm having this problem with an application I’m writing. I have a Grid with a couple of text boxes next to it. When you select a record it updates the values in the textboxes with the values from that record. I also have a few command buttons that switch the tables viewed in the grid. Now here’s my problem... The text boxes stop updating after I change the tables a few times. Not sure what I am missing because I don't get any error messages and it does work for a little while. If you need more information let me know. You need to use a safe select method to change data in a grid on the fly. See www.tightlinecomputers.com they have a complete listing of what this entails. ...Show All

  • Windows Forms DataGridView wont show new entry..until i run it again

    Guys..i'm new here...and new with VB2005..im having this problem..that my datagridview wont show the new entry(i have a reg page) until i rerun the program...can anyone please look it up..tnx very much..could really use some help.. Form1.vb: Imports System.Data.OleDb Public Class Form1 Private AccountsDataSource As New BindingSource(My.Application.DAL.dbDataService, "Accounts") Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Me.dg.DataSource = Me.AccountsDataSource End Sub Private Sub dg_CellContentClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles dg.CellContentClick End Sub Private Sub Fill_Click(ByVal s ...Show All

  • Visual C++ Calling MS Access VBA code

    I would like my C++/CLI (vs2005) app to invoke a couple of functions on a MS Access 97 database. These functions are implemented in VBA. Is it possible If so, please provide me with starting points and links. If not, what are my options If you have a question about the VC language, then this is the place to ask it. The VC language alone however has no capability for accessing an Access database; you must use libraries that VS does not provide. Therefore you need to ask in another forum or in an appropriate newsgroup. I can suggest however that you look at the command-line options for Access. I don't know if there is an option for executing macros but if so then that might help. Otherwise, ...Show All

  • Visual Studio Busted WindowsEvents in 2003

    I created a 2003 C# Visual Studio add-in, and added the following code to the Connect.cs. I get approximately *two* calls to the onWindowEvent function and then complete silence. Does anyone else have this issue I thought I might be nerfing events in my package, but I've tried this in the regular registry root (i.e. not 7.1Exp ) and the problem still occurs. My help about says that only VB, C#, C++ and DirectX Extensions are installed. public void OnConnection(object application, Extensibility.ext_ConnectMode connectMode, object addInInst, ref System.Array custom) { applicationObject = (_DTE)application; addInInstance = (AddIn)addInInst; applicationObject.Events.get_WindowEvents(null).WindowActivated += new _dispWind ...Show All

  • Visual Basic need help with regular expression

    I need a regular "Case/s#[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]", options) ' Check for match Dim isMatch As Boolean = regex.IsMatch(vobjtxtComments) If Not isMatch Then errbase.SetError(btnDedDRComments, ASAPControls.StandardErrorMessageOneArg.Custom, "Comments must be in the format 'Case #999999999'") End If The post seems to have somehow gotten corrupt. Could you please edit your post and specify what you want the regex to do. I may be able to help with the .NET code for it. Thanks. -Shyam ...Show All

  • Visual Basic Slow Timer

    Hi, I've written a program that uses a timer to control an external relay (via USB) that turns on a light. The problem I'm having is that the timer is slow (about 4 seconds per minute) on my desktop computer, but its timing perfectly on my laptop computer. I've retested this on other computers and I get a similar result. Is there a way to ensure that the timer is right on everytime Its also worth noting that the clocks on all these computers are keeping the correct time. Thanks, P Here is the relevant code, thanks for your help. Me.Timer1.Interval = 100 Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick Me.txtActiveDelay.Text = DelayTimer(Me.txt ...Show All

  • Visual C++ Which method does NOT export C++ classes

    Question:- A CFormView uses a dialog-template resource. What properties must the dialog-template resource have to work correctly with a CFormView Choice 1 WS_CHILD on WS_BORDER off WS_VISIBLE on WS_CAPTION off Choice 2 WS_CHILD off WS_BORDER off WS_VISIBLE off WS_CAPTION off Choice 3 WS_CHILD on WS_BORDER off WS_VISIBLE off WS_CAPTION off Choice 4 WS_CHILD off WS_BORDER off WS_VISIBLE on WS_CAPTION off Choice 5 WS_CHILD on WS_BORDER on WS_VISIBLE off WS_CAPTION off ...Show All

  • SQL Server developing new task

    Hi Can i inherit a existing task to a new custom class to add functionality to custom class. for eg: Inherit lookup transfor which is already present in SSIS to add some funstionality into it. Thanks Vipul https://forums.microsoft.com/MSDN/ShowPost.aspx PostID=796926&SiteID=1 ...Show All

  • Visual C# Create separate executable file

    Hi, I have created a windows application project , and I need to run it on different PCs. I need to make an executable file to it. I know that there is one in the bin directory, but when I try to use it on another PC, that has not install VS. Net, I have got an error and the program does not work at all. I need to make a separate executable file, if this is the solution, or how can I solve that Thanks in advance, Aya. To run the .Net based application on any computer. The computer must have .Net Framework installed on that. Does the other machine have .Net Framework installed If yes, then can you post what error message your are getting Best Regards, ...Show All

  • .NET Development .NET 1.1 vs .NET 2.0 behaviour with Image fields

    In not .NET 1.1 and 2.0 the System.Type mapping for a SqlDbType of Image is byte[]. If you use this type to create a SqlParameter (with a value of DBNull.Value) and then use this in a SQL statement of the form "Update table Set ImageField = @parm where ......" Then in .NET 1.1 it works, but in 2.0 you get an Exception "nvarchar is incompatible with image" How can you determine the correct System.Type to use for Image fields, and why is the behaviour now different The application code is generic and not tied to specific database designs. Thanks Tony im not entirely sure about that one to be honest. I'm actually a bit confused on what you are trying to do - ...Show All

  • Software Development for Windows Vista directshow filter : splitter

    Hi, When I want to run a mp3 file, could you tell me what is doing the mpeg 1 splitter As The mpeg1 splitter splits an MPEG-1 system stream into its component audio and video streams and I have only audio. Thanks a lot The source filter is pull-mode and the rest of the graph is push-mode, so you need a filter to convert between the two. Typically this filter will also do the seeking and timestamping of samples. So you will often get a demultiplexor in the graph to do these tasks even if there is no actual demultiplexing to do. G ...Show All

  • .NET Development How to bubble exception from background thread to main thread?

    Hi, I'm having a problem with background tread throwing unhandled exception and it never bubbles up to main thread. I have been told to put background thead into try catch block but this still does not work as it's never get's hit. My code is below. I did not think it'll ever come to this but I really want my main thread and application to crash so I can see error being thrown by background thread. try { this .backgroundWorker1.RunWorkerAsync( ); } catch ( Exception ) { throw ;} Lorry Craig wrote: Can I bubble it somehow back to original thread like rethrawing it How do I do that I read the other thread. Yes, you want to terminate your application you can simply throw e.E ...Show All

  • Visual Studio 2008 (Pre-release) Client Callback Address, wsDualHttpBinding and Windows Security

    Hi, Are there any chances that on the client side wsDualHttpBinding works without starting the client process under a windows administrator account We tried to start our client app with a non Windows administrator account and got an "Access denied" exception from the .NET framework, because the client app tried to register a callback URL (e.g.: http://localhost:8030/ClientCallback/ ) . We do not get this exception when we execute the client app with a local windows xp admin account - of course. See also: http://msdn.microsoft.com/library/default.asp url=/library/en-us/http/http/namespace_reservations_registrations_and_routing.asp Thx, Dietrich I describe this a bit at http://kennyw ...Show All

  • Visual Studio 2008 (Pre-release) Rockside Query Framework

    I mentioned this a few months back to Kieth Farmer and had no time to actually post this anywhere. I loved LINQ when I saw it at PDC 05 and wanted to experiment with building an IEnumerable based query framework with many of the same features. The purpose of the Rockside project was to emulate much of what's in LINQ without the need to use a special compiler. I've finally been able to start blogging about the Rockside project as well as take a deep dive into LINQ at my blog at http://community.bennettadelson.com/blogs/rbuckton so for those of you that were curious back in november/december of last year when I mentioned it i'm starting to post content now. I'll have the whole Rockside query project (including source) up on the site in a ...Show All

  • Windows Forms Error starting application after publish and install

    Hi People, I have been struggling with this for over three days. I was fortunate to find this forum. Please help... This is the error message in the text file.. PLATFORM VERSION INFO Windows : 5.1.2600.131072 (Win32NT) Common Language Runtime : 2.0.50727.42 System.Deployment.dll : 2.0.50727.42 (RTM.050727-4200) mscorwks.dll : 2.0.50727.42 (RTM.050727-4200) dfdll.dll : 2.0.50727.42 (RTM.050727-4200) dfshim.dll : 2.0.50727.42 (RTM.050727-4200) SOURCES Deployment url : file:///C:/Documents%20and%20Settings/dj76627/My%20Documents/Visual%20Studio%20Projects/PaintSchedulingSolution/PaintScheduling/Paint_Publish/PaintScheduling.application Application url : file:///C:/Documents%20and%20Settings/dj76627/My%20Documents/ ...Show All

©2008 Software Development Network