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

Software Development Network >> Juan Carlos Ruiz Pacheco's Q&A profile

Juan Carlos Ruiz Pacheco

Member List

mul2006
GWW2007
mj_realm
Michelle S
meFox
Eric Hutzelman
DongMT
Jeremy Jarrell
Jith
Robert3234
aero1
SokSa.Icy
ReyCri
SSreejith
J. Ho
nothingmag
libra08
Seppe001
AbhilashN
john zhang
Only Title

Juan Carlos Ruiz Pacheco's Q&A profile

  • Visual C# Difference between - 'static public' and 'public static'

    Hi all, I have noticed code here and there that put the static keyword in front of the method accessor, like, 'static public' is there a difference between 'public static' or are they the same Tryst Hi, all I try to summarize as following: Those are all the concept about accessibility modifiers and predefined attributes. They can be placed on types, fields and methods (including properties and events). Accessibility modifiers (also called access modifiers) indicate which types and members can be legally referenced from code. The predefined attributes fine-tune this accessibility and allow you to change a member's semantics. You can either put the accessibility modifiers or predefined attributes firs ...Show All

  • Visual Basic time and date

    Thanks for putting up with my questions. Does anyone know how to access the computer's date and time so that I can assign it to a variable I'm not sure how to do them individually but Dim MyDate as Date = Date.Now this will assign the current date and Time to MyDate. hope this helps tattoo ...Show All

  • Windows Forms datagrid

    hi everybody, i have another difficult i have a datagrid (framework 1.1, not datagridview) i try to select a row. his index is passed in argument and is valide (the row exist) but when i write that, nothing is doing. in debug modee, after the first line, deebugger return to the application, the second line is never reached. my method to select a row is right is it an error in my grid is there another method to select a defined row DAG_Layer is my datagrid Public Sub SelectRow(ByVal IDObj As Integer) Me.DAG_Layer.CurrentRowIndex = IDObj Me.DAG_Layer.Select(IDObj) Me.DAG_Layer.Refresh() End Sub Try BindingContext(DAG_Layer.DataSource).Position = IDObj Me .DAG_Layer. Select (IDOb ...Show All

  • Windows Search Technologies WDS as deployable MSI?

    Hi! In our company we want to deploy WDS to some desktops through Active Directory. For this we need an MSI file, however, the installer which can be downloaded from microsoft.com is available only as exe file. Does anyone have any information about how to turn it into a deployable MSI file Or is there a pre-built MSI available for download somewhere Thanks --Michael Thanks. Are there any plans for Microsoft to go ahead and make an MSI version of WDS Why wasn't this done to begin with Also, you have any links to help us mere systems guys get started with the whole MSI thing ...Show All

  • .NET Development Delay in invoking webservice call

    hi, We are noticing the huge delay once we invoke the asynchronous call to web service to get the response back, not able to find the reason for the same so far. Is there way we can debug and find the root cause of this delay in invoking web service and getting the response from web service Thank You Ganga BTW, if the total time is about 40seconds, 6 extra seconds to transfer the request data and the response data (assuming the request is roughly the same size as the response) isn't entirely out of whack, depending on your network. ...Show All

  • SQL Server Unable to browse the cube 'Sales' Un specified error

    Hi Team, I am using Analysis Services 2000 to build my dimensional model. When i browse the cube 'Sales', it gives me an error that unable to browse the cube 'Sales' Un specified error. Could someone help me out. Your considerations will be highly appreciated. Regards, Ejalu Ronaldlee Hard to guess what is going on. Try installing latest service pack. If doesnt help, you might need to re-install Analysis Services. Edward Melomed. -- This posting is provided "AS IS" with no warranties, and confers no rights. ...Show All

  • SQL Server IIS developer edition

    Well, just what the subject line says: Is there a developer version of IIS one can download If so, I can't find it. All I can find are the 180 day trials. Thanks! -Gary If you are running anything but Windows XP Home (or 95, 98, ME (the ones we don't talk about anymore)) you should have the option to install IIS from your installation media for free . What exactly are you looking for in a 'developer edition' that doesn't exist in the regular version that you should already have access to ...Show All

  • SQL Server smtp test

    hi, would you know how to know if a connection can be established to an smtp server without even issuing any smtp command i want to be able to do this using ssis, script component. thanks. I've taken a look at the System.Net.Mail.SMTPClient class that l used in my example that loonysan pointed to above. There's no method in there that checks connectivity hence using a TRY/CATCH as loonysan suggested might be the best way! -Jamie ...Show All

  • SQL Server SQL2005 linked servers to DB2

    I'm currently using the IBMDA400 client access drivers for DB2 to create linked servers on SQL2005 Std. The DB2 server version is: V5R4M0. The error that I receive when I issue a select query using the linked server is shown below. The query works fine within SQL 2000 Std. Msg 7399, Level 16, State 1, Line 1 The OLE DB provider "IBMDA400" for linked server "LNKDSRVR" reported an error. Access denied. Msg 7301, Level 16, State 2, Line 1 Cannot obtain the required interface ("IID_IDBCreateCommand") from OLE DB provider "IBMDA400" for linked server "LNKDSRVR". I think this is a common error seen on most attempts to a DB2 linked server. I also confirmed that using the built-in " ...Show All

  • Smart Device Development How to use database for pocket pc application

    Hi I have a need to work on pocket pc application. Scenario: In general user will take database backup from database server to local system. User perform some changes to his local database based on his requirement. Again user connects to database server and click on update, local database should update to server database by informing each record status to the user. ex: record 1 updated / call closed do you want to update Here local database is going to be Pocket pc database and server database is on SQLDatabase. Can any one suggest best way to implement this feature in Windows Pocket pc, c#. I would appreciate your reply. Thanks, How do we tune in application programming to use desktop CPU ...Show All

  • Visual Studio Tools for Office Are VSTO 2005 Outlook add-ins thread-safe?

    During the start-up routine in ThisApplication I make a call to a web service on a secondary thread. Based on the results of the web service, I must enable certain CommandBarControls. Is this safe to do from a secondary thread If not, how would I invoke it on the Outlook UI thread after the web service returns. VSTO by its design is thread safe, but anything one programs may not. One can execute multiple threads from an add-in. The only issue arises is when GUI updates or other specific actions have to be done....those can only be done on the main thread. Just like in a winform with threads one has to invoke back to main thread to do any such processing. In my experiance, I had a VSTO Excel App where the a ...Show All

  • SQL Server Vertical Database Design

    What kind of luck have you guys had with vertical database design I'm working with a front end developer who wishes to use a vertical design for Items and item attributes, as the client appears to have a firm requirement that new attributes can be added at any time. the developer has what I am begining to think of as "magic code" for importing the data into the tables. He's apparently going to write this in .NET, and plans for it to know the data type (varchar, etc.) when importing it - and also allow for the script to dynamically add attributes. THis sounds fun, however, the more stuff we get, the worse the database will perform, I'm thinking - only it will be exponentially slower than a conventional design. In addi ...Show All

  • Windows Forms How do I programmatically add checkboxes to a form at runtime

    The problem i'm having is programmatically adding checkboxes to the form. So far I have this code which works: Checkbox cbk = new Checkbox(); cbk.Location = new Point( 10, 10 ); cbk.Text = "I was created at runtime"; this.Controls.Add( cbk ); But I need to have the checkbox name generated by the database, I am unable to figure out how to assign a value from a SQLDataReader to be the name of the checkbox, my attempt below will not work (just replacing the hard coded name with the value from the db): while (reader.Read()) {   CheckBox reader[1].ToString() = new CheckBox (); reader[1].ToString().Location = new Point (10, 10); reader[1].ToString().Text = "I was created at runtime" ; this .C ...Show All

  • Software Development for Windows Vista Problems Installing VB6 in Vista RTM

    Hi, I'm trying to install VB6 on a clean installation of Vista RTM. After installing it, when it starts loading it shows a message "Component mscomctl.ocx not correctly registered...." I've tried installing the SP6 over it and it still doesn't work. I've tried both as a normal User and right-clicking on the setup icon and choosing "Run as Admin" but it still shows the same message. Thank you so much for your help ...Show All

  • Visual Studio 2008 (Pre-release) LocBaml doesn't work with RC1?

    Hi, I'm currently using RC1 which is released several days before, when I have read about Globalization in WPF, I met LocBaml example. Follow the indication, I successfully build LocBaml.exe and it's sample solution and got a folder named en-US and a HelloApp.Resources.dll in it, but when I tried to use LocBaml to extract localization info, I got problem: D:\Tools\Dev\LocBaml\CSharp\bin\Debug>LocBaml.exe /parse D:\Tools\Dev\LocBaml\XA ML\bin\Debug\en-US\HelloApp.resources.dll /out:D:\temp\text.csv Microsoft (R) Baml Localization Utility 1.0.0.0 Copyright (C) Microsoft Corporation 2005. All rights reserved. Could not load file or assembly 'HelloApp' or one of its dependencies. The syste m cannot find the file specified. I tried to debug ...Show All

©2008 Software Development Network