Import ini file and regfile

I want to import ini file and a reg file at runtime.
Now i know that you can do that with startup shim DLL.
I got sample project for the startup shim but I am not good in c++ programming.
Has somebody example code for import of ini file and reg file.
Please help me......I am stupid

stonehill1957,
It appears that in the past few days you have not received a response to your
posting. That concerns us, and has triggered this automated reply.
Has your problem been resolved? If not, you might try one of the following options:
- Visit http://support.novell.com and search the knowledgebase and/or check all
the other self support options and support programs available.
- You could also try posting your message again. Make sure it is posted in the
correct newsgroup. (http://forums.novell.com)
Be sure to read the forum FAQ about what to expect in the way of responses:
http://forums.novell.com/faq.php
If this is a reply to a duplicate posting, please ignore and accept our apologies
and rest assured we will issue a stern reprimand to our posting bot.
Good luck!
Your Novell Product Support Forums Team
http://forums.novell.com/

Similar Messages

  • Problems with importing .MP4 file and the audio in FCP 6

    Hi all,
    I am pretty new to Final Cut Pro and have just approached my first project.
    I have a Samsung VP-MX20
    http://www.samsung.com/uk/consumer/detail/spec.do?group=cameracamcorder&type=cam corder&subtype=flashcamcorder&model_cd=VP-MX20/XEU&fullspec=F
    *Codecs H.264, AAC.*
    I needed some space on the camera so halfway through a holiday i transfered all the video files from the camera to my Laptop.
    I have imported these files from the hardrive
    Vid rate - 25 fps
    compressor - H.264
    Pixel Aspect - PAL - CCIR 601
    What seems to be the problem is ok when i drag the clip from the viewer to the canvas and apply insert, i get the box that says 'Change Sequence settings to match the clip settings?
    i click yes and when the clip is layed out on the timeline there is a red line above the timeline, when i play the clip i only get bleeps as audio and not the original sound.
    If i drag the playhead i can hear the audio but if i try to play all i hear us bleeps plus if i import an mp3 the red line appears above the timeline and the same applies
    can anyone help me here.
    Thanks
    Elles

    Hi Zak,
    many thanks for your reply, i have contacted Apple and taking your advice and using compressor i have converted the codec H.264 to Apple Pro Res 422 for interlaced material.
    I have imported this file and when i drag once again from the viewer to canvas i get the standard box asking to change the sequence to match the clip.
    I am still getting the red line above the timeline and bleeping as audio.
    any idea?

  • Trying to import .dmd file and want to see the logical & physical diagram

    Can some one guide me how to import a .dmd file which i got from client. In my local machine i downloaded datamodeller and installed.
    When i am trying to import the same, i am not able to see any logical or physical relationship diagram.
    Thanks inadvance..

    Hi,
    As well as the .dmd file, the folder containing the .dmd file should also contain a folder with the same name - e.g. MyModel.dmd plus folder MyModel.
    If you've only got the .dmd file, you will need to get the associated folder and all its contents as well - the most convenient way is to get your client to use Winzip to zip up the .dmd file and its companion folder.
    You can then unzip it and open the .dmd file in Data Modeler, using Open on the File menu.
    The Logical and Relational diagrams should then be shown on the Logical and Relational tabs in Data Modeler.
    David

  • Step incrementing of .ini file and check and changing the content within step

    Hello I want to increment the [step002] automatically in the .ini file. If the steps are copied and pasted more times in already existing file, where by doing so the step numbers are doubled. For example if there exists  [Step002] followed by content of it and then [Step001] and followed by contet of it and  [Step002] followed by content of it. And if a person copies [Step002] with its content 80 times or n number of times then the last one should be automatically incremented  to new number as [Step003] and [Step004] [Step005]. And then I want to arrange the content under each step. In my file I have a " Group_Start = Step001" and  " Group_Name = OQ_004 set high port" as contents in each step. I want to arrange the group name. 
    What I want is, if in the newly copied [Step002] which would have already been incremented to [Step004], it would contain Group_Name = OQ_004 set high port which I have highlighted in italics, if this already exists some where in the file, then its corresponding Group_Start = Step001 which I have highlighted in italics should be given to the newly copied and incremented [Step004]. And in case the Group_Name = OQ_004 set high port which I have highlighted in italics does not match any where then its corresponding Group_Start will be as Group_Start = Step004. That means since the group name is new and it does not exist already in the file, the Group_Start should take its step number [Step004] which her I have highlighted in italics, as its Group_Start = Step004. Here with I attach my file and I also attach my steps which I had tried. It would be nice if solution is given or further step ideas from my steps to complete the task is given.
    Thank you.
    John
    Attachments:
    Config.ini ‏2 KB
    Tried.vi ‏26 KB

    Hello, Thank you for your reply. May be I break it into steps. Now where I am struck is that if there are say random numbers some repeated ones
    example 001, 002, 002, 002, 004, 007, 006 etc.. I would like get sorted in ascending order and also the reapeated numbers should be in the running order. That means 001, 002, 003, 004, 005, 006 etc.. There should not be repeated numbers.if reapeatd then the repeated one should have to be incremented from the previous one. If this has been solved then I can explain the other part and shall aslo goahead. I had already tried one method but the loop seems to be not exactly matching. There are some numbers which come extra. You can use the same config file which I had sent earlier. Just copy and paste the steps below or inbetween and use it for testing. Thank you
    Attachments:
    change all stepst number.vi ‏14 KB

  • Importing CSV file and parsing it

    First of all I am very new to writing powershell code.  Therefore, my question could be very rudimentary, but I cannot find an answer, so please help.
    I'm trying to read a CSV file and parse it.  I cannot figure out how to access nth element without hardcoding its name.
    $data = Import-Csv $file   #import CSV file
    # read column headers (manually read the first row of the data file, or import it from other source, or ...)
    $file_dump = Get-Content $file  #OK, I'm sure there is another way to get just the first line, but that's not relevant
    $name_list = $file_dump[0].split(",")
    # access element
    $temp = $data[$i].Name  # works - but that's HARDCODING the column name into the script - what if someone changes it?
    #but what I want to do is
    $temp = $data[$i].$name_list[0]
    How do I do this in PowerShell?

    So you're asking how to get the first data point from the first column, no matter what the header is?
    Why won't you know what your input file looks like?
    You can always drop the first line of the file to remove the existing headers and then use the -Header parameter of Import-Csv to give yourself known headers to reference (this will only work if you know how many columns to expect, etc etc etc).
    http://ss64.com/ps/import-csv.html
    Don't retire TechNet! -
    (Don't give up yet - 13,085+ strong and growing)

  • Can't import .avi files and I have Pro

    Ok... I bought Quicktime Pro about 3 years ago and after they updated to the next version, it wouldn't import my FlaskOut.avi from the program FlaskMPEG. It states something like "Quicktime doesn't have the software to view this file. Unfortunatly, it's not on the Quicktime website." I never had a problem with this until I upgraded to the next version. I re-installed the old version and put in the Key but that version doesn't work anymore either. I need to import these to place trailers on my website. Do I need to buy Quicktime Pro again? And if I do will I be able to import these files then? If it won't work, do you know I program I could use? Thanks guys.

    You need to install Perian.
    (81092)

  • Importing .mod files and posting them as .mov files on YouTube

    I'm importing .mod files from my camcorder to iMovie directly. The videos play fine on iMovie. I then directly send them to YouTube (I believe as the QuickTime format .mov). The files import, but fail to process for viewing.
    Any suggestions?

    First, do not worry, PrE7 has not harmed your files. It is just that it can only get to the Audio portion of those files, so that is all that it can display. They are still intact.
    Now, with many file formats, and AVI in particular, much can be inside that file. This ARTICLE will give you some background.
    With just the Audio coming through, my guess would be that the files are encoded using either DivX, or Xvid, as this is a very common problem. You can check this out with G-Spot, also mentioned in the linked article.
    If the files play on your computer, then you likely have the necessary CODEC, unless you're using MediaPlayer Classic or VLC Player, as they have their own CODEC systems.
    Steve's advice to convert these files is the best course of action. You may need to get the CODEC and install it (again, G-Spot will tell you exactly what you will need and if its installed on your computer). I do not know if Prizm has its own CODEC's but would assume that it uses those installed on the computer.
    Good luck,
    Hunt

  • Is it possible to import html files and export them as scorm?

    Hi,
    is it possible to import html files (like a website) and export them as a SCORM compatible ZIP file?
    Thanks!

    You can embed html pages in a Captivate slide and they are included in the SCORM zip file when you publish, is this what you mean?

  • Getting error message on import that says can't import jpeg files and won't import

    why can't I import from the camera that I always use with my iPhoto? On connecting the camera, error message says "can't import jpeg files."  None of my camera settings have changed.  Is it a problem of connectivity with old camera and new iPhoto '11?

    Not an old camera problem - most likely a memory card format problem - when was the last time you reformated yoru card?
    What camera do you have? Does image capture work?
    LN

  • Importing Excel Files and Formatting Issues

    Good afternoon ladies and gentlemen. When in doubt, post in the forum! Anyway, I am using java via ODBC to connect to an excel file to extract some info from it, using SQL statements. Everything can be extracted without any problems, however, Excel keeps pi$$ing me off by changing the format of the cell data.
    Firstly, I highlight every cell in my Excel file and format it as "Text."
    Then I extract the cell info by using a ResultSet and getting a String (even for numeric data - ResultSet.getString(...))
    What is getting on my nerves is that not only does it not extract numeric values followed by a string, when it does extract numeric values, it is adding a ".0" after the value.
    For example, if the cell value is 123, it will return 123.0
    If the cell value is 123SHOE, it returns null
    Furthemore, when editing the Excel file, after having every cell formatted as "Text," if I enter a number, say, as a zipcode, 123450000, it brings up an error! But the very definition of "Text" states that "Text format cells are treated as text even when a number is in the cell."
    The moral of the story is, I want to convert all data in the Excel file to "Text" and when extracting data from the file, I need to be able to extract numbers, numbers followed by characters, and everything else.
    Any suggestions?
    Thanks much,
    Josh

    Hey Dr. Clap, quick question for ya. I was checking out the Apache POI you recommended. More specifically HSSF. I noticed in the documentation that "String cells cannot conatin numbers and numeric cells cannot contain strings." Unfortunately, this is not going to work well with my app as some of the primary keys (I use the term loosely) are Strings which contain numbers. My main problem is that my app wont recognize the Strings containing numbers, so it returns null, and Excel is chopping off the leading zeroes and is popping up with an error because numbers are in the String. However, as I stated before, Excel notes that text cells can contain numbers!
    FYI, I am using Pervasive SQL to extract a given list of users in a DB (which I dont want to connect to directly) and am saving that generated query (list of users) into a text file. I then open the text file in Excel which parses it correctly and assigns the cells the correct values. So I don't think I can format the cells as text because I am importing the file I generate. I love doing things ass backwards :) Another reason I am using Excel files is so anyone can use the software so long as they have an Excel file with the appropriate columns within the file.
    Thanks yet again and I'll keep searching.
    Josh

  • Audiobooks: Importing MP3-files and ripping Audiobooks from CD

    How may I import Audiobooks files to the Audiobook library in iTunes?
    When I import audiobook files to iTunes, they are seen in the Music library, not the Audiobooks library. Except when I buy audiobooks from Apple store, then they install itself correctly under Audiobooks.
    Alternative: Can I move the audiobook files from the Music library to the Audiobooks library in iTunes?
    This issue have been up before, last time in Dec 2006, without any answers.
    I hope Apple or some wice person can answer this issue this time!

    That's a common problem when audiosbookd are downloaded from a source other than the iTunes Store. Try this link and see if you find something useful: http://aldoblog.com/audiobooks/itunes/frequently-asked-questions/#q11

  • Import MTS files and burn AVCHD files to DVD on PRE13

    Hi am used to PRE 10 and want to know if on PRE 13 I can import MTS files into it, and burn AVCHD just as I am used to. The spec does not mention MTS files and implies burning to Blu ray.

    I mean burning to DVD disc

  • I cant import any files and dont have any on my cloud, what can I do?

    I just got ADOBE PRO and have no files saved online. I am trying to import a document into a form but it wont let me.

    Hi,
    I would like to inform with Adobe FormsCentral, you can only import PDF files or a design file.
    Please let us know the type of file you are trying to import and share a screenshot of error received; if any.
    Regards,
    Nakul

  • Importing Excel files and using a search function to use specific data based on user selection

    Hi, I'm trying to create a search and solve function within Visual Basic.
    I want to use the combustion equation C8H18 + 20(O2 + 3.76 N2) = 8 CO2 + 9H20 + 47 N2 to determine flame temperature using
    9*Hf of C02 + 8 * Hf H20 + 47 Hf N2 = Hf C8H18
    I have all of the values of Hf in an excel spreadsheet but I want to be able to search the spreadsheet as my application requires the user to change to fuel (the C8H18 bit) which changes the value of Hf.
    Is there a way of searching that excel file each time I run my program?
    Thanks
    Jack

    Thanks for answering so quickly.
    I've used that method before, and I'm sorry I didn't specify. 
    This will be used as a student learning aid and so the application itself and the tables will be downloaded as a zip file and so I don't believe the line below would work?
    I've heard about including excel as a reference file in the application but I haven't been able to find any further information on that.
    Thanks again
    Dim oWBa As Excel.Workbook = oApp.Workbooks.Open("C:\Users\v-youtan\Desktop\colleagues.xlsx")"

  • Reg .ini Files and level based merics

    Hi Experts,
    1>What are the different .ini files that we have in 10G.
    2>In how many ways we can create level based metrics.
    3>If i want change default font as PDF in which ini file i have to change.
    Regards,

    Hi,
    1>What are the different .ini files that we have in 10G.
    NQClusterConfig.INI
    NQSConfig.INI
    DBFeatures.INI
    2>In how many ways we can create level based metrics.
    By using dimension hierarchy.
    3>If i want change default font as PDF in which ini file i have to change.
    NQSConfig.INI
    mark if helpful/correct..
    thanks,
    prassu

Maybe you are looking for

  • Setting resolution on External Monitor

    I have a Macbook Pro (from 2008) and a 25.5" Samsung T260HD which has a native resolution of 1920x1200. I need to mirror the displays or at least have all icons and such on the external display. When I mirror them, I cannot get the external monitor t

  • Fine-grained control of colors in a bar chart

    Hello, Short version: How do I control the colors of the bars in a bar chart in Keynote, so that each bar, representing a particular entity, retains its color no matter its position relative to the other bars after updating the chart? Detailed versio

  • Safari and how about a tab icon!!!

    Anybody in agreement with me that Safari is missing a tab icon in the toolbar options??? I know its a small detail but Firefox and IE offer the icon. Personally i think its handier than having to press the apple key-T! Anybody of the same opinion?? C

  • A White Dead Pixel

    My almost a month old retina macbook pro has a single white dead or stuck pixel on right top side of screen. It is very noticeable during movies and photoshop. What is apple policy on a single dead pixel. Is white dead or stuck pixel? My old non reti

  • Mars Version: Problems with Dynamic menu contribution

    I create an "Eclipse 4 Application project" called test with Luna and Mars version. In my Application I add a Dynamic Menu Item called ToTo with the following code: Quote: package test.handlers; import java.util.Date; import java.util.List; import or