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

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

Barista

Member List

Bnjneer
Thiago Moraes
Majd Yafi
le tan duc
IrishAnto
Rabtok
lojncn
Jeremy Schneider
Lemon.oO0
ArcPadNewbie
Joel Martinez
Klaus Löffelmann
Shajeel
oozex
foleyp
Bill Sempf
Eric Lindahl
CPPUSer7
nativecpp
Dongwei
Only Title

Barista's Q&A profile

  • SQL Server Saving the File thru RS Scheduling to Remote Server.

    Hi Everyone, I am using RS 2000. I scheduled a job to save in the remote server and found to be saving according to the schedule. I have configured with Remote Server Administtrator as User Name and Remote Server Administrator's Password as password while configuring. Now I would like to schedule one report for 10 users and it needs to be saved in the respective folder. For these 10 users I need to create user account in Remote Server and the same user name and password to be given at the time of scheduling configuration. Also I need to give permission to the respecive folders manually in the remote server so that users can't see other folders. Is there any other way / method OR I need to contiune the same method. Rgd ...Show All

  • Visual J# Kernel32 Function Definitions

    com.ms.win32.wing.GENERIC_WRITE Actually, last time I tried searching for it in Object Browser, it found nothing. But I tried it again today, and it worked O.o ...Show All

  • .NET Development When does a shared class get initalized, and who init's it?

    When does a shared class get initalized, and who init's it   If you are talking about a static class which exposes methods, then never.The method is hooked up to the calling method during the compilation stage and all objects are placed on the stack. When the call returns, then the objects are popped of the stack. The whole idea of the static, is that it is stateless, hence no member variables can be used that are not static on their own. ...Show All

  • Visual Studio 2008 (Pre-release) Imported and inline Resources

    as always, hello and thanks in advance. I was trying to do this; <Window.Resources> <!-- imported styles --> <ResourceDictionary> <ResourceDictionary.MergedDictionaries> <ResourceDictionary Source="/Resources/Base.xaml" /> <ResourceDictionary Source="/Resources/Brushes.xaml" /> </ResourceDictionary.MergedDictionaries> </ResourceDictionary> <!-- inline styles --> <Style x:Key="TestStackPanel"> <Setter Property="Control.Background" Value="BlueViolet" /> <Setter Property="Foreground" Value="White" /> <Setter Property="FontSize" Value="2 ...Show All

  • Software Development for Windows Vista Visual Studio 6.0 SP5 setup on Vista Beta 2 (5384)?

    Does anyone know how to get around the MDAC check in the Service Pack 5 setup of Visual Studio 6.0 For some reason it doesn't detect MDAC 2.5 or higher which it requires (even though Vista obviously has a later version - 6.0) and the setup will not continue from that point. I've tried every registry key I could think of to trick it into thinking MDAC is installed. Thanks Ted. GuideX, You rock!!!!!!!!!!!!. How in the world did you figure that one out My Goodness. That worked like a charm. Amazing. Thanks a million. Just made my day. ...Show All

  • Visual Studio Team System Cannot use the Performance tools

    Hi, I'm trying to use the Performance Tools built into VS2005 but can't. Nothing happens when I try to create a new performance session, use the performance wizard or even view the performance explorer. (i.e. I click the menu item and nothing happens.) I think, I may have accidently removed it. Can anyone please tell me how to get it back. Thanks. Hi, I have Microsoft Visual Studio 2005 Team Edition for Software Developers installed. I'm able to see the menu items (from related articles) but when I click on them nothing happens. I'm trying to get performance data from dlls. I should mention that I was able to use the performance tools previously. I created a session and added the assemblie ...Show All

  • Visual Studio Express Editions noob question: what do windows applications use as a db?

    sorry but I have this totally noob question. I'm completely new at writing windows applications, and want to learn. I have a book (sams learn in 24hours), and it briefly goes over ADO. My question is, besides writing to a flat txt file, what do windows applications use as a database Obviously your standard XP desktop doesn't have a db server, so how do programs save information I'm basically creating a database, but want it to be an installable program, not an MS Access db. But I'm having trouble figuring out what to do in regards to a DB. I see you can use localized db's inside VB, but I keep reading that the user would still need sqlserver express or is that wrong I was afraid that would be t ...Show All

  • SQL Server confident of data mining

    in associate rule, there's confident and support or probabilty values. but i use sql 2000, no support associate rule so i create a model with Microsoft _decision _tree to predict other products when customer choose product in superMarket basket_id table... { productid } is it have confident or support values. what value of it how can i change the minimum_support and minimum_probabilty it can use in Microsoft _ decision tree. i had download AddIn at http://www.sqlserverdatamining.com/DMCommunity/SQLServer2000/Links_LinkRedirector.aspx id=97 and read document that requid you must regist file dll and registry. after, right click on model dataming you want to modify param and choose me ...Show All

  • Visual Studio Express Editions Inserted Data is not appearing in the dataset or updating the DB

    I am using Visual Studios 2005 (VB.Net) with an SQL Server 2005 Backend. My backend has all it's tables and relationships set up. I am trying to add information from the form. The first bit I'm trying to get working is just adding 'Titles' to a very simple table. TitleID | TitleDescription The code I have is: Me.TblTitlesTableAdapter.InsertQuery(Guid.NewGuid, "Sir") Me.TblTitlesTableAdapter.Update(Me.Nytdb.tblTitles) Me.Nytdb.AcceptChanges() I have also tried using Me.Nytdb.tblTitles.AcceptChanges(). This is the first time I have done an SQL Server 2005 Backended Application, so it's a bit of a steep learning curve. I am using a datagridview on this form as well to display customer details and on the add ...Show All

  • Visual C# BUG: visual studio or .net framework?

    ok, this is driving me crazy. it only happens in 2003 (I cant reprduce it in 2005) can sombody debug this in 2003 and let me know what happens: create a console app paste in the following code in your main: Code: string s = "abcdefghijkLMNOPQRSTUVWX"; byte[] b = System.Text.Encoding.UTF8.GetBytes(s); Console.ReadLine(); set a break point on the last line. start in debug mode (let it hit the breakpoint) bring up the memory window (CTRL+ALT+M, 1) and type s in the address box (1) highlight System.Text.Encoding.UTF8.GetBytes(s) and bring it up in the quick watch window (2) What happens for me: Shows unknown location (all marks) shows a 25 byte array starting w/ [0] = 24, [1] = 0, [2] = what [0] should ...Show All

  • Windows Forms ListView error System.ArgumentOutofRange ecxeption

    I get that error in my ItemActivate event code, which is called when I double-click on a folder in the ListView control on my form (which lists all the folders and files in the root C:\ directory). Below is my event handling code: private void lvwFilesAndFolders_ItemActivate( object sender, System.EventArgs e) { //cast the sender to a ListView and get the tag of the first selected item System.Windows.Forms.ListView lw = (System.Windows.Forms.ListView)sender; string filename = lw.SelectedItems[0].Tag.ToString(); if (lw.SelectedItems[0].ImageIndex != 0) { //the item we double-clicked on is a file. try { //attempt to run the file System.Diagnostics.Process.Start(filename); } catch { //if the attempt ...Show All

  • Visual Studio Tools for Office Serialise Building Blocks and 'load' them while 'online'

    Visual Studio in conjunction with Word 2007 gives great opportunities to automate building of documents from XML 'components', but it all seems only possible 'offline', i.e. when the document is closed. I would like to get XML fed into the document (or attached template) while it is open, for example, to update not just content, but also the structure of the document at a user's request, interactively, for when a brand new disclaimer is developed and the user decides to adopt it. Currently, XML properties are read only at runtime and building blocks can only be .Added from ranges (i.e. 'recorded like old autotexts). Can anyone please correct me if I'm wrong or let me know of a possible solution Thanks so much for any help! ...Show All

  • SQL Server Word/RTF from SQL to Display

    I have Word and RTF objects stored in SQL. I return them along with some other strings. But I can't get the Word and RTF objects to display as they should. I can only display them as strings, showing the formating codes, instead of formatting the output. How do I display the output as it looks in Word This thread may help. http://blogs.msdn.com/bimusings/archive/2005/12/14/503648.aspx ...Show All

  • Windows Forms Deployment - reading inputs into file system

    VB.NET .NET Framework 2.0 Visual Studio 2005 Please Help! In the deployment project of a VB.NET solution I have added a 'Textboxes (A)' component, straight after the Welcome box. To this I have set the Edit1Property to COMMONREPOSITORY and the Edit1Value to C:\MyRepository. I then use [COMMONREPOSITORY] as the DefaultLocation of a Custom Folder in the file system. On installation the folder C:\MyRepository is created as expected. However, if I change the value in the textbox (at install time) the folder C:\MyRepository is still created, instead of the new value. How can I update the created folder name from the user’s input (As a test I used [COMMONREPOSITORY] to create a registry key, and t ...Show All

  • Visual C# Returning a value with decimals

    I am passing some numbers to a method that should return a decimal value but the method is rounding the decimal up to a whole number. How can I keep the decimals from disappearing : private decimal calcArea(int n, int w, int l, int h) { decimal dArea = (n * (((w*2)+(l*2))*h+(2*w)*l)) / 144 ; return dArea; } Thanks, cj The expression contains all integer terms so uses an integer division. Cast one of the terms to a decimal to get a decimal division. For example: decimal dArea = ((decimal)n * ...) / 144; or decimal dArea = (decimal)(n * ...) / 144; The first version avoids a potential overflow (depending where you put the parentheses) but is more expensive. ...Show All

©2008 Software Development Network