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

Software Development Network >> Joseph Belt's Q&A profile

Joseph Belt

Member List

ckob22
gloriousgopi
Eldoktor
Muhammad Adel
Malcy
Deefken
Matt Lin
Bodylojohn
Behzad Karim
Trev72
Stéphane Beauchemin
A kid
Stéphane Beauchemin
George Clingerman
tarzan123_us
Yuki Chen
ksona
Andreas Georgsson
DevDanS
Otto Fischer
Only Title

Joseph Belt's Q&A profile

  • Visual Basic [VB.NET] How to merge many GIF Files into one file

    I need to create a software that it merge many GIF File into one file container.   My application has this form I want that when i click "Add File" it shows an OpenFileDialog and that add file's path in the ListBox And when I click "Merge File" It merge all GIF file present in ListBox And when I click "Split File" it split all GIF File present in a File Container and that It save GIF Files in the same directory of the File Container I tried to write the code but it change any bytes of the GIF Files when I merge :( and i don't know how to use Split Function in VB.NET [Off-Topic]I'm new in VB.NET and i don't know fine this new programming language Best Regards Flash Private Sub ...Show All

  • SQL Server Stored Procedure Problem

    hy i have a problem using a stored procedure to fill a resultset first i fill 2 tables within the stored procedure both having an employeeID. one of them contains information about Book Hours (the amount of time they worked) grouped by employee, year,month and Productive(boolean) the other contains a headcount value(indicates wether he was working for a ful month) grouped by employee,year and Month. 1st table lookes like Employee year month productive Booked Hours EmployeeID 1, 2000, 1, Yes, 103 EmployeeID 1, 2000, 1, No, 54 EmployeeID 1, 2000, 2, Yes, 99 EmployeeID 1, 2000, 2, No, 12 ... EmployeeID 1, 2000, 12, Yes, 72 EmployeeID 1, 2000, 12, No, 15 EmployeeID 2, ...Show All

  • Smart Device Development Process Size

    Anybody know how to get the size(memory usage) of a process that is currently running I suppose you can use ToolHelp API to get a snapshot or the heap. Once you get that snapshot you can calculate the heap’s size. ...Show All

  • Visual C# namespace question

    I'm new to .net and have a very basic question about namespaces. I'm using Visual Studio.Net 2003 and created a web application project using the namespace "compass" I created my startpage index.aspx in the root directory. So, when I debug and test in the browser the url in the address bar shows: http://localhost/compass/index.aspx Now, I created a sub directory "About Us" to hold the appropriate files for that section of the website. I created a webform "index.aspx" for that directory. I have an xml file that defines my site navigation. So, the url to the 'about us' section would be: /about_us/index.aspx However, when I try to view the page in my browser: http://localhost/about_us/ ...Show All

  • SQL Server Analysis Service data source

    I have a problem with the connection to the data source from analysis in report designer. After I deploy to report server i got this error: An error has occurred during report processing. (rsProcessingAborted) Query execution failed for data set 'xxx'. (rsErrorExecutingCommand) Either the user, , does not have access to the yyyCubes database, or the database does not exist. I have sucessfully deployed the cube to AS. and the funny think is i can connect sucessfully in the report designer and display correctly in preview section, however not in the report server itself. Thanks. Regards Alu ...Show All

  • Visual Basic Protecting EXE file

    I wrote a program and build it in Visual Studio 2005. I want No Body Can disassembling my EXE program and see my codes. What Should I Do Thank You For Your Response Do you mean on your own machine, or wherever the EXE is going to be deployed On your own machine, if your source code is in your own user folder, then it should be safe. For increased safety, encrypt the project folder. I have a feeling you mean elsewhere, though. It is very difficult, if not impossible, to "disassemble" an EXE file. A compiler cannot just take it and translate it back into code. However, be assured that it CAN be done by extremely advanced users. I'm not sure if there' ...Show All

  • Visual Basic Generating a Unique String

    I have a source text file in the following format (irrelevant fields removed) CODE,DESC,COLOR,SIZE 1234,FRED,BLACK,8 1234,FRED,BLACK,10 1234,FRED,BLACK/WHITE,8 1234,FRED,BLACK/WHITE,10 1234,FRED,BLACK/BLACK,8 1234,FRED,BLACK/BLACK,10 1234,FRED,BLACK/BROWN,8 1234,FRED,BLACK/BROWN,10 1234,FRED,BLACK/BLUE,8 1234,FRED,BLACK/BLUE,10 I need to create a unique 3 character code, for each of the BLACK, BLACK/WHITE, BLACK/BROWN, BLACK/BLUE etc So my result would look something like this CODE,DESC,SHORTCOLOR,COLOR,SIZE 1234,FRED,BLK,BLACK,8 1234,FRED,BLK,BLACK,10 1234,FRED,B/W,BLACK/WHITE,8 1234,FRED,B/W,BLACK/WHITE,10 1234,FRED,B/B,BLACK/BLACK,8 1234,FRED,B/B,BLACK/BLACK,10 1234,FRED,BBW,BLACK/BROWN,8 1234,FRED,BBW,BLACK/BROWN,10 1234,FR ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Setting Effect.Parameters on the fly?

    I am looking to setup the ability to set values of parameters in an Effect on the fly. Right now I have a dictionary of type <string, object> which is setup similar to how Effect Parameters are. Effect.Parameter[string].SetValue(...) doesn't take type object though. Maybe I am missing something but is there a way I can do this SetValue has a load of overloads so it does not have to cast it to the correct type, which makes a lot of sense. What is preventing you from setting them on the fly using the normal way ...Show All

  • Windows Forms How to simulate the dockable window effect in Visual Studio 2005.

    Hello All, As we see in VS 2005, the Solution explorer window can float or can be docked on to the screen. I'm simulating a similar thing in my project and now my page contains 2 seperate panels one below the other and now when i dock the floating window then the scrollbar should appear for only that panel which contains data more than the size of the window. The important thing is i dont want a scroll bar for my entire page at the bottom i only want it for the panel which ever has more data than the size of the panel. I've specified the positioning of all the elements in these panels in %s so that nothing overlaps each other. Thank You. Hi there, You might be interested in thi ...Show All

  • Smart Device Development InternetReadFile errors

    Hi, I've got my internet connection working, and everything sends fine. No I wanted to read back the data from the site I connect to, but I keep getting an ERROR_INVALID_PARAMETER . I've tried some different combinations of parameters for the InternetReadFile function, but to no avail. Maybe it is something else I am doing wrong My code so far is: DWORD dwContext = 1; char errorMsg[100]; hWaitForHandleCreation = CreateEvent(NULL, TRUE, TRUE, NULL); hWaitForCompletedRequest = CreateEvent(NULL, TRUE, TRUE, NULL); ResetEvent(hWaitForHandleCreation); ResetEvent(hWaitForCompletedRequest); // Open the internet connection and send the URL http = InternetOpen(L "CeHttp" , INTERNET_OPEN_TYPE_DIRE ...Show All

  • Visual Studio Team System Re-importing schema?

    This isn't a critial issue, because once you're using this product, you probably don't need this functionality. However, I'm evaluating this product, so nothing is under source countrol, and changes are still going directly into the 'source' database. What I'd like to figure out is if there is any way to re-import the schema from the original source database, to update the project with any external changes Right now the only method I have is to close the project completely, go to Windows Explorer to delete the entire project and all its files from the disk, and then open a new project specifying the same source database ... which re-imports all the schema. It won't suprise me if this is the only way this can be done, but is there ...Show All

  • Visual Basic Not able to publish project VS.net 2005 Professional

    When ever I try and publish my project in VS 2005 I get an error default certificate could not be created publish aborting. Any idea what is going on It is a VB project and it runs fine no errors. I am choosing to deploy to a local directory C:\deploy\firstproject. I have tried online help and nothing comes up on this error. Any help would be appreciated. -Troy check out this link guys http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnwinforms/html/clickoncetrustpub.asp ...Show All

  • Visual Basic Key short cut help

    Ok I know this is easy, but...... Sometimess when I open a project all of the code blocks are expanded. I have to go through and close them up clicking on the - sign. I have lookded around and don't see anyway to close them all at once. Is there a key short cut to close all of those open blocks Dave Try hitting Control+m, then Control+o to collapse methods to just their definitions. When it comes to finding other shortcuts, I'd take a look at this page . ...Show All

  • .NET Development Lightweight Activation method like Windows XP

    Windows XP activation checks following things in computer and is activated The following 10 hardware characteristics are used to determine the hardware hash: Display adapter SCSI adapter IDE adapter Network adapter media access control address RAM amount range (for example, 0-64MB or 64-128MB) Processor type Processor serial number Hard disk device Hard disk volume serial number CD-ROM/CD-RW/DVD-ROM drive i want to use similar technique like this but a lightweight version. Idea is that once a user logs in my program(custom authentication), it will detect all or some of these and associate login with that computer. That way, that user will only be allowed to login from t ...Show All

  • Visual C++ I know VC++ 2005 .NET. Should I trash it?

    Before Studio 2003 came out I would use VB for my GUI front ends. Now, VC++ is just as powerful in the GUI department as any .NET language. So, I thought I could say ‘audios’ to VB, and stick with my multi-platform C++. But then at the same time C/C++ developers on Linux have grown to become a growing threat to Windows, and so I see Microsoft backing away from C++ as evidenced from its developer certifications (all must use non-standard, mono-platform languages). Certainly, the language is still evolving at MS, but its probably just momentum. So paradoxically, Im thinking now I should say ‘audios’ to C++ instead of VB. Or, should I just replace C++ with C# Thanks for any advice! I agree. Its for .Net, no ...Show All

©2008 Software Development Network